From 8e83dcd697acb5f8654bee7b239751aca89c72b1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 7 Oct 2020 14:43:53 -0700 Subject: [PATCH 001/165] event permissions --- code/__DEFINES/admin.dm | 3 ++- code/__HELPERS/type2type.dm | 2 ++ code/_globalvars/bitfields.dm | 3 ++- code/modules/admin/admin_ranks.dm | 7 +++++++ code/modules/admin/holder2.dm | 5 +++++ code/modules/admin/sql_message_system.dm | 2 ++ code/modules/admin/verbs/getlogs.dm | 2 ++ code/modules/client/client_procs.dm | 14 ++++++++++++++ code/modules/mob/mob.dm | 6 ++++++ code/modules/power/singularity/investigate.dm | 2 +- config/admin_ranks.txt | 1 + 11 files changed, 44 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm index 97f07acc05..143063b4e9 100644 --- a/code/__DEFINES/admin.dm +++ b/code/__DEFINES/admin.dm @@ -35,8 +35,9 @@ #define R_SPAWN (1<<12) #define R_AUTOLOGIN (1<<13) #define R_DBRANKS (1<<14) +#define R_SENSITIVE (1<<15) -#define R_DEFAULT R_AUTOLOGIN +#define R_DEFAULT R_AUTOLOGIN | R_SENSITIVE #define R_EVERYTHING ALL //the sum of all other rank permissions, used for +EVERYTHING diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm index bbbf99c9de..0987e95dc9 100644 --- a/code/__HELPERS/type2type.dm +++ b/code/__HELPERS/type2type.dm @@ -225,6 +225,8 @@ . += "[seperator]AUTOLOGIN" if(rights & R_DBRANKS) . += "[seperator]DBRANKS" + if(rights & R_SENSITIVE) + . += "[seperator]SENSITIVE" if(!.) . = "NONE" return . diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm index 85f5e4fd9b..276718c0c2 100644 --- a/code/_globalvars/bitfields.dm +++ b/code/_globalvars/bitfields.dm @@ -67,7 +67,8 @@ GLOBAL_LIST_INIT(bitfields, list( "SOUNDS" = R_SOUNDS, "SPAWN" = R_SPAWN, "AUTOLOGIN" = R_AUTOLOGIN, - "DBRANKS" = R_DBRANKS + "DBRANKS" = R_DBRANKS, + "SENSITIVE" = R_SENSITIVE ), "interaction_flags_atom" = list( "INTERACT_ATOM_REQUIRES_ANCHORED" = INTERACT_ATOM_REQUIRES_ANCHORED, diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm index ef4abeb0ad..39053b8e15 100644 --- a/code/modules/admin/admin_ranks.dm +++ b/code/modules/admin/admin_ranks.dm @@ -44,6 +44,11 @@ GLOBAL_PROTECT(protected_ranks) /datum/admin_rank/vv_edit_var(var_name, var_value) return FALSE +/datum/admin_rank/CanProcCall(procname) + . = ..() + if(!check_rights(R_SENSITIVE)) + return FALSE + /proc/admin_keyword_to_flag(word, previous_rights=0) var/flag = 0 switch(ckey(word)) @@ -79,6 +84,8 @@ GLOBAL_PROTECT(protected_ranks) flag = R_AUTOLOGIN if("dbranks") flag = R_DBRANKS + if("sensitive") + flag = R_SENSITIVE if("@","prev") flag = previous_rights return flag diff --git a/code/modules/admin/holder2.dm b/code/modules/admin/holder2.dm index 09f9664295..03878268d2 100644 --- a/code/modules/admin/holder2.dm +++ b/code/modules/admin/holder2.dm @@ -28,6 +28,11 @@ GLOBAL_PROTECT(href_token) var/deadmined +/datum/admins/CanProcCall(procname) + . = ..() + if(!check_rights(R_SENSITIVE)) + return FALSE + /datum/admins/New(datum/admin_rank/R, ckey, force_active = FALSE, protected) if(IsAdminAdvancedProcCall()) var/msg = " has tried to elevate permissions!" diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm index 356746ddbc..d8135d54c0 100644 --- a/code/modules/admin/sql_message_system.dm +++ b/code/modules/admin/sql_message_system.dm @@ -299,6 +299,8 @@ qdel(query_find_message_secret) /proc/browse_messages(type, target_ckey, index, linkless = FALSE, filter, agegate = FALSE) + if(!check_rights(R_SENSITIVE)) + return if(!SSdbcore.Connect()) to_chat(usr, "Failed to establish database connection.") return diff --git a/code/modules/admin/verbs/getlogs.dm b/code/modules/admin/verbs/getlogs.dm index 4cbb0214f7..446dbcc69a 100644 --- a/code/modules/admin/verbs/getlogs.dm +++ b/code/modules/admin/verbs/getlogs.dm @@ -14,6 +14,8 @@ browseserverlogs("[GLOB.log_directory]/") /client/proc/browseserverlogs(path = "data/logs/") + if(!check_rights(R_SENSITIVE)) + return path = browse_files(path) if(!path) return diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 45990cd21f..332365e032 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -917,8 +917,22 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( if(NAMEOF(src, view)) change_view(var_value) return TRUE + if(NAMEOF(src, computer_id)) + return FALSE + if(NAMEOF(src, address)) + return FALSE . = ..() +/client/vv_get_var(var_name) + . = ..() + switch(var_name) + if(NAMEOF(src, computer_id)) + if(!check_rights(R_SENSITIVE, FALSE)) + return "SENSITIVE" + if(NAMEOF(src, address)) + if(!check_rights(R_SENSITIVE, FALSE)) + return "SENSITIVE" + /client/proc/rescale_view(change, min, max) var/viewscale = getviewsize(view) var/x = viewscale[1] diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index e1a4ac6118..256aa0ed5d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -991,6 +991,12 @@ GLOBAL_VAR_INIT(exploit_warn_spam_prevention, 0) switch(var_name) if("logging") return debug_variable(var_name, logging, 0, src, FALSE) + if(NAMEOF(src, lastKnownIP)) + if(!check_rights(R_SENSITIVE, FALSE)) + return "SENSITIVE" + if(NAMEOF(src, computer_id)) + if(!check_rights(R_SENSITIVE, FALSE)) + return "SENSITIVE" . = ..() /mob/vv_auto_rename(new_name) diff --git a/code/modules/power/singularity/investigate.dm b/code/modules/power/singularity/investigate.dm index 3caf934b50..5db912b8d6 100644 --- a/code/modules/power/singularity/investigate.dm +++ b/code/modules/power/singularity/investigate.dm @@ -1,4 +1,4 @@ /area/engine/engineering/poweralert(state, source) if (state != poweralm) investigate_log("has a power alarm!", INVESTIGATE_SINGULO) - ..() \ No newline at end of file + ..() diff --git a/config/admin_ranks.txt b/config/admin_ranks.txt index fc1cb96c86..adbba1acb6 100644 --- a/config/admin_ranks.txt +++ b/config/admin_ranks.txt @@ -30,6 +30,7 @@ # +SPAWN (or +CREATE) = mob transformations, spawning of most atoms including mobs (high-risk atoms, e.g. blackholes, will require the +FUN flag too) # +AUTOLOGIN = admin gains powers upon connect. This defaults to on, you can use -AUTOLOGIN to make a role require using the readmin verb to gain powers. (this does not effect the admin's ability to walk past bans or other on-connect limitations like panic bunker or pop limit.) # +DBRANKS = when sql-based admin loading is enabled, allows for non-temporary changes in the permissions panel to be saved (requires DB) +# +SENSITIVE = Defaults to on, use - to remove it. Allows reading IPs, CIDs, grabbing logs, and proccalls to certain things like admin holders/clients/subsystems considered "sensitive". # +EVERYTHING (or +HOST or +ALL) = Simply gives you everything without having to type every flag # END_KEYWORDS From 30b711aecb00a15212fbd6063da3134d854025aa Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 12 Oct 2020 02:38:43 -0700 Subject: [PATCH 002/165] Update sql_message_system.dm --- code/modules/admin/sql_message_system.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm index d8135d54c0..ac3d5a03a0 100644 --- a/code/modules/admin/sql_message_system.dm +++ b/code/modules/admin/sql_message_system.dm @@ -6,7 +6,7 @@ return var/target_ckey = ckey(target_key) if(!target_key && (type == "note" || type == "message" || type == "watchlist entry")) - var/new_key = input(usr,"Who would you like to create a [type] for?","Enter a key or ckey",null) as null|text + var/new_key = input(usr,"Who would you like to create a [type] for?","Enter a key or ckey",null) as null|textw if(!new_key) return var/new_ckey = sanitizeSQL(ckey(new_key)) @@ -299,7 +299,7 @@ qdel(query_find_message_secret) /proc/browse_messages(type, target_ckey, index, linkless = FALSE, filter, agegate = FALSE) - if(!check_rights(R_SENSITIVE)) + if(IsAdminAdvancedProcCall() && !check_rights(R_SENSITIVE)) return if(!SSdbcore.Connect()) to_chat(usr, "Failed to establish database connection.") From 6c7b34748b7ad90a54becbc5315835469881bf25 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 12 Oct 2020 12:32:37 -0700 Subject: [PATCH 003/165] Update sql_message_system.dm --- code/modules/admin/sql_message_system.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm index ac3d5a03a0..e1a8cc5758 100644 --- a/code/modules/admin/sql_message_system.dm +++ b/code/modules/admin/sql_message_system.dm @@ -298,8 +298,8 @@ browse_messages(target_ckey = ckey(target_key), agegate = TRUE) qdel(query_find_message_secret) -/proc/browse_messages(type, target_ckey, index, linkless = FALSE, filter, agegate = FALSE) - if(IsAdminAdvancedProcCall() && !check_rights(R_SENSITIVE)) +/proc/browse_messages(type, target_ckey, index, linkless = FALSE, filter, agegate = FALSE, override = FALSE) + if((!override || IsAdminAdvancedProcCall()) && !check_rights(R_SENSITIVE)) return if(!SSdbcore.Connect()) to_chat(usr, "Failed to establish database connection.") From 1bab47bafbcb68fbe5c2f5032eab57a0d87a83a7 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 12 Oct 2020 12:33:27 -0700 Subject: [PATCH 004/165] Update ooc.dm --- code/modules/client/verbs/ooc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index 5a8325fd64..c242509344 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -179,7 +179,7 @@ GLOBAL_VAR_INIT(normal_ooc_colour, "#002eb8") to_chat(usr, "Sorry, that function is not enabled on this server.") return - browse_messages(null, usr.ckey, null, TRUE) + browse_messages(null, usr.ckey, null, TRUE, override = TRUE) /client/proc/self_playtime() set name = "View tracked playtime" From 45a7c68da19d454798d3e933b251e005e680e68f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 11 Dec 2020 15:05:00 -0700 Subject: [PATCH 005/165] wow --- code/__DEFINES/role_preferences.dm | 1 + .../configuration/entries/general.dm | 2 - .../configuration/entries/respawns.dm | 24 ++++++++ code/controllers/subsystem/ticker.dm | 5 ++ code/modules/admin/topic.dm | 6 ++ code/modules/client/preferences.dm | 16 ++++- code/modules/jobs/job_types/_job.dm | 12 ++++ code/modules/jobs/job_types/ai.dm | 1 + code/modules/jobs/job_types/assistant.dm | 1 + code/modules/jobs/job_types/captain.dm | 1 + code/modules/jobs/job_types/chief_engineer.dm | 1 + .../jobs/job_types/chief_medical_officer.dm | 1 + code/modules/jobs/job_types/cyborg.dm | 1 + code/modules/jobs/job_types/detective.dm | 1 + .../jobs/job_types/head_of_personnel.dm | 2 +- .../jobs/job_types/head_of_security.dm | 1 + code/modules/jobs/job_types/quartermaster.dm | 1 + .../jobs/job_types/research_director.dm | 1 + .../jobs/job_types/security_officer.dm | 1 + code/modules/jobs/job_types/warden.dm | 1 + .../modules/mob/dead/new_player/new_player.dm | 5 ++ code/modules/mob/dead/observer/respawn.dm | 60 +++++++++++++++++++ code/modules/mob/mob.dm | 33 ---------- config/config.txt | 4 +- config/respawns.txt | 17 ++++++ tgstation.dme | 2 + 26 files changed, 160 insertions(+), 41 deletions(-) create mode 100644 code/controllers/configuration/entries/respawns.dm create mode 100644 code/modules/mob/dead/observer/respawn.dm create mode 100644 config/respawns.txt diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm index d7487eb54b..605b3f6485 100644 --- a/code/__DEFINES/role_preferences.dm +++ b/code/__DEFINES/role_preferences.dm @@ -40,6 +40,7 @@ //#define ROLE_MONSTERHUNTER "monster hunter" Disabled for now #define ROLE_GHOSTCAFE "ghostcafe" #define ROLE_MINOR_ANTAG "minorantag" +#define ROLE_RESPAWN "respawnsystem" //Missing assignment means it's not a gamemode specific role, IT'S NOT A BUG OR ERROR. //The gamemode specific ones are just so the gamemodes can query whether a player is old enough //(in game days played) to play that role diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index 90ec3bc289..3c93952b65 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -172,8 +172,6 @@ /datum/config_entry/string/hostedby -/datum/config_entry/flag/norespawn - /datum/config_entry/flag/guest_jobban /datum/config_entry/flag/usewhitelist diff --git a/code/controllers/configuration/entries/respawns.dm b/code/controllers/configuration/entries/respawns.dm new file mode 100644 index 0000000000..b19c8bf9d8 --- /dev/null +++ b/code/controllers/configuration/entries/respawns.dm @@ -0,0 +1,24 @@ +/// Allows usage of respawn system +/datum/config_entry/flag/respawns_enabled + config_entry_value = FALSE + +/// Minutes before allowing respawns. +/datum/config_entry/number/respawn_delay + config_entry_value = 15.0 + integer = FALSE + +/// Allows respawning as non-assistant. Overrides all others of this type. +/datum/config_entry/flag/allow_non_assistant_respawn + config_entry_value = FALSE + +/// Allows respawning as a combat role, defined as security/head. +/datum/config_entry/flag/allow_combat_role_respawn + config_entry_value = FALSE + +/// Allows respawning as the same character as a previous life +/datum/config_entry/flag/allow_same_character_respawn + config_entry_value = FALSE + +/// Observing penalizes for respawns, not just joining. +/datum/config_entry/flag/respawn_penalty_includes_observe + config_entry_value = FALSE diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 95d8928368..730ee3d6ab 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -371,6 +371,11 @@ SUBSYSTEM_DEF(ticker) if(player.ready == PLAYER_READY_TO_PLAY && player.mind) GLOB.joined_player_list += player.ckey player.create_character(FALSE) + if(player.new_character && player.client && player.client.prefs) // we cannot afford a runtime, ever + LAZYOR(player.client.prefs.slots_joined_as, player.client.prefs.slot) + LAZYOR(player.client.prefs.characters_joined_as, player.new_character.real_name)) + else + stack_trace("WARNING: Either a player did not have a new_character, did not have a client, or did not have preferences. This is VERY bad.") else player.new_player_panel() CHECK_TICK diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index ad8dd168eb..fd8204a296 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -936,6 +936,12 @@ else dat += "Mind Transfer Potion" + //Respawns + if(jobban_isbanned(M, ROLE_RESPAWN)) + dat += "Respawns" + else + dat += "Respawns" + dat += "" usr << browse(dat, "window=jobban2;size=800x450") return diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 16d6ca351d..dddb78a729 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -12,11 +12,23 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/default_slot = 1 //Holder so it doesn't default to slot 1, rather the last one used var/max_save_slots = 24 - //non-preference stuff - var/muted = 0 + // Intra-round persistence begin + /// Flags for admin mutes + var/muted = NONE + /// Last IP the person was seen on var/last_ip + /// Last CID the person was seen on var/last_id + /// Do we log their clicks to disk? var/log_clicks = FALSE + /// Characters they have joined the round under - Lazylist of names + var/list/characters_joined_as + /// Slots they have joined the round under - Lazylist of numbers + var/list/slots_joined_as + /// Are we currently subject to respawn restrictions? Usually set by us using the "respawn" verb, but can be lifted by admins. + var/respawn_restrictions_active = FALSE + + // Intra-round persistence end var/icon/custom_holoform_icon var/list/cached_holoform_icons diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index b0ac5248c1..bb55ad45ca 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -73,6 +73,12 @@ /// Starting skill modifiers. var/list/starting_modifiers + // These can be flags but I don't care because they're never changed + /// Can you always join as this job even while respawning (should probably only be on for assistant) + var/always_can_respawn_as = FALSE + /// Is this job considered a combat role for respawning? (usually sec/command) + var/considered_combat_role = FALSE + /** * Checks if we should be created on a certain map */ @@ -118,6 +124,12 @@ //Used for a special check of whether to allow a client to latejoin as this job. /datum/job/proc/special_check_latejoin(client/C) + var/joined = LAZYLEN(C.prefs?.characters_joined_as) + if(C.prefs?.respawn_restrictions_active && (joined || CONFIG_GET(flag/respawn_penalty_includes_observe))) + if(!CONFIG_GET(flag/allow_non_assistant_respawn) && always_can_respawn_as) + return FALSE + if(!CONFIG_GET(flag/allow_combat_role_respawn) && considered_combat_role) + return FALSE return TRUE /datum/job/proc/GetAntagRep() diff --git a/code/modules/jobs/job_types/ai.dm b/code/modules/jobs/job_types/ai.dm index a7401791ab..d0eb690e94 100644 --- a/code/modules/jobs/job_types/ai.dm +++ b/code/modules/jobs/job_types/ai.dm @@ -16,6 +16,7 @@ display_order = JOB_DISPLAY_ORDER_AI var/do_special_check = TRUE threat = 5 + considered_combat_role = TRUE starting_modifiers = list(/datum/skill_modifier/job/level/wiring/basic) diff --git a/code/modules/jobs/job_types/assistant.dm b/code/modules/jobs/job_types/assistant.dm index b8fc963989..db5390f323 100644 --- a/code/modules/jobs/job_types/assistant.dm +++ b/code/modules/jobs/job_types/assistant.dm @@ -18,6 +18,7 @@ Assistant paycheck_department = ACCOUNT_CIV display_order = JOB_DISPLAY_ORDER_ASSISTANT dresscodecompliant = FALSE + always_can_respawn_as = TRUE threat = 0.2 /datum/job/assistant/get_access() diff --git a/code/modules/jobs/job_types/captain.dm b/code/modules/jobs/job_types/captain.dm index 047a07062d..4806bf5546 100644 --- a/code/modules/jobs/job_types/captain.dm +++ b/code/modules/jobs/job_types/captain.dm @@ -14,6 +14,7 @@ exp_requirements = 180 exp_type = EXP_TYPE_COMMAND exp_type_department = EXP_TYPE_COMMAND + considered_combat_role = TRUE outfit = /datum/outfit/job/captain diff --git a/code/modules/jobs/job_types/chief_engineer.dm b/code/modules/jobs/job_types/chief_engineer.dm index 18be8c9835..902be0bdc8 100644 --- a/code/modules/jobs/job_types/chief_engineer.dm +++ b/code/modules/jobs/job_types/chief_engineer.dm @@ -15,6 +15,7 @@ exp_requirements = 180 exp_type = EXP_TYPE_CREW exp_type_department = EXP_TYPE_ENGINEERING + considered_combat_role = TRUE outfit = /datum/outfit/job/ce plasma_outfit = /datum/outfit/plasmaman/ce diff --git a/code/modules/jobs/job_types/chief_medical_officer.dm b/code/modules/jobs/job_types/chief_medical_officer.dm index 627a7a2ca1..bb5fc68809 100644 --- a/code/modules/jobs/job_types/chief_medical_officer.dm +++ b/code/modules/jobs/job_types/chief_medical_officer.dm @@ -15,6 +15,7 @@ exp_requirements = 180 exp_type = EXP_TYPE_CREW exp_type_department = EXP_TYPE_MEDICAL + considered_combat_role = TRUE outfit = /datum/outfit/job/cmo plasma_outfit = /datum/outfit/plasmaman/cmo diff --git a/code/modules/jobs/job_types/cyborg.dm b/code/modules/jobs/job_types/cyborg.dm index 4f74542b2a..761882894f 100644 --- a/code/modules/jobs/job_types/cyborg.dm +++ b/code/modules/jobs/job_types/cyborg.dm @@ -11,6 +11,7 @@ minimal_player_age = 21 exp_requirements = 120 exp_type = EXP_TYPE_CREW + considered_combat_role = TRUE starting_modifiers = list(/datum/skill_modifier/job/level/wiring/basic) diff --git a/code/modules/jobs/job_types/detective.dm b/code/modules/jobs/job_types/detective.dm index 65724765e1..c704326879 100644 --- a/code/modules/jobs/job_types/detective.dm +++ b/code/modules/jobs/job_types/detective.dm @@ -15,6 +15,7 @@ outfit = /datum/outfit/job/detective plasma_outfit = /datum/outfit/plasmaman/detective + considered_combat_role = TRUE access = list(ACCESS_SEC_DOORS, ACCESS_FORENSICS_LOCKERS, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS, ACCESS_COURT, ACCESS_BRIG, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM) minimal_access = list(ACCESS_SEC_DOORS, ACCESS_FORENSICS_LOCKERS, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS, ACCESS_COURT, ACCESS_BRIG, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM) diff --git a/code/modules/jobs/job_types/head_of_personnel.dm b/code/modules/jobs/job_types/head_of_personnel.dm index 41fb4b99da..f1b7d3e8c4 100644 --- a/code/modules/jobs/job_types/head_of_personnel.dm +++ b/code/modules/jobs/job_types/head_of_personnel.dm @@ -15,7 +15,7 @@ exp_requirements = 180 exp_type = EXP_TYPE_CREW exp_type_department = EXP_TYPE_SERVICE - + considered_combat_role = TRUE outfit = /datum/outfit/job/hop plasma_outfit = /datum/outfit/plasmaman/hop diff --git a/code/modules/jobs/job_types/head_of_security.dm b/code/modules/jobs/job_types/head_of_security.dm index cfd8d7f6c0..c772a8acae 100644 --- a/code/modules/jobs/job_types/head_of_security.dm +++ b/code/modules/jobs/job_types/head_of_security.dm @@ -14,6 +14,7 @@ minimal_player_age = 10 exp_requirements = 300 exp_type = EXP_TYPE_CREW + considered_combat_role = TRUE exp_type_department = EXP_TYPE_SECURITY outfit = /datum/outfit/job/hos diff --git a/code/modules/jobs/job_types/quartermaster.dm b/code/modules/jobs/job_types/quartermaster.dm index 4c6b8e064f..301acff5c4 100644 --- a/code/modules/jobs/job_types/quartermaster.dm +++ b/code/modules/jobs/job_types/quartermaster.dm @@ -15,6 +15,7 @@ exp_requirements = 180 exp_type = EXP_TYPE_CREW exp_type_department = EXP_TYPE_SUPPLY + considered_combat_role = TRUE outfit = /datum/outfit/job/quartermaster diff --git a/code/modules/jobs/job_types/research_director.dm b/code/modules/jobs/job_types/research_director.dm index 33f7df8260..6c2cb94d13 100644 --- a/code/modules/jobs/job_types/research_director.dm +++ b/code/modules/jobs/job_types/research_director.dm @@ -15,6 +15,7 @@ exp_type_department = EXP_TYPE_SCIENCE exp_requirements = 180 exp_type = EXP_TYPE_CREW + considered_combat_role = TRUE outfit = /datum/outfit/job/rd plasma_outfit = /datum/outfit/plasmaman/rd diff --git a/code/modules/jobs/job_types/security_officer.dm b/code/modules/jobs/job_types/security_officer.dm index bc83eb752d..bdae7fe028 100644 --- a/code/modules/jobs/job_types/security_officer.dm +++ b/code/modules/jobs/job_types/security_officer.dm @@ -12,6 +12,7 @@ minimal_player_age = 7 exp_requirements = 300 exp_type = EXP_TYPE_CREW + considered_combat_role = TRUE outfit = /datum/outfit/job/security plasma_outfit = /datum/outfit/plasmaman/security diff --git a/code/modules/jobs/job_types/warden.dm b/code/modules/jobs/job_types/warden.dm index c909342d6f..dae3094ebe 100644 --- a/code/modules/jobs/job_types/warden.dm +++ b/code/modules/jobs/job_types/warden.dm @@ -12,6 +12,7 @@ minimal_player_age = 7 exp_requirements = 300 exp_type = EXP_TYPE_CREW + considered_combat_role = TRUE outfit = /datum/outfit/job/warden plasma_outfit = /datum/outfit/plasmaman/warden diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 91123c0c7f..a06fee2cf7 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -382,6 +382,9 @@ alert(src, "An administrator has disabled late join spawning.") return FALSE + if(!respawn_latejoin_check(notify = TRUE)) + return FALSE + var/arrivals_docked = TRUE if(SSshuttle.arrivals) close_spawn_windows() //In case we get held up @@ -445,6 +448,8 @@ GLOB.joined_player_list += character.ckey GLOB.latejoiners += character + LAZYOR(prefs.slots_joined_as, prefs.slot) + LAZYOR(prefs.characters_joined_as, character.real_name)) if(CONFIG_GET(flag/allow_latejoin_antagonists) && humanc) //Borgs aren't allowed to be antags. Will need to be tweaked if we get true latejoin ais. if(SSshuttle.emergency) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm new file mode 100644 index 0000000000..d162e19531 --- /dev/null +++ b/code/modules/mob/dead/observer/respawn.dm @@ -0,0 +1,60 @@ +// ADMIN VERBS BEGIN +/** + * Fully returns a player to lobby, allowing them to bypass all respawn restrictions + * Works on ghosts or new players (lobby players) + * If a lobby player is selected, their restrictions are removed. + */ +/client/proc/admin_cmd_respawn_return_to_lobby() + +/** + * Allows a ghost to bypass respawn delay without lifting respawn restrictions + */ +/client/proc/admin_cmd_remove_ghost_respawn_timer() + +// ADMIN VERBS END + +/** + * Checks if we can latejoin on the currently selected slot, taking into account respawn status. + */ +/mob/dead/new_player/proc/respawn_latejoin_check(notify = FALSE) + +/** + * Attempts to respawn. + */ +/mob/dead/observer/verb/respawn() + set name = "Respawn" + set category = "OOC" + + +/mob/verb/abandon_mob() + set name = "Respawn" + set category = "OOC" + + if (CONFIG_GET(flag/norespawn)) + return + if ((stat != DEAD || !( SSticker ))) + to_chat(usr, "You must be dead to use this!") + return + + log_game("[key_name(usr)] used abandon mob.") + + to_chat(usr, "Please roleplay correctly!") + + if(!client) + log_game("[key_name(usr)] AM failed due to disconnect.") + return + client.screen.Cut() + client.screen += client.void + if(!client) + log_game("[key_name(usr)] AM failed due to disconnect.") + return + + var/mob/dead/new_player/M = new /mob/dead/new_player() + if(!client) + log_game("[key_name(usr)] AM failed due to disconnect.") + qdel(M) + return + + M.key = key +// M.Login() //wat + return diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 3416a8b337..bac80d7ae7 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -457,39 +457,6 @@ else to_chat(src, "You don't have a mind datum for some reason, so you can't add a note to it.") -/mob/verb/abandon_mob() - set name = "Respawn" - set category = "OOC" - - if (CONFIG_GET(flag/norespawn)) - return - if ((stat != DEAD || !( SSticker ))) - to_chat(usr, "You must be dead to use this!") - return - - log_game("[key_name(usr)] used abandon mob.") - - to_chat(usr, "Please roleplay correctly!") - - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - return - client.screen.Cut() - client.screen += client.void - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - return - - var/mob/dead/new_player/M = new /mob/dead/new_player() - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - qdel(M) - return - - M.key = key -// M.Login() //wat - return - /mob/proc/transfer_ckey(mob/new_mob, send_signal = TRUE) if(!new_mob || (!ckey && new_mob.ckey)) CRASH("transfer_ckey() called [new_mob ? "on ckey-less mob with a player mob as target" : "without a valid mob target"]!") diff --git a/config/config.txt b/config/config.txt index 5be76972ab..72df74beb1 100644 --- a/config/config.txt +++ b/config/config.txt @@ -11,6 +11,7 @@ $include dynamic_config.txt $include plushies/defines.txt $include job_threats.txt $include policy.txt +$include respawns.txt # You can use the @ character at the beginning of a config option to lock it from being edited in-game # Example usage: @@ -206,9 +207,6 @@ VOTE_AUTOTRANSFER_MAXIMUM 4 ## players' votes default to "No vote" (otherwise, default to "No change") # DEFAULT_NO_VOTE -## disable abandon mob -NORESPAWN - ## disables calling del(src) on newmobs if they logout before spawnin in # DONT_DEL_NEWMOB diff --git a/config/respawns.txt b/config/respawns.txt new file mode 100644 index 0000000000..97b196135a --- /dev/null +++ b/config/respawns.txt @@ -0,0 +1,17 @@ +## Allow usage of the respawn system +RESPAWNS_ENABLED + +## Minutes delay before allowing respawns, either from death or observing. Not an integer. +RESPAWN_DELAY 15.0 + +## Allow respawning as anything but an assistant. +# ALLOW_NON_ASSISTANT_RESPAWN + +## Allow respawning as security and command. Only works if ALLOW_NON_ASSISTANT_RESPAWN is on. +# ALLOW_COMBAT_ROLE_RESPAWN + +## Allow respawning as the same character +# ALLOW_SAME_CHARACTER_RESPAWN + +## Observing is considered a respawn for the purposes of role lockouts. Defaults to disabled. When disabled, only RESPAWNING rather than returning from observe locks you out. +# RESPAWN_PENALTY_INCLUDES_OBSERVE diff --git a/tgstation.dme b/tgstation.dme index 1387748839..bdc384776c 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -294,6 +294,7 @@ #include "code\controllers\configuration\entries\plushies.dm" #include "code\controllers\configuration\entries\policy.dm" #include "code\controllers\configuration\entries\resources.dm" +#include "code\controllers\configuration\entries\respawns.dm" #include "code\controllers\configuration\entries\stamina_combat.dm" #include "code\controllers\subsystem\acid.dm" #include "code\controllers\subsystem\adjacent_air.dm" @@ -2451,6 +2452,7 @@ #include "code\modules\mob\dead\observer\observer.dm" #include "code\modules\mob\dead\observer\observer_movement.dm" #include "code\modules\mob\dead\observer\orbit.dm" +#include "code\modules\mob\dead\observer\respawn.dm" #include "code\modules\mob\dead\observer\say.dm" #include "code\modules\mob\living\blood.dm" #include "code\modules\mob\living\bloodcrawl.dm" From 24c09edd03d48c4f7cd59e38e4aa81c6b4e9774f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 12 Dec 2020 11:12:37 -0700 Subject: [PATCH 006/165] stuff --- code/modules/admin/admin_verbs.dm | 5 +- code/modules/client/preferences.dm | 2 + .../modules/mob/dead/new_player/new_player.dm | 1 + code/modules/mob/dead/observer/respawn.dm | 120 ++++++++++++++++++ 4 files changed, 127 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 52b4fa05b1..e2c12353f7 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -78,8 +78,11 @@ GLOBAL_PROTECT(admin_verbs_admin) /client/proc/mark_datum_mapview, /client/proc/hide_verbs, /*hides all our adminverbs*/ /client/proc/hide_most_verbs, /*hides all our hideable adminverbs*/ - /datum/admins/proc/open_borgopanel + /datum/admins/proc/open_borgopanel, + /client/proc/admin_cmd_respawn_return_to_lobby, + /client/proc/admin_cmd_remove_ghost_respawn_timer ) + GLOBAL_LIST_INIT(admin_verbs_ban, list(/client/proc/unban_panel, /client/proc/DB_ban_panel, /client/proc/stickybanpanel)) GLOBAL_PROTECT(admin_verbs_ban) GLOBAL_LIST_INIT(admin_verbs_sounds, list(/client/proc/play_local_sound, /client/proc/play_sound, /client/proc/manual_play_web_sound, /client/proc/set_round_end_sound)) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index dddb78a729..e73808cad7 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -27,6 +27,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/list/slots_joined_as /// Are we currently subject to respawn restrictions? Usually set by us using the "respawn" verb, but can be lifted by admins. var/respawn_restrictions_active = FALSE + /// time of death we consider for respawns + var/respawn_time_of_death = -INFINITY // Intra-round persistence end diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index a06fee2cf7..6d619c4fd1 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -316,6 +316,7 @@ stack_trace("There's no freaking observer landmark available on this map or you're making observers before the map is initialised") transfer_ckey(observer, FALSE) observer.client = client + observer.client.prefs?.respawn_time_of_death = world.time observer.set_ghost_appearance() if(observer.client && observer.client.prefs) observer.real_name = observer.client.prefs.real_name diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index d162e19531..fb1873adff 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -5,11 +5,72 @@ * If a lobby player is selected, their restrictions are removed. */ /client/proc/admin_cmd_respawn_return_to_lobby() + set name = "Respawn Player (Unrestricted)" + set desc = "Gives a player an unrestricted respawn, resetting all respawn restrictions for them." + set category = "Admin" + + var/list/mob/valid = list() + for(var/mob/dead/observer/I in GLOB.dead_mob_list) + if(!I.client) + continue + valid["[I.ckey] - Observing: [I]"] = I.ckey + for(var/mob/dead/new_player/I in GLOB.dead_mob_list) + if(!I.client || !I.prefs.respawn_restrictions_active) + continue + valid["[I.ckey] - IN LOBBY"] = I.ckey + var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid] + var/client/player = GLOB.directory[ckey] + if(!player) + to_chat(src, "Client not found.") + return + var/mob/M = player.mob + if(istype(M, /mob/dead/observer)) + var/mob/dead/observer/O = M + var/confirm = alert(src, "Send [O]([ckey]) back to the lobby without respawn restrictions?", "Send to Lobby", "Yes", "No") + if(confirm != "Yes") + return + message_admins("[key_name_admin(src)] gave [key_name_admin(O)] a full respawn and sent them back to the lobby.") + log_admin("[key_name(src)] gave [key_name(O)] a full respawn and sent them back to the lobby.") + to_chat(O, "You have been given a full respawn.") + O.do_respawn(FALSE) + else if(istype(M, /mob/dead/new_player)) + var/mob/dead/new_player/NP = M + var/confirm = alert(src, "Remove [NP]'s respawn restrictions?", "Remove Restrictions", "Yes", "No") + if(confirm != "Yes") + return + message_admins("[key_name_admin(src)] removed [ckey]'s respawn restrictions.") + log_admins("[key_name(src)] removed [ckey]'s respawn restrictions") + NP.client.prefs.respawn_restrictions_active = FALSE + to_chat(NP, "Your respawn restrictions have been removed.") + else + CRASH("Invalid mobtype") /** * Allows a ghost to bypass respawn delay without lifting respawn restrictions */ /client/proc/admin_cmd_remove_ghost_respawn_timer() + set name = "Remove Respawn Timer for Player" + set desc = "Removes a player's respawn timer without removing their respawning restrictions." + set category = "Admin" + + var/list/mob/dead/observer/valid = list() + for(var/mob/dead/observer/i in GLOB.dead_mob_list) + if(!I.client) + continue + valid["[I.ckey] - [I.name]"] = I + var/mob/dead/observer/O = valid[input(src, "Choose a player (only showing logged in)", "Remove Respawn Timer") as null|anything in valid] + + if(!O.client) + to_chat(src, "[O] has no client.") + return + var/timeleft = O.time_left_to_respawn() + if(!timeleft) + to_chat(src, "[O] can already respawn.") + return + message_admins("[key_name_admin(src)] removed [key_name_admin(O)]'s respawn timer.") + log_admin("[key_name(src)] removed [key_name(O)]'s respawn timer.") + O.client.prefs.respawn_time_of_death = -INFINITY + to_chat(O, "Your respawn timer has been removed.") // ADMIN VERBS END @@ -17,6 +78,19 @@ * Checks if we can latejoin on the currently selected slot, taking into account respawn status. */ /mob/dead/new_player/proc/respawn_latejoin_check(notify = FALSE) + var/can_same_person = CONFIG_GET(flag/allow_same_character_respawn) + if(can_same_person) + return TRUE + var/nameless = client.prefs.nameless + var/randomname = client.prefs.be_random_name + var/randombody = client.prefs.be_random_body + if(randombody && (nameless || randomname)) + return TRUE // somewhat unrecognizable + if(client.prefs.slots_joined_as && (client.prefs.default_slot in client.prefs.slots_joined_as)) + return FALSE + if((!nameless && !randomname) && (client.prefs.characters_joined_as && (client.prefs.real_name in client.prefs.characters_joined_as))) + return FALSE + return TRUE /** * Attempts to respawn. @@ -25,6 +99,52 @@ set name = "Respawn" set category = "OOC" + var/timeleft = time_left_to_respawn() + if(timeleft) + to_chat(src, "It's been too short of a time since you died/observed! Please wait [round(timeleft / 600, 0.1)] more minutes.") + return + do_respawn(TRUE) + +/** + * Gets time left until we can respawn. Returns 0 if we can respawn now. + */ +/mob/dead/observer/verb/time_left_to_respawn() + ASSERT(client) + return max(0, (CONFIG_GET(number/respawn_delay) MINUTES + client.prefs.respawn_time_of_death) - world.time) + +/** + * Handles respawning + */ +/mob/dead/observer/proc/do_respawn(penalize) + if(!client) + return + if(isnull(penalize)) + penalize = client.prefs.respawn_restrictions_active + client.prefs.respawn_restrictions_active = penalize + + to_chat(src, "You have been respawned to the lobby. \ + Remember to take heed of rules regarding round knowledge - notably, that ALL past lives are forgotten. \ + Any character you join as has NO knowledge of round events unless specified otherwise by an admin.") + + log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") + transfer_to_lobby() + +/** + * Actual proc that removes us and puts us back on lobby + */ +/mob/dead/observer/proc/transfer_to_lobby() + if(!client) // if no one's in us we can just be deleted + qdel(src) + return + client.screen.Cut() + client.view_size.resetToDefault() + client.generate_clickcatcher() + client.apply_clickcatcher() + client.view_size.setDefault(getScreenSize(client.prefs.widescreenpref)) + client.view_size.resetToDefault() + + var/mob/dead/new_player/M = new /mob/dead/new_player + M.ckey = ckey /mob/verb/abandon_mob() set name = "Respawn" From 07d8e72125113d964b34b4fe3b3e33f4dd550fa1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 12 Dec 2020 11:19:45 -0700 Subject: [PATCH 007/165] fix --- code/controllers/subsystem/ticker.dm | 2 +- code/datums/world_topic.dm | 2 +- code/modules/admin/admin.dm | 4 +- .../modules/mob/dead/new_player/new_player.dm | 4 +- code/modules/mob/dead/observer/respawn.dm | 43 +++---------------- code/modules/mob/living/death.dm | 4 ++ 6 files changed, 17 insertions(+), 42 deletions(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 730ee3d6ab..e58d05f0d8 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -373,7 +373,7 @@ SUBSYSTEM_DEF(ticker) player.create_character(FALSE) if(player.new_character && player.client && player.client.prefs) // we cannot afford a runtime, ever LAZYOR(player.client.prefs.slots_joined_as, player.client.prefs.slot) - LAZYOR(player.client.prefs.characters_joined_as, player.new_character.real_name)) + LAZYOR(player.client.prefs.characters_joined_as, player.new_character.real_name) else stack_trace("WARNING: Either a player did not have a new_character, did not have a client, or did not have preferences. This is VERY bad.") else diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 261e423640..7a1f0f6980 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -164,7 +164,7 @@ . = list() .["version"] = GLOB.game_version .["mode"] = "hidden" //CIT CHANGE - hides the gamemode in topic() calls to prevent meta'ing the gamemode - .["respawn"] = config ? !CONFIG_GET(flag/norespawn) : FALSE + .["respawn"] = config ? CONFIG_GET(flag/respawns_enabled) : FALSE .["enter"] = GLOB.enter_allowed .["vote"] = CONFIG_GET(flag/allow_vote_mode) .["ai"] = CONFIG_GET(flag/allow_ai) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index d4b2d03428..d4afc3dbb4 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -679,8 +679,8 @@ set category = "Server" set desc="Respawn basically" set name="Toggle Respawn" - var/new_nores = !CONFIG_GET(flag/norespawn) - CONFIG_SET(flag/norespawn, new_nores) + var/new_nores = CONFIG_GET(flag/respawns_enabled) + CONFIG_SET(flag/respawns_enabled, !new_nores) if (!new_nores) to_chat(world, "You may now respawn.", confidential = TRUE) else diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 6d619c4fd1..09975ed7b9 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -449,8 +449,8 @@ GLOB.joined_player_list += character.ckey GLOB.latejoiners += character - LAZYOR(prefs.slots_joined_as, prefs.slot) - LAZYOR(prefs.characters_joined_as, character.real_name)) + LAZYOR(character.client.prefs.slots_joined_as, prefs.slot) + LAZYOR(character.client.prefs.characters_joined_as, character.real_name) if(CONFIG_GET(flag/allow_latejoin_antagonists) && humanc) //Borgs aren't allowed to be antags. Will need to be tweaked if we get true latejoin ais. if(SSshuttle.emergency) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index fb1873adff..0ccdc460cf 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -15,7 +15,7 @@ continue valid["[I.ckey] - Observing: [I]"] = I.ckey for(var/mob/dead/new_player/I in GLOB.dead_mob_list) - if(!I.client || !I.prefs.respawn_restrictions_active) + if(!I.client || !I.client.prefs.respawn_restrictions_active) continue valid["[I.ckey] - IN LOBBY"] = I.ckey var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid] @@ -39,7 +39,7 @@ if(confirm != "Yes") return message_admins("[key_name_admin(src)] removed [ckey]'s respawn restrictions.") - log_admins("[key_name(src)] removed [ckey]'s respawn restrictions") + log_admin("[key_name(src)] removed [ckey]'s respawn restrictions") NP.client.prefs.respawn_restrictions_active = FALSE to_chat(NP, "Your respawn restrictions have been removed.") else @@ -54,7 +54,7 @@ set category = "Admin" var/list/mob/dead/observer/valid = list() - for(var/mob/dead/observer/i in GLOB.dead_mob_list) + for(var/mob/dead/observer/I in GLOB.dead_mob_list) if(!I.client) continue valid["[I.ckey] - [I.name]"] = I @@ -99,6 +99,10 @@ set name = "Respawn" set category = "OOC" + if(!CONFIG_GET(flag/respawns_enabled)) + to_chat(src, "Respawns are disabled in configuration.") + return + var/timeleft = time_left_to_respawn() if(timeleft) to_chat(src, "It's been too short of a time since you died/observed! Please wait [round(timeleft / 600, 0.1)] more minutes.") @@ -145,36 +149,3 @@ var/mob/dead/new_player/M = new /mob/dead/new_player M.ckey = ckey - -/mob/verb/abandon_mob() - set name = "Respawn" - set category = "OOC" - - if (CONFIG_GET(flag/norespawn)) - return - if ((stat != DEAD || !( SSticker ))) - to_chat(usr, "You must be dead to use this!") - return - - log_game("[key_name(usr)] used abandon mob.") - - to_chat(usr, "Please roleplay correctly!") - - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - return - client.screen.Cut() - client.screen += client.void - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - return - - var/mob/dead/new_player/M = new /mob/dead/new_player() - if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") - qdel(M) - return - - M.key = key -// M.Login() //wat - return diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index c605f91528..f0caa63a1a 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -66,6 +66,10 @@ GLOB.alive_mob_list -= src if(!gibbed) GLOB.dead_mob_list += src + if(mind.key) + var/datum/preferences/P = GLOB.preferences_datums[ckey(mind.key)] + if(P) + P.respawn_time_of_death = world.time set_drugginess(0) set_disgust(0) SetSleeping(0, 0) From a4688557d7424bf3b852c6186bcf9a4f166c9b64 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 02:29:31 -0700 Subject: [PATCH 008/165] Cryo --- code/controllers/subsystem/ticker.dm | 2 +- code/game/machinery/cryopod.dm | 197 +++++++----------- .../modules/mob/dead/new_player/new_player.dm | 2 +- 3 files changed, 83 insertions(+), 118 deletions(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index e58d05f0d8..198c380f41 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -372,7 +372,7 @@ SUBSYSTEM_DEF(ticker) GLOB.joined_player_list += player.ckey player.create_character(FALSE) if(player.new_character && player.client && player.client.prefs) // we cannot afford a runtime, ever - LAZYOR(player.client.prefs.slots_joined_as, player.client.prefs.slot) + LAZYOR(player.client.prefs.slots_joined_as, player.client.prefs.default_slot) LAZYOR(player.client.prefs.characters_joined_as, player.new_character.real_name) else stack_trace("WARNING: Either a player did not have a new_character, did not have a client, or did not have preferences. This is VERY bad.") diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 5bc0ed20b0..4019a00531 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -22,17 +22,16 @@ //Used for logging people entering cryosleep and important items they are carrying. var/list/frozen_crew = list() - var/list/frozen_items = list() - - // Used for containing rare items traitors need to steal, so it's not - // game-over if they get iced - var/list/objective_items = list() - // A cache of theft datums so you don't have to re-create them for - // each item check - var/list/theft_cache = list() + var/list/obj/stored_packages = list() var/allow_items = TRUE +/obj/machinery/computer/cryopod/deconstruct() + . = ..() + for(var/i in stored_packages) + var/obj/O = i + O.forceMove(drop_location()) + /obj/machinery/computer/cryopod/attack_ai() attack_hand() @@ -70,8 +69,8 @@ if(!frozen_items.len) dat += "There has been no storage usage at this terminal.
" else - for(var/obj/item/I in frozen_items) - dat += "[I.name]
" + for(var/obj/O in stored_packages) + dat += "[O.name]
" dat += "
" var/datum/browser/popup = new(user, "cryopod_console", "Cryogenic System Control") @@ -87,25 +86,27 @@ add_fingerprint(user) if(href_list["item"]) - if(!allowed(user)) + if(!allowed(user) && !(obj_flags & EMAGGED)) to_chat(user, "Access Denied.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) updateUsrDialog() return - if(!allow_items) return - if(frozen_items.len == 0) + if(!allow_items) + return + + if(stored_packages.len == 0) to_chat(user, "There is nothing to recover from storage.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) updateUsrDialog() return - var/obj/item/I = input(user, "Please choose which object to retrieve.","Object recovery",null) as null|anything in frozen_items + var/obj/I = input(user, "Please choose which object to retrieve.","Object recovery",null) as null|anything in stored_packages playsound(src, "terminal_type", 25, 0) if(!I) return - if(!(I in frozen_items)) + if(!(I in stored_packages)) to_chat(user, "\The [I] is no longer in storage.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) updateUsrDialog() @@ -117,20 +118,21 @@ I.forceMove(drop_location()) if(user && Adjacent(user) && user.can_hold_items()) user.put_in_hands(I) - frozen_items -= I + stored_packages -= I updateUsrDialog() else if(href_list["allitems"]) playsound(src, "terminal_type", 25, 0) - if(!allowed(user)) + if(!allowed(user) && !(obj_flags & EMAGGED)) to_chat(user, "Access Denied.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) updateUsrDialog() return + if(!allow_items) return - if(frozen_items.len == 0) + if(stored_packages.len == 0) to_chat(user, "There is nothing to recover from storage.") playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0) return @@ -138,10 +140,10 @@ visible_message("The console beeps happily as it disgorges the desired objects.") playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, 0) - for(var/obj/item/I in frozen_items) - I.forceMove(drop_location()) - frozen_items -= I - updateUsrDialog() + for(var/obj/O in stored_packages) + O.forceMove(get_turf(src)) + stored_packages.Cut() + updateUsrDialog() else if (href_list["menu"]) src.menu = text2num(href_list["menu"]) @@ -159,6 +161,9 @@ /obj/machinery/computer/cryopod/contents_explosion() return +/obj/machinery/computer/cryopod/contents_explosion() + return //don't blow everyone's shit up. + //Cryopods themselves. /obj/machinery/cryopod name = "cryogenic freezer" @@ -177,44 +182,9 @@ var/despawn_world_time = null // Used to keep track of the safe period. var/obj/machinery/computer/cryopod/control_computer + var/item_storage_type = /obj/item/storage/box/blue //with how storage components work this can be anything the player can open or anything with a storage component. var/last_no_computer_message = 0 - // These items are preserved when the process() despawn proc occurs. - var/static/list/preserve_items = typecacheof(list( - /obj/item/hand_tele, - /obj/item/card/id/captains_spare, - /obj/item/aicard, - /obj/item/mmi, - /obj/item/paicard, - /obj/item/gun, - /obj/item/pinpointer, - /obj/item/clothing/shoes/magboots, - /obj/item/areaeditor/blueprints, - /obj/item/clothing/head/helmet/space, - /obj/item/clothing/suit/space, - /obj/item/clothing/suit/armor, - /obj/item/defibrillator/compact, - /obj/item/reagent_containers/hypospray/CMO, - /obj/item/clothing/accessory/medal/gold/captain, - /obj/item/clothing/gloves/krav_maga, - /obj/item/nullrod, - /obj/item/tank/jetpack, - /obj/item/documents, - /obj/item/nuke_core_container - )) - // These items will NOT be preserved - var/static/list/do_not_preserve_items = typecacheof(list( - /obj/item/mmi/posibrain, - /obj/item/gun/energy/laser/mounted, - /obj/item/gun/energy/e_gun/advtaser/mounted, - /obj/item/gun/ballistic/revolver/grenadelauncher/cyborg, - /obj/item/gun/energy/disabler/cyborg, - /obj/item/gun/energy/e_gun/advtaser/cyborg, - /obj/item/gun/energy/printer, - /obj/item/gun/energy/kinetic_accelerator/cyborg, - /obj/item/gun/energy/laser/cyborg - )) - /obj/machinery/cryopod/Initialize(mapload) . = ..() update_icon() @@ -286,73 +256,72 @@ despawn_occupant() -#define CRYO_DESTROY 0 -#define CRYO_PRESERVE 1 -#define CRYO_OBJECTIVE 2 -#define CRYO_IGNORE 3 -#define CRYO_DESTROY_LATER 4 - -/obj/machinery/cryopod/proc/should_preserve_item(obj/item/I) - for(var/datum/objective_item/steal/T in control_computer.theft_cache) - if(istype(I, T.targetitem) && T.check_special_completion(I)) - return CRYO_OBJECTIVE - if(preserve_items[I] && !do_not_preserve_items[I]) - return CRYO_PRESERVE - return CRYO_DESTROY - // This function can not be undone; do not call this unless you are sure /obj/machinery/cryopod/proc/despawn_occupant() if(!control_computer) find_control_computer() var/mob/living/mob_occupant = occupant - var/list/obj/item/cryo_items = list() + + var/list/obj/item/storing = list() + var/list/obj/item/destroying = list() + var/list/obj/item/destroy_later = list() investigate_log("Despawning [key_name(mob_occupant)].", INVESTIGATE_CRYOGENICS) - //Handle Borg stuff first + var/atom/target_store = (control_computer?.allow_items && control_computer) || src //the double control computer check makes it return the control computer. + var/drop_to_ground = !istype(target_store, /obj/machinery/computer/cryopod) + if(iscyborg(mob_occupant)) var/mob/living/silicon/robot/R = mob_occupant if(R.mmi?.brain) - cryo_items[R.mmi] = CRYO_DESTROY_LATER - cryo_items[R.mmi.brain] = CRYO_DESTROY_LATER - for(var/obj/item/I in R.module) // the tools the borg has; metal, glass, guns etc - for(var/obj/item/O in I) // the things inside the tools, if anything; mainly for janiborg trash bags - cryo_items[O] = should_preserve_item(O) - O.forceMove(src) - R.module.remove_module(I, TRUE) //delete the module itself so it doesn't transfer over. - - //Drop all items into the pod. - for(var/obj/item/I in mob_occupant) - if(cryo_items[I] == CRYO_IGNORE || cryo_items[I] ==CRYO_DESTROY_LATER) - continue - cryo_items[I] = should_preserve_item(I) - mob_occupant.transferItemToLoc(I, src, TRUE) - if(I.contents.len) //Make sure we catch anything not handled by qdel() on the items. - if(cryo_items[I] != CRYO_DESTROY) // Don't remove the contents of things that need preservation + destroy_later += R.mmi + destroy_later += R.mmi.brain + for(var/i in R.module) + if(!isitem(i)) + destroying += i continue - for(var/obj/item/O in I.contents) - cryo_items[O] = should_preserve_item(O) - O.forceMove(src) + var/obj/item/I = i + // let's be honest we only care about the trash bag don't beat around the bush + if(SEND_SIGNAL(I, COMSIG_CONTAINS_STORAGE)) + storing += I.contents + for(var/atom/movable/AM in I.contents) + AM.forceMove(src) + R.module.remove_module(I, TRUE) + else + var/list/gear = list() + if(iscarbon(mob_occupant)) // sorry simp-le-mobs deserve no mercy + var/mob/living/carbon/C = mob_occupant + gear = C.get_all_gear() + for(var/i in gear) + var/obj/item/I = i + I.forceMove(src) + if(!istype(I)) + destroying += I + continue + if(I.item_flags & (DROPDEL | ABSTRACT)) + destroying += I + continue + if(HAS_TRAIT(I, TRAIT_NODROP)) + destroying += I + continue + storing += I - for(var/A in cryo_items) - var/obj/item/I = A - if(QDELETED(I)) //edge cases and DROPDEL. - continue - var/preserve = cryo_items[I] - if(preserve == CRYO_DESTROY_LATER) - continue - if(preserve != CRYO_IGNORE) - if(preserve == CRYO_DESTROY) - qdel(I) - else if(control_computer?.allow_items) - control_computer.frozen_items += I - if(preserve == CRYO_OBJECTIVE) - control_computer.objective_items += I - I.moveToNullspace() - else - I.forceMove(loc) - cryo_items -= I + // get rid of mobs + for(var/mob/living/L in mob_occupant.GetAllContents()) + L.forceMove(drop_location()) + + if(storing.len) + var/obj/O = new item_storage_type + O.name = "cryogenic retrieval package: [mob_occupant.real_name]" + for(var/i in stored) + var/obj/item/I = i + I.forceMove(O) + O.forceMove(drop_to_ground? target_store.drop_location() : target_store) + if((target_store == control_computer) && !drop_to_ground) + control_computer.stored_packages += O + + QDEL_LIST(destroying) //Update any existing objectives involving this mob. for(var/i in GLOB.objectives) @@ -417,16 +386,12 @@ mob_occupant.ghostize(FALSE, penalize = TRUE, voluntary = TRUE) QDEL_NULL(occupant) - for(var/I in cryo_items) //only "CRYO_DESTROY_LATER" atoms are left) - var/atom/A = I - if(!QDELETED(A)) - qdel(A) + QDEL_LIST(destroy_later) open_machine() name = initial(name) #undef CRYO_DESTROY #undef CRYO_PRESERVE -#undef CRYO_OBJECTIVE #undef CRYO_IGNORE #undef CRYO_DESTROY_LATER diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 09975ed7b9..7acf6ad32c 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -449,7 +449,7 @@ GLOB.joined_player_list += character.ckey GLOB.latejoiners += character - LAZYOR(character.client.prefs.slots_joined_as, prefs.slot) + LAZYOR(character.client.prefs.slots_joined_as, character.client.prefs.default_slot) LAZYOR(character.client.prefs.characters_joined_as, character.real_name) if(CONFIG_GET(flag/allow_latejoin_antagonists) && humanc) //Borgs aren't allowed to be antags. Will need to be tweaked if we get true latejoin ais. From 61c08ba42207c13b86089189ee1c730da49bdcdb Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 02:29:53 -0700 Subject: [PATCH 009/165] fine --- config/respawns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/respawns.txt b/config/respawns.txt index 97b196135a..79eb53469c 100644 --- a/config/respawns.txt +++ b/config/respawns.txt @@ -5,7 +5,7 @@ RESPAWNS_ENABLED RESPAWN_DELAY 15.0 ## Allow respawning as anything but an assistant. -# ALLOW_NON_ASSISTANT_RESPAWN +ALLOW_NON_ASSISTANT_RESPAWN ## Allow respawning as security and command. Only works if ALLOW_NON_ASSISTANT_RESPAWN is on. # ALLOW_COMBAT_ROLE_RESPAWN From 99709a1a35d0613eef82271d5d0709f5b2e52261 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 04:30:00 -0700 Subject: [PATCH 010/165] fix --- code/game/machinery/cryopod.dm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 4019a00531..2ba902e4c2 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -66,7 +66,7 @@ if(3) dat += "<< Back

" dat += "

Recently stored objects




" - if(!frozen_items.len) + if(!stored_packages.len) dat += "There has been no storage usage at this terminal.
" else for(var/obj/O in stored_packages) @@ -314,7 +314,7 @@ if(storing.len) var/obj/O = new item_storage_type O.name = "cryogenic retrieval package: [mob_occupant.real_name]" - for(var/i in stored) + for(var/i in storing) var/obj/item/I = i I.forceMove(O) O.forceMove(drop_to_ground? target_store.drop_location() : target_store) @@ -390,11 +390,6 @@ open_machine() name = initial(name) -#undef CRYO_DESTROY -#undef CRYO_PRESERVE -#undef CRYO_IGNORE -#undef CRYO_DESTROY_LATER - /obj/machinery/cryopod/MouseDrop_T(mob/living/target, mob/user) if(!istype(target) || user.incapacitated() || !target.Adjacent(user) || !Adjacent(user) || !ismob(target) || (!ishuman(user) && !iscyborg(user)) || !istype(user.loc, /turf) || target.buckled) return From 282251b8344830c4e939d147848b1911fde81661 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 13 Dec 2020 09:09:52 -0500 Subject: [PATCH 011/165] Zeolites --- .../modules/reagents/chemistry/recipes/fermi.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index f4b8850f55..df95025160 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -591,21 +591,21 @@ /datum/chemical_reaction/fermi/zeolites name = "Zeolites" id = /datum/reagent/fermi/zeolites - results = list(/datum/reagent/fermi/zeolites = 5) //We make a lot! - But it's now somewhat dangerous, and needs a bit of uranium to catalyze the reaction + results = list(/datum/reagent/fermi/zeolites = 5) //We make a lot! - But it's now somewhat dangerous, and needs a bit of gold to catalyze the reaction required_reagents = list(/datum/reagent/medicine/potass_iodide = 1, /datum/reagent/aluminium = 1, /datum/reagent/silicon = 1, /datum/reagent/oxygen = 1) - required_catalysts = list(/datum/reagent/uranium = 5) + required_catalysts = list(/datum/reagent/gold = 5) //FermiChem vars: OptimalTempMin = 500 OptimalTempMax = 750 ExplodeTemp = 850 - OptimalpHMin = 2.8 - OptimalpHMax = 5 //2.2 ph levels of optimal ph zone - centered at 3.9 - ph of ingredients mixed at equal values is 9.55; ph of result is 8. - ReactpHLim = 4 + OptimalpHMin = 4.8 + OptimalpHMax = 7 + ReactpHLim = 5 //CatalystFact = 0 CurveSharpT = 1.5 CurveSharppH = 3 - ThermicConstant = 7 + ThermicConstant = 5 HIonRelease = -0.15 RateUpLim = 4 - PurityMin = 0.5 //Good luck. + PurityMin = 0.4 FermiChem = TRUE From b8c753d642c24fbfebed41a8d4adf6d046fe4657 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 13 Dec 2020 11:33:06 -0500 Subject: [PATCH 012/165] Update fermi.dm --- .../code/modules/reagents/chemistry/recipes/fermi.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index df95025160..bbecd2f6f4 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -607,5 +607,5 @@ ThermicConstant = 5 HIonRelease = -0.15 RateUpLim = 4 - PurityMin = 0.4 + PurityMin = 0.5 //Good luck! FermiChem = TRUE From e79ce41f24041a3ae426413e67532cab6994b3a3 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 16:41:01 -0700 Subject: [PATCH 013/165] Update code/modules/mob/living/death.dm Co-authored-by: DeltaFire <46569814+DeltaFire15@users.noreply.github.com> --- code/modules/mob/living/death.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index f0caa63a1a..24e91f6051 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -66,7 +66,7 @@ GLOB.alive_mob_list -= src if(!gibbed) GLOB.dead_mob_list += src - if(mind.key) + if(mind?.key) var/datum/preferences/P = GLOB.preferences_datums[ckey(mind.key)] if(P) P.respawn_time_of_death = world.time From 4451a96997b0fdb5641a89eb7037bbe8c85a0ef5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 20:12:14 -0700 Subject: [PATCH 014/165] fixes --- code/game/machinery/cryopod.dm | 2 +- code/modules/mob/dead/observer/observer.dm | 5 +++++ code/modules/mob/dead/observer/respawn.dm | 4 ++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 2ba902e4c2..c9c555e331 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -308,7 +308,7 @@ storing += I // get rid of mobs - for(var/mob/living/L in mob_occupant.GetAllContents()) + for(var/mob/living/L in mob_occupant.GetAllContents() - mob_occupant) L.forceMove(drop_location()) if(storing.len) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 0c57c13e3f..b16903f062 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -277,6 +277,11 @@ Works together with spawning an observer, noted above. if (client && client.prefs && client.prefs.auto_ooc) if (!(client.prefs.chat_toggles & CHAT_OOC)) client.prefs.chat_toggles ^= CHAT_OOC + if(ckey && penalize) + var/datum/preferences/P = GLOB.preferences_datums[ckey] + if(P) + P.respawn_restrictions_active = TRUE + P.respawn_time_of_death = world.time transfer_ckey(ghost, FALSE) ghost.client.init_verbs() if(penalize) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index 0ccdc460cf..5a5a4572bd 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -87,8 +87,12 @@ if(randombody && (nameless || randomname)) return TRUE // somewhat unrecognizable if(client.prefs.slots_joined_as && (client.prefs.default_slot in client.prefs.slots_joined_as)) + if(notify) + to_chat(src, "You cannot respawn on the same slot. Joined slots: [english_list(client.prefs.slots_joined_as)].") return FALSE if((!nameless && !randomname) && (client.prefs.characters_joined_as && (client.prefs.real_name in client.prefs.characters_joined_as))) + if(notify) + to_chat(src, "You cannot respawn on the same character. Joined slots: [english_list(client.prefs.characters_joined_as)].") return FALSE return TRUE From 413bd23d0ab1b57318caa03610fcc296c179236e Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 13 Dec 2020 23:07:12 -0700 Subject: [PATCH 015/165] dnr prevention --- code/modules/client/preferences.dm | 2 ++ code/modules/mob/dead/observer/observer.dm | 6 ++++-- code/modules/mob/dead/observer/respawn.dm | 6 ++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 0cf03e3a84..a634810dbf 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -29,6 +29,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/respawn_restrictions_active = FALSE /// time of death we consider for respawns var/respawn_time_of_death = -INFINITY + /// did they DNR? used to prevent respawns. + var/dnr_triggered = FALSE // Intra-round persistence end diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index b16903f062..800f704ab6 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -428,12 +428,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp to_chat(usr, "You're already stuck out of your body!") return FALSE - var/response = alert(src, "Are you sure you want to prevent (almost) all means of resuscitation? This cannot be undone. ","Are you sure you want to stay dead?","Yes","No") + var/response = alert(src, "Are you sure you want to prevent (almost) all means of resuscitation? This cannot be undone. THIS WILL ALSO STOP YOU FROM RESPAWNING!!!","Are you sure you want to stay dead and never respawn?","Yes","No") + if(response != "Yes") return can_reenter_corpse = FALSE - to_chat(src, "You can no longer be brought back into your body.") + client.prefs?.dnr_triggered = TRUE + to_chat(src, "You can no longer be brought back into your body or respawn.") return TRUE /mob/dead/observer/proc/notify_cloning(var/message, var/sound, var/atom/source, flashwindow = TRUE) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index 5a5a4572bd..a53fc514b8 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -33,6 +33,7 @@ log_admin("[key_name(src)] gave [key_name(O)] a full respawn and sent them back to the lobby.") to_chat(O, "You have been given a full respawn.") O.do_respawn(FALSE) + O.client.prefs.dnr_triggered = FALSE else if(istype(M, /mob/dead/new_player)) var/mob/dead/new_player/NP = M var/confirm = alert(src, "Remove [NP]'s respawn restrictions?", "Remove Restrictions", "Yes", "No") @@ -41,6 +42,7 @@ message_admins("[key_name_admin(src)] removed [ckey]'s respawn restrictions.") log_admin("[key_name(src)] removed [ckey]'s respawn restrictions") NP.client.prefs.respawn_restrictions_active = FALSE + NP.client.prefs.dnr_triggered = FALSE to_chat(NP, "Your respawn restrictions have been removed.") else CRASH("Invalid mobtype") @@ -107,6 +109,10 @@ to_chat(src, "Respawns are disabled in configuration.") return + if(client.prefs.dnr_triggered) + to_chat(src, "You cannot respawn as you have enabled DNR.") + return + var/timeleft = time_left_to_respawn() if(timeleft) to_chat(src, "It's been too short of a time since you died/observed! Please wait [round(timeleft / 600, 0.1)] more minutes.") From 2844d2e4de4228b08ecd22c9da411a1e863bdb72 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 14 Dec 2020 06:01:32 -0700 Subject: [PATCH 016/165] fix --- code/modules/mob/dead/observer/respawn.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index a53fc514b8..e2a85d11d8 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -80,6 +80,8 @@ * Checks if we can latejoin on the currently selected slot, taking into account respawn status. */ /mob/dead/new_player/proc/respawn_latejoin_check(notify = FALSE) + if(!client.prefs.respawn_restrictions_active) + return TRUE var/can_same_person = CONFIG_GET(flag/allow_same_character_respawn) if(can_same_person) return TRUE From e87cc2780333c3c5c7fb275db53192ac2ed6ada4 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 15 Dec 2020 07:21:06 -0700 Subject: [PATCH 017/165] modifications --- code/controllers/configuration/entries/respawns.dm | 5 +++++ code/game/machinery/cryopod.dm | 2 +- code/modules/admin/topic.dm | 7 +++++-- code/modules/client/preferences.dm | 2 ++ code/modules/mob/dead/observer/observer.dm | 3 ++- code/modules/mob/dead/observer/respawn.dm | 13 ++++++++++--- config/respawns.txt | 3 +++ 7 files changed, 28 insertions(+), 7 deletions(-) diff --git a/code/controllers/configuration/entries/respawns.dm b/code/controllers/configuration/entries/respawns.dm index b19c8bf9d8..d92f4ec394 100644 --- a/code/controllers/configuration/entries/respawns.dm +++ b/code/controllers/configuration/entries/respawns.dm @@ -7,6 +7,11 @@ config_entry_value = 15.0 integer = FALSE +/// Minutes before allowing respawn, if user cryo'd. +/datum/config_entry/number/respawn_delay_cryo + config_entry_value = 5.0 + integer = FALSE + /// Allows respawning as non-assistant. Overrides all others of this type. /datum/config_entry/flag/allow_non_assistant_respawn config_entry_value = FALSE diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index c9c555e331..31ae77848f 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -383,7 +383,7 @@ // Ghost and delete the mob. if(!mob_occupant.get_ghost(1)) - mob_occupant.ghostize(FALSE, penalize = TRUE, voluntary = TRUE) + mob_occupant.ghostize(FALSE, penalize = TRUE, voluntary = TRUE, cryo = TRUE) QDEL_NULL(occupant) QDEL_LIST(destroy_later) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index fd8204a296..e0434a6fea 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1805,12 +1805,15 @@ if(alert(usr, "Send [key_name(M)] back to Lobby?", "Message", "Yes", "No") != "Yes") return - log_admin("[key_name(usr)] has sent [key_name(M)] back to the Lobby.") - message_admins("[key_name(usr)] has sent [key_name(M)] back to the Lobby.") + log_admin("[key_name(usr)] has sent [key_name(M)] back to the Lobby, removing their respawn restrictions if they existed.") + message_admins("[key_name(usr)] has sent [key_name(M)] back to the Lobby, removing their respawn restrictions if they existed.") var/mob/dead/new_player/NP = new() NP.ckey = M.ckey qdel(M) + if(GLOB.preferences_datums[NP.ckey]) + var/datum/preferences/P = GLOB.preferences_datums[NP.ckey] + P.respawn_restrictions_active = FALSE else if(href_list["tdome1"]) if(!check_rights(R_FUN)) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index a634810dbf..e97f6dc3f4 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -31,6 +31,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/respawn_time_of_death = -INFINITY /// did they DNR? used to prevent respawns. var/dnr_triggered = FALSE + /// did they cryo on their last ghost? + var/respawn_did_cryo = FALSE // Intra-round persistence end diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 800f704ab6..9493d11792 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -264,7 +264,7 @@ Transfer_mind is there to check if mob is being deleted/not going to have a body Works together with spawning an observer, noted above. */ -/mob/proc/ghostize(can_reenter_corpse = TRUE, special = FALSE, penalize = FALSE, voluntary = FALSE) +/mob/proc/ghostize(can_reenter_corpse = TRUE, special = FALSE, penalize = FALSE, voluntary = FALSE, cryo = FALSE) var/sig_flags = SEND_SIGNAL(src, COMSIG_MOB_GHOSTIZE, can_reenter_corpse, special, penalize) penalize = !(sig_flags & COMPONENT_DO_NOT_PENALIZE_GHOSTING) && (suiciding || penalize) // suicide squad. voluntary_ghosted = voluntary @@ -282,6 +282,7 @@ Works together with spawning an observer, noted above. if(P) P.respawn_restrictions_active = TRUE P.respawn_time_of_death = world.time + P.respawn_did_cryo = cryo transfer_ckey(ghost, FALSE) ghost.client.init_verbs() if(penalize) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index e2a85d11d8..53c6eef4c9 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -18,7 +18,10 @@ if(!I.client || !I.client.prefs.respawn_restrictions_active) continue valid["[I.ckey] - IN LOBBY"] = I.ckey - var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid] + if(!valid.len) + to_chat(src, "No player found that is either a ghost or is in lobby with restrictions active.") + return + var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid var/client/player = GLOB.directory[ckey] if(!player) to_chat(src, "Client not found.") @@ -60,7 +63,11 @@ if(!I.client) continue valid["[I.ckey] - [I.name]"] = I - var/mob/dead/observer/O = valid[input(src, "Choose a player (only showing logged in)", "Remove Respawn Timer") as null|anything in valid] + + if(!valid.len) + to_chat(src, "No logged in ghosts found.") + return + var/mob/dead/observer/O = valid[input(src, "Choose a player (only showing logged in)", "Remove Respawn Timer") as null|anything in valid if(!O.client) to_chat(src, "[O] has no client.") @@ -126,7 +133,7 @@ */ /mob/dead/observer/verb/time_left_to_respawn() ASSERT(client) - return max(0, (CONFIG_GET(number/respawn_delay) MINUTES + client.prefs.respawn_time_of_death) - world.time) + return max(0, ((client.prefs.respawn_did_cryo? CONFIG_GET(number/respawn_delay_cryo) : CONFIG_GET(number/respawn_delay)) MINUTES + client.prefs.respawn_time_of_death) - world.time) /** * Handles respawning diff --git a/config/respawns.txt b/config/respawns.txt index 79eb53469c..46a4bb0e07 100644 --- a/config/respawns.txt +++ b/config/respawns.txt @@ -4,6 +4,9 @@ RESPAWNS_ENABLED ## Minutes delay before allowing respawns, either from death or observing. Not an integer. RESPAWN_DELAY 15.0 +## Minutes delay before allowing respawns, if the user cryo'd. Not an integer. +RESPAWN_DELAY_CRYO 5.0 + ## Allow respawning as anything but an assistant. ALLOW_NON_ASSISTANT_RESPAWN From 0a593013e0d84bf829baa6b451436c0b4d489374 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 15 Dec 2020 07:23:46 -0700 Subject: [PATCH 018/165] wew --- code/modules/mob/dead/observer/respawn.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index 53c6eef4c9..a31fdd4bf4 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -21,7 +21,7 @@ if(!valid.len) to_chat(src, "No player found that is either a ghost or is in lobby with restrictions active.") return - var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid + var/ckey = valid[input(src, "Choose a player (only showing logged in players who have restrictions)", "Unrestricted Respawn") as null|anything in valid] var/client/player = GLOB.directory[ckey] if(!player) to_chat(src, "Client not found.") @@ -67,7 +67,7 @@ if(!valid.len) to_chat(src, "No logged in ghosts found.") return - var/mob/dead/observer/O = valid[input(src, "Choose a player (only showing logged in)", "Remove Respawn Timer") as null|anything in valid + var/mob/dead/observer/O = valid[input(src, "Choose a player (only showing logged in)", "Remove Respawn Timer") as null|anything in valid] if(!O.client) to_chat(src, "[O] has no client.") From a7aa7f24662f004a41115b0c39d0b8545feff940 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 15 Dec 2020 07:43:35 -0700 Subject: [PATCH 019/165] delete pdas --- code/game/machinery/cryopod.dm | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 31ae77848f..5cee613ffd 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -272,6 +272,9 @@ var/atom/target_store = (control_computer?.allow_items && control_computer) || src //the double control computer check makes it return the control computer. var/drop_to_ground = !istype(target_store, /obj/machinery/computer/cryopod) + var/mind_identity = mob_occupant.mind?.name + var/occupant_identity = mob_occupant.real_name + if(iscyborg(mob_occupant)) var/mob/living/silicon/robot/R = mob_occupant if(R.mmi?.brain) @@ -305,7 +308,21 @@ if(HAS_TRAIT(I, TRAIT_NODROP)) destroying += I continue - storing += I + // WEE WOO SNOWFLAKE TIME + if(istype(I, /obj/item/pda)) + var/obj/item/pda/P = I + if((P.owner == mind_identity) || (P.owner == occupant_identity)) + destroying += P + else + storing += P + else if(istype(I, /obj/item/card/id)) + var/obj/item/card/id/idcard = I + if((idcard.registered_name == mind_identity) || (idcard.registered_name == occupant_identity)) + destroying += idcard + else + storing += idcard + else + storing += I // get rid of mobs for(var/mob/living/L in mob_occupant.GetAllContents() - mob_occupant) From ebd6e0cbec9c914c23968defd40d4aea7cb47651 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 17 Dec 2020 04:14:04 -0700 Subject: [PATCH 020/165] no backapck in backpack --- code/game/machinery/cryopod.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 5cee613ffd..ea41d77e2a 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -164,6 +164,10 @@ /obj/machinery/computer/cryopod/contents_explosion() return //don't blow everyone's shit up. +/// The box +/obj/item/storage/box/blue/cryostorage_items + w_class = WEIGHT_CLASS_HUGE + //Cryopods themselves. /obj/machinery/cryopod name = "cryogenic freezer" @@ -182,7 +186,7 @@ var/despawn_world_time = null // Used to keep track of the safe period. var/obj/machinery/computer/cryopod/control_computer - var/item_storage_type = /obj/item/storage/box/blue //with how storage components work this can be anything the player can open or anything with a storage component. + var/item_storage_type = /obj/item/storage/box/blue/cryostorage_items //with how storage components work this can be anything the player can open or anything with a storage component. var/last_no_computer_message = 0 /obj/machinery/cryopod/Initialize(mapload) From 3bdf4bacdc2c9bf6d4514185d4a3ed33a6a963af Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Sat, 19 Dec 2020 10:28:56 +0000 Subject: [PATCH 021/165] removes slime blood conversion --- code/modules/reagents/chemistry/recipes/medicine.dm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index fca89a1c73..bf7b94483e 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -305,12 +305,6 @@ results = list(/datum/reagent/medicine/regen_jelly = 2) required_reagents = list(/datum/reagent/medicine/tricordrazine = 1, /datum/reagent/toxin/slimejelly = 1) -/datum/chemical_reaction/jelly_convert - name = "Blood Jelly Conversion" - id = /datum/reagent/toxin/slimejelly - results = list(/datum/reagent/toxin/slimejelly = 1) - required_reagents = list(/datum/reagent/toxin = 1, /datum/reagent/blood/jellyblood = 1) - /datum/chemical_reaction/corazone name = "Corazone" id = /datum/reagent/medicine/corazone From b8b2f347354bb892ffafdf22e9815dddc981a45e Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 19 Dec 2020 18:45:25 -0600 Subject: [PATCH 022/165] funny knife --- code/game/objects/items/kitchen.dm | 7 ++++++- icons/obj/kitchen.dmi | Bin 29184 -> 29189 bytes 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index f15a4d00e1..50b7b1e972 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -175,7 +175,7 @@ /obj/item/kitchen/knife/combat/survival/knuckledagger/Initialize() . = ..() - AddComponent(/datum/component/butchering, 50, 120, 5) // it's good for butchering stuff + AddComponent(/datum/component/butchering, 30, 130, 20) // it's good for butchering stuff /obj/item/kitchen/knife/combat/survival/knuckledagger/ui_action_click(mob/user, actiontype) light_on = !light_on @@ -189,6 +189,11 @@ else set_light(0) +/obj/item/kitchen/knife/combat/survival/update_overlays() + . = ..() + if(light_on) + . += "[icon_state]_lit" + /obj/item/kitchen/knife/combat/bone name = "bone dagger" item_state = "bone_dagger" diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 8cdff2214badd273d988d553090644bec22300db..31312ac9a1bc890bfc5675cd4ed9dff94e9adcc5 100644 GIT binary patch delta 8334 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 delta 8327 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 CIyOE4 From fa799a0ac54e5c4226f075df278fefe0899b279f Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 19 Dec 2020 19:02:56 -0600 Subject: [PATCH 023/165] it compiles --- code/game/objects/items/kitchen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index 50b7b1e972..7f2fe6a01d 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -189,7 +189,7 @@ else set_light(0) -/obj/item/kitchen/knife/combat/survival/update_overlays() +/obj/item/kitchen/knife/combat/survival/knuckledagger/update_overlays() . = ..() if(light_on) . += "[icon_state]_lit" From 7d4de6b8d08faebc6bd63aa705d7b1de72359b50 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Sun, 20 Dec 2020 02:32:59 +0100 Subject: [PATCH 024/165] screamies --- code/game/gamemodes/clock_cult/clock_cult.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/clock_cult/clock_cult.dm b/code/game/gamemodes/clock_cult/clock_cult.dm index be8dee5bf8..29455afe56 100644 --- a/code/game/gamemodes/clock_cult/clock_cult.dm +++ b/code/game/gamemodes/clock_cult/clock_cult.dm @@ -150,14 +150,14 @@ Credit where due: var/datum/team/clockcult/main_clockcult /datum/game_mode/clockwork_cult/pre_setup() //Gamemode and job code is pain. Have fun codediving all of that stuff, whoever works on this next - Delta - var/list/errorList = list() + /*var/list/errorList = list() var/list/reebes = SSmapping.LoadGroup(errorList, "Reebe", "map_files/generic", "City_of_Cogs.dmm", default_traits = ZTRAITS_REEBE, silent = TRUE) if(errorList.len) // reebe failed to load message_admins("Reebe failed to load!") log_game("Reebe failed to load!") return FALSE - for(var/datum/parsed_map/PM in reebes) - PM.initTemplateBounds() + for(var/datum/parsed_map/PM in reebes) //Temporarily commented because of z-level loading reliably segfaulting the server. + PM.initTemplateBounds()*/ if(CONFIG_GET(flag/protect_roles_from_antagonist)) restricted_jobs += protected_jobs if(CONFIG_GET(flag/protect_assistant_from_antagonist)) From 78cf8389ba4f517f95186c1e8405fd7fe207a376 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 20 Dec 2020 10:32:50 -0700 Subject: [PATCH 025/165] Update code/modules/admin/sql_message_system.dm Co-authored-by: DeltaFire <46569814+DeltaFire15@users.noreply.github.com> --- code/modules/admin/sql_message_system.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm index e1a8cc5758..4218d4238f 100644 --- a/code/modules/admin/sql_message_system.dm +++ b/code/modules/admin/sql_message_system.dm @@ -6,7 +6,7 @@ return var/target_ckey = ckey(target_key) if(!target_key && (type == "note" || type == "message" || type == "watchlist entry")) - var/new_key = input(usr,"Who would you like to create a [type] for?","Enter a key or ckey",null) as null|textw + var/new_key = input(usr,"Who would you like to create a [type] for?","Enter a key or ckey",null) as null|text if(!new_key) return var/new_ckey = sanitizeSQL(ckey(new_key)) From cfba0836801bce878bc8f2b936e5f5c14062aea6 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Mon, 21 Dec 2020 00:15:29 +0100 Subject: [PATCH 026/165] oops --- code/modules/antagonists/cult/blood_magic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/cult/blood_magic.dm b/code/modules/antagonists/cult/blood_magic.dm index e6ec3a08b6..4a697a6bd7 100644 --- a/code/modules/antagonists/cult/blood_magic.dm +++ b/code/modules/antagonists/cult/blood_magic.dm @@ -445,7 +445,7 @@ if(L.move_resist < MOVE_FORCE_STRONG) var/atom/throw_target = get_edge_target_turf(L, user.dir) L.throw_at(throw_target, 7, 1, user) - else if(!iscultist(L)) + else if(!is_servant_of_ratvar(L)) L.DefaultCombatKnockdown(160) L.adjustStaminaLoss(140) //Ensures hard stamcrit L.flash_act(1,1) @@ -465,7 +465,7 @@ C.drowsyness = max(10, C.drowsyness) C.confused += clamp(20 - C.confused, 0, 10) L.adjustBruteLoss(15) - to_chat(user, "In an brilliant flash of red, [L] [iscultist(L) ? "writhes in pain" : "falls to the ground!"]") + to_chat(user, "In an brilliant flash of red, [L] [is_servant_of_ratvar(L) ? "writhes in pain!" : "falls to the ground!"]") uses-- ..() From 994df11bc070e9670fdf1c7e54602cd3d86434ca Mon Sep 17 00:00:00 2001 From: MrJWhit <48370570+MrJWhit@users.noreply.github.com> Date: Sun, 20 Dec 2020 19:42:26 -0500 Subject: [PATCH 027/165] Update holidays.dm --- code/modules/holiday/holidays.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/holiday/holidays.dm b/code/modules/holiday/holidays.dm index c6c97f7cba..e3f5264568 100644 --- a/code/modules/holiday/holidays.dm +++ b/code/modules/holiday/holidays.dm @@ -554,7 +554,7 @@ Since Ramadan is an entire month that lasts 29.5 days on average, the start and /datum/holiday/xmas name = CHRISTMAS - begin_day = 10 + begin_day = 18 begin_month = DECEMBER end_day = 27 drone_hat = /obj/item/clothing/head/santa From ea21151462072da62e45486bc7ba17a104bdbc53 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 20 Dec 2020 18:55:45 -0700 Subject: [PATCH 028/165] LF --- README.md | 350 +-- SQL/tgstation_schema.sql | 946 ++++---- TGS3.json | 44 +- _maps/boxstation.json | 22 +- _maps/runtimestation.json | 16 +- bot/nudge.py | 50 +- code/datums/components/README.md | 18 +- config/antag_rep.txt | 10 +- config/comms.txt | 32 +- html/changelog.css | 82 +- sound/voice/catpeople/license.txt | 2 +- strings/names/adjectives.txt | 748 +++--- strings/names/ai.txt | 290 +-- strings/names/carp.txt | 60 +- strings/names/clown.txt | 124 +- strings/names/death_commando.txt | 140 +- strings/names/first.txt | 2790 +++++++++++----------- strings/names/first_female.txt | 1540 ++++++------ strings/names/first_male.txt | 1334 +++++------ strings/names/golem.txt | 314 +-- strings/names/last.txt | 1138 ++++----- strings/names/lizard_female.txt | 324 +-- strings/names/lizard_male.txt | 654 ++--- strings/names/mime.txt | 64 +- strings/names/ninjaname.txt | 86 +- strings/names/ninjatitle.txt | 90 +- strings/names/plasmaman.txt | 234 +- strings/names/posibrain.txt | 92 +- strings/names/verbs.txt | 1262 +++++----- strings/names/wizardfirst.txt | 72 +- strings/names/wizardsecond.txt | 78 +- tools/CreditsTool/remappings.txt | 40 +- tools/Runtime Condenser/Main.cpp | 836 +++---- tools/UnstandardnessTestForDM/readme.txt | 8 +- tools/WebhookProcessor/secret.php | 266 +-- tools/travis/travis_config.txt | 18 +- 36 files changed, 7087 insertions(+), 7087 deletions(-) diff --git a/README.md b/README.md index 0ecf4c5b01..bbceb0f05b 100644 --- a/README.md +++ b/README.md @@ -1,175 +1,175 @@ -## Citadel Station 13 -Based and maintained from /tg/station. - -[![Build Status](https://api.travis-ci.org/Citadel-Station-13/Citadel-Station-13.png)](https://travis-ci.org/Citadel-Station-13/Citadel-Station-13) -[![Percentage of issues still open](http://isitmaintained.com/badge/open/Citadel-Station-13/Citadel-Station-13.svg)](http://isitmaintained.com/project/Citadel-Station-13/Citadel-Station-13 "Percentage of issues still open") -[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/Citadel-Station-13/Citadel-Station-13.svg)](http://isitmaintained.com/project/Citadel-Station-13/Citadel-Station-13 "Average time to resolve an issue") - -[![forthebadge](http://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](https://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/pretty-risque.svg)](https://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/you-didnt-ask-for-this.svg)](http://forthebadge.com) [![forinfinityandbyond](https://user-images.githubusercontent.com/5211576/29499758-4efff304-85e6-11e7-8267-62919c3688a9.gif)](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a) - -**Upstream Information** -* **Website:** -* **Code:** -* **Wiki:** -* **Codedocs:** -* **/tg/station Discord:** -* **Coderbus Discord:** -* ~~**IRC:** ~~ (dead) - -**Citadel Station Information** -* **Website:** -* **Code:** -* **Wiki:** -* **Forums:** -* **Ban Appeals:** -* **Discord:** - -## DOWNLOADING - -There are a number of ways to download the source code. Some are described here, an alternative all-inclusive guide is also located at http://www.tgstation13.org/wiki/Downloading_the_source_code - -Option 1: -Follow this: http://www.tgstation13.org/wiki/Setting_up_git - -Option 2: Download the source code as a zip by clicking the ZIP button in the -code tab of https://github.com/tgstation/tgstation -(note: this will use a lot of bandwidth if you wish to update and is a lot of -hassle if you want to make any changes at all, so it's not recommended.) - -Option 3: Download a pre-compiled nightly at https://tgstation13.download/nightlies/ (same caveats as option 2) - -## INSTALLATION - -First-time installation should be fairly straightforward. First, you'll need -BYOND installed. You can get it from https://www.byond.com/download. Once you've done -that, extract the game files to wherever you want to keep them. This is a -sourcecode-only release, so the next step is to compile the server files. -Open tgstation.dme by double-clicking it, open the Build menu, and click -compile. This'll take a little while, and if everything's done right you'll get -a message like this: - -``` -saving tgstation.dmb (DEBUG mode) -tgstation.dmb - 0 errors, 0 warnings -``` - -If you see any errors or warnings, something has gone wrong - possibly a corrupt -download or the files extracted wrong. If problems persist, ask for assistance -in irc://irc.rizon.net/coderbus - -Once that's done, open up the config folder. You'll want to edit config.txt to -set the probabilities for different gamemodes in Secret and to set your server -location so that all your players don't get disconnected at the end of each -round. It's recommended you don't turn on the gamemodes with probability 0, -except Extended, as they have various issues and aren't currently being tested, -so they may have unknown and bizarre bugs. Extended is essentially no mode, and -isn't in the Secret rotation by default as it's just not very fun. - -You'll also want to edit config/admins.txt to remove the default admins and add -your own. "Game Master" is the highest level of access, and probably the one -you'll want to use for now. You can set up your own ranks and find out more in -config/admin_ranks.txt - -The format is - -``` -byondkey = Rank -``` - -where the admin rank must be properly capitalised. - -This codebase also depends on a native library called rust-g. A precompiled -Windows DLL is included in this repository, but Linux users will need to build -and install it themselves. Directions can be found at the [rust-g -repo](https://github.com/tgstation13/rust-g). - -Finally, to start the server, run Dream Daemon and enter the path to your -compiled tgstation.dmb file. Make sure to set the port to the one you -specified in the config.txt, and set the Security box to 'Safe'. Then press GO -and the server should start up and be ready to join. It is also recommended that -you set up the SQL backend (see below). - -## UPDATING - -To update an existing installation, first back up your /config and /data folders -as these store your server configuration, player preferences and banlist. - -Then, extract the new files (preferably into a clean directory, but updating in -place should work fine), copy your /config and /data folders back into the new -install, overwriting when prompted except if we've specified otherwise, and -recompile the game. Once you start the server up again, you should be running -the new version. - -## HOSTING - -If you'd like a more robust server hosting option for tgstation and its -derivatives. Check out our server tools suite at -https://github.com/tgstation/tgstation-server - -## MAPS - -/tg/station currently comes equipped with five maps. - -* [BoxStation (default)](http://tgstation13.org/wiki/Boxstation) -* [MetaStation](https://tgstation13.org/wiki/MetaStation) -* [DeltaStation](https://tgstation13.org/wiki/DeltaStation) -* [OmegaStation](https://tgstation13.org/wiki/OmegaStation) -* [PubbyStation](https://tgstation13.org/wiki/PubbyStation) - - -All maps have their own code file that is in the base of the _maps directory. Maps are loaded dynamically when the game starts. Follow this guideline when adding your own map, to your fork, for easy compatibility. - -The map that will be loaded for the upcoming round is determined by reading data/next_map.json, which is a copy of the json files found in the _maps tree. If this file does not exist, the default map from config/maps.txt will be loaded. Failing that, BoxStation will be loaded. If you want to set a specific map to load next round you can use the Change Map verb in game before restarting the server or copy a json from _maps to data/next_map.json before starting the server. Also, for debugging purposes, ticking a corresponding map's code file in Dream Maker will force that map to load every round. - -If you are hosting a server, and want randomly picked maps to be played each round, you can enable map rotation in [config.txt](config/config.txt) and then set the maps to be picked in the [maps.txt](config/maps.txt) file. - -Anytime you want to make changes to a map it's imperative you use the [Map Merging tools](http://tgstation13.org/wiki/Map_Merger) - -## AWAY MISSIONS - -/tg/station supports loading away missions however they are disabled by default. - -Map files for away missions are located in the _maps/RandomZLevels directory. Each away mission includes it's own code definitions located in /code/modules/awaymissions/mission_code. These files must be included and compiled with the server beforehand otherwise the server will crash upon trying to load away missions that lack their code. - -To enable an away mission open `config/awaymissionconfig.txt` and uncomment one of the .dmm lines by removing the #. If more than one away mission is uncommented then the away mission loader will randomly select one the enabled ones to load. - -## SQL SETUP - -The SQL backend requires a Mariadb server running 10.2 or later. Mysql is not supported but Mariadb is a drop in replacement for mysql. SQL is required for the library, stats tracking, admin notes, and job-only bans, among other features, mostly related to server administration. Your server details go in /config/dbconfig.txt, and the SQL schema is in /SQL/tgstation_schema.sql and /SQL/tgstation_schema_prefix.sql depending on if you want table prefixes. More detailed setup instructions are located here: https://www.tgstation13.org/wiki/Downloading_the_source_code#Setting_up_the_database - -## WEB/CDN RESOURCE DELIVERY - -Web delivery of game resources makes it quicker for players to join and reduces some of the stress on the game server. - -1. Edit compile_options.dm to set the `PRELOAD_RSC` define to `0` -1. Add a url to config/external_rsc_urls pointing to a .zip file containing the .rsc. - * If you keep up to date with /tg/ you could reuse /tg/'s rsc cdn at http://tgstation13.download/byond/tgstation.zip. Otherwise you can use cdn services like CDN77 or cloudflare (requires adding a page rule to enable caching of the zip), or roll your own cdn using route 53 and vps providers. - * Regardless even offloading the rsc to a website without a CDN will be a massive improvement over the in game system for transferring files. - -## IRC BOT SETUP - -Included in the repository is a python3 compatible IRC bot capable of relaying adminhelps to a specified -IRC channel/server, see the /tools/minibot folder for more - -## CONTRIBUTING - -Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) - -## LICENSE - -All code after [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU AGPL v3](http://www.gnu.org/licenses/agpl-3.0.html). - -All code before [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). -(Including tools unless their readme specifies otherwise.) - -See LICENSE and GPLv3.txt for more details. - -The TGS3 API is licensed as a subproject under the MIT license. - -See the footers of code/\_\_DEFINES/server\_tools.dm, code/modules/server\_tools/st\_commands.dm, and code/modules/server\_tools/st\_inteface.dm for the MIT license. - -tgui clientside is licensed as a subproject under the MIT license. -Font Awesome font files, used by tgui, are licensed under the SIL Open Font License v1.1 -tgui assets are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/). - -All assets including icons and sound are under a [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) unless otherwise indicated. +## Citadel Station 13 +Based and maintained from /tg/station. + +[![Build Status](https://api.travis-ci.org/Citadel-Station-13/Citadel-Station-13.png)](https://travis-ci.org/Citadel-Station-13/Citadel-Station-13) +[![Percentage of issues still open](http://isitmaintained.com/badge/open/Citadel-Station-13/Citadel-Station-13.svg)](http://isitmaintained.com/project/Citadel-Station-13/Citadel-Station-13 "Percentage of issues still open") +[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/Citadel-Station-13/Citadel-Station-13.svg)](http://isitmaintained.com/project/Citadel-Station-13/Citadel-Station-13 "Average time to resolve an issue") + +[![forthebadge](http://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](https://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/pretty-risque.svg)](https://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/you-didnt-ask-for-this.svg)](http://forthebadge.com) [![forinfinityandbyond](https://user-images.githubusercontent.com/5211576/29499758-4efff304-85e6-11e7-8267-62919c3688a9.gif)](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a) + +**Upstream Information** +* **Website:** +* **Code:** +* **Wiki:** +* **Codedocs:** +* **/tg/station Discord:** +* **Coderbus Discord:** +* ~~**IRC:** ~~ (dead) + +**Citadel Station Information** +* **Website:** +* **Code:** +* **Wiki:** +* **Forums:** +* **Ban Appeals:** +* **Discord:** + +## DOWNLOADING + +There are a number of ways to download the source code. Some are described here, an alternative all-inclusive guide is also located at http://www.tgstation13.org/wiki/Downloading_the_source_code + +Option 1: +Follow this: http://www.tgstation13.org/wiki/Setting_up_git + +Option 2: Download the source code as a zip by clicking the ZIP button in the +code tab of https://github.com/tgstation/tgstation +(note: this will use a lot of bandwidth if you wish to update and is a lot of +hassle if you want to make any changes at all, so it's not recommended.) + +Option 3: Download a pre-compiled nightly at https://tgstation13.download/nightlies/ (same caveats as option 2) + +## INSTALLATION + +First-time installation should be fairly straightforward. First, you'll need +BYOND installed. You can get it from https://www.byond.com/download. Once you've done +that, extract the game files to wherever you want to keep them. This is a +sourcecode-only release, so the next step is to compile the server files. +Open tgstation.dme by double-clicking it, open the Build menu, and click +compile. This'll take a little while, and if everything's done right you'll get +a message like this: + +``` +saving tgstation.dmb (DEBUG mode) +tgstation.dmb - 0 errors, 0 warnings +``` + +If you see any errors or warnings, something has gone wrong - possibly a corrupt +download or the files extracted wrong. If problems persist, ask for assistance +in irc://irc.rizon.net/coderbus + +Once that's done, open up the config folder. You'll want to edit config.txt to +set the probabilities for different gamemodes in Secret and to set your server +location so that all your players don't get disconnected at the end of each +round. It's recommended you don't turn on the gamemodes with probability 0, +except Extended, as they have various issues and aren't currently being tested, +so they may have unknown and bizarre bugs. Extended is essentially no mode, and +isn't in the Secret rotation by default as it's just not very fun. + +You'll also want to edit config/admins.txt to remove the default admins and add +your own. "Game Master" is the highest level of access, and probably the one +you'll want to use for now. You can set up your own ranks and find out more in +config/admin_ranks.txt + +The format is + +``` +byondkey = Rank +``` + +where the admin rank must be properly capitalised. + +This codebase also depends on a native library called rust-g. A precompiled +Windows DLL is included in this repository, but Linux users will need to build +and install it themselves. Directions can be found at the [rust-g +repo](https://github.com/tgstation13/rust-g). + +Finally, to start the server, run Dream Daemon and enter the path to your +compiled tgstation.dmb file. Make sure to set the port to the one you +specified in the config.txt, and set the Security box to 'Safe'. Then press GO +and the server should start up and be ready to join. It is also recommended that +you set up the SQL backend (see below). + +## UPDATING + +To update an existing installation, first back up your /config and /data folders +as these store your server configuration, player preferences and banlist. + +Then, extract the new files (preferably into a clean directory, but updating in +place should work fine), copy your /config and /data folders back into the new +install, overwriting when prompted except if we've specified otherwise, and +recompile the game. Once you start the server up again, you should be running +the new version. + +## HOSTING + +If you'd like a more robust server hosting option for tgstation and its +derivatives. Check out our server tools suite at +https://github.com/tgstation/tgstation-server + +## MAPS + +/tg/station currently comes equipped with five maps. + +* [BoxStation (default)](http://tgstation13.org/wiki/Boxstation) +* [MetaStation](https://tgstation13.org/wiki/MetaStation) +* [DeltaStation](https://tgstation13.org/wiki/DeltaStation) +* [OmegaStation](https://tgstation13.org/wiki/OmegaStation) +* [PubbyStation](https://tgstation13.org/wiki/PubbyStation) + + +All maps have their own code file that is in the base of the _maps directory. Maps are loaded dynamically when the game starts. Follow this guideline when adding your own map, to your fork, for easy compatibility. + +The map that will be loaded for the upcoming round is determined by reading data/next_map.json, which is a copy of the json files found in the _maps tree. If this file does not exist, the default map from config/maps.txt will be loaded. Failing that, BoxStation will be loaded. If you want to set a specific map to load next round you can use the Change Map verb in game before restarting the server or copy a json from _maps to data/next_map.json before starting the server. Also, for debugging purposes, ticking a corresponding map's code file in Dream Maker will force that map to load every round. + +If you are hosting a server, and want randomly picked maps to be played each round, you can enable map rotation in [config.txt](config/config.txt) and then set the maps to be picked in the [maps.txt](config/maps.txt) file. + +Anytime you want to make changes to a map it's imperative you use the [Map Merging tools](http://tgstation13.org/wiki/Map_Merger) + +## AWAY MISSIONS + +/tg/station supports loading away missions however they are disabled by default. + +Map files for away missions are located in the _maps/RandomZLevels directory. Each away mission includes it's own code definitions located in /code/modules/awaymissions/mission_code. These files must be included and compiled with the server beforehand otherwise the server will crash upon trying to load away missions that lack their code. + +To enable an away mission open `config/awaymissionconfig.txt` and uncomment one of the .dmm lines by removing the #. If more than one away mission is uncommented then the away mission loader will randomly select one the enabled ones to load. + +## SQL SETUP + +The SQL backend requires a Mariadb server running 10.2 or later. Mysql is not supported but Mariadb is a drop in replacement for mysql. SQL is required for the library, stats tracking, admin notes, and job-only bans, among other features, mostly related to server administration. Your server details go in /config/dbconfig.txt, and the SQL schema is in /SQL/tgstation_schema.sql and /SQL/tgstation_schema_prefix.sql depending on if you want table prefixes. More detailed setup instructions are located here: https://www.tgstation13.org/wiki/Downloading_the_source_code#Setting_up_the_database + +## WEB/CDN RESOURCE DELIVERY + +Web delivery of game resources makes it quicker for players to join and reduces some of the stress on the game server. + +1. Edit compile_options.dm to set the `PRELOAD_RSC` define to `0` +1. Add a url to config/external_rsc_urls pointing to a .zip file containing the .rsc. + * If you keep up to date with /tg/ you could reuse /tg/'s rsc cdn at http://tgstation13.download/byond/tgstation.zip. Otherwise you can use cdn services like CDN77 or cloudflare (requires adding a page rule to enable caching of the zip), or roll your own cdn using route 53 and vps providers. + * Regardless even offloading the rsc to a website without a CDN will be a massive improvement over the in game system for transferring files. + +## IRC BOT SETUP + +Included in the repository is a python3 compatible IRC bot capable of relaying adminhelps to a specified +IRC channel/server, see the /tools/minibot folder for more + +## CONTRIBUTING + +Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) + +## LICENSE + +All code after [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU AGPL v3](http://www.gnu.org/licenses/agpl-3.0.html). + +All code before [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST](https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). +(Including tools unless their readme specifies otherwise.) + +See LICENSE and GPLv3.txt for more details. + +The TGS3 API is licensed as a subproject under the MIT license. + +See the footers of code/\_\_DEFINES/server\_tools.dm, code/modules/server\_tools/st\_commands.dm, and code/modules/server\_tools/st\_inteface.dm for the MIT license. + +tgui clientside is licensed as a subproject under the MIT license. +Font Awesome font files, used by tgui, are licensed under the SIL Open Font License v1.1 +tgui assets are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/). + +All assets including icons and sound are under a [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) unless otherwise indicated. diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql index dc0861220a..34baaaa4c6 100644 --- a/SQL/tgstation_schema.sql +++ b/SQL/tgstation_schema.sql @@ -1,473 +1,473 @@ -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `admin` --- - -DROP TABLE IF EXISTS `admin`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `admin` ( - `ckey` varchar(32) NOT NULL, - `rank` varchar(32) NOT NULL, - PRIMARY KEY (`ckey`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `admin_log` --- - -DROP TABLE IF EXISTS `admin_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `admin_log` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `datetime` datetime NOT NULL, - `round_id` int(11) unsigned NOT NULL, - `adminckey` varchar(32) NOT NULL, - `adminip` int(10) unsigned NOT NULL, - `operation` enum('add admin','remove admin','change admin rank','add rank','remove rank','change rank flags') NOT NULL, - `target` varchar(32) NOT NULL, - `log` varchar(1000) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `admin_ranks` --- - -DROP TABLE IF EXISTS `admin_ranks`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `admin_ranks` ( - `rank` varchar(32) NOT NULL, - `flags` smallint(5) unsigned NOT NULL, - `exclude_flags` smallint(5) unsigned NOT NULL, - `can_edit_flags` smallint(5) unsigned NOT NULL, - PRIMARY KEY (`rank`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `ban` --- - -DROP TABLE IF EXISTS `ban`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ban` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `bantime` datetime NOT NULL, - `server_ip` int(10) unsigned NOT NULL, - `server_port` smallint(5) unsigned NOT NULL, - `round_id` int(11) NOT NULL, - `bantype` enum('PERMABAN','TEMPBAN','JOB_PERMABAN','JOB_TEMPBAN','ADMIN_PERMABAN','ADMIN_TEMPBAN') NOT NULL, - `reason` varchar(2048) NOT NULL, - `job` varchar(32) DEFAULT NULL, - `duration` int(11) NOT NULL, - `expiration_time` datetime NOT NULL, - `ckey` varchar(32) NOT NULL, - `computerid` varchar(32) NOT NULL, - `ip` int(10) unsigned NOT NULL, - `a_ckey` varchar(32) NOT NULL, - `a_computerid` varchar(32) NOT NULL, - `a_ip` int(10) unsigned NOT NULL, - `who` varchar(2048) NOT NULL, - `adminwho` varchar(2048) NOT NULL, - `edits` text, - `unbanned` tinyint(3) unsigned DEFAULT NULL, - `unbanned_datetime` datetime DEFAULT NULL, - `unbanned_ckey` varchar(32) DEFAULT NULL, - `unbanned_computerid` varchar(32) DEFAULT NULL, - `unbanned_ip` int(10) unsigned DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `idx_ban_checkban` (`ckey`,`bantype`,`expiration_time`,`unbanned`,`job`), - KEY `idx_ban_isbanned` (`ckey`,`ip`,`computerid`,`bantype`,`expiration_time`,`unbanned`), - KEY `idx_ban_count` (`id`,`a_ckey`,`bantype`,`expiration_time`,`unbanned`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `connection_log` --- - -DROP TABLE IF EXISTS `connection_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `connection_log` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `datetime` datetime DEFAULT NULL, - `server_ip` int(10) unsigned NOT NULL, - `server_port` smallint(5) unsigned NOT NULL, - `round_id` int(11) unsigned NOT NULL, - `ckey` varchar(45) DEFAULT NULL, - `ip` int(10) unsigned NOT NULL, - `computerid` varchar(45) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `death` --- - -DROP TABLE IF EXISTS `death`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `death` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `pod` varchar(50) NOT NULL, - `x_coord` smallint(5) unsigned NOT NULL, - `y_coord` smallint(5) unsigned NOT NULL, - `z_coord` smallint(5) unsigned NOT NULL, - `mapname` varchar(32) NOT NULL, - `server_ip` int(10) unsigned NOT NULL, - `server_port` smallint(5) unsigned NOT NULL, - `round_id` int(11) NOT NULL, - `tod` datetime NOT NULL COMMENT 'Time of death', - `job` varchar(32) NOT NULL, - `special` varchar(32) DEFAULT NULL, - `name` varchar(96) NOT NULL, - `byondkey` varchar(32) NOT NULL, - `laname` varchar(96) DEFAULT NULL, - `lakey` varchar(32) DEFAULT NULL, - `bruteloss` smallint(5) unsigned NOT NULL, - `brainloss` smallint(5) unsigned NOT NULL, - `fireloss` smallint(5) unsigned NOT NULL, - `oxyloss` smallint(5) unsigned NOT NULL, - `toxloss` smallint(5) unsigned NOT NULL, - `cloneloss` smallint(5) unsigned NOT NULL, - `staminaloss` smallint(5) unsigned NOT NULL, - `last_words` varchar(255) DEFAULT NULL, - `suicide` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `feedback` --- - -DROP TABLE IF EXISTS `feedback`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `feedback` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `datetime` datetime NOT NULL, - `round_id` int(11) unsigned NOT NULL, - `key_name` varchar(32) NOT NULL, - `key_type` enum('text', 'amount', 'tally', 'nested tally', 'associative') NOT NULL, - `version` tinyint(3) unsigned NOT NULL, - `json` json NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `ipintel` --- - -DROP TABLE IF EXISTS `ipintel`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ipintel` ( - `ip` int(10) unsigned NOT NULL, - `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `intel` double NOT NULL DEFAULT '0', - PRIMARY KEY (`ip`), - KEY `idx_ipintel` (`ip`,`intel`,`date`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `legacy_population` --- - -DROP TABLE IF EXISTS `legacy_population`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `legacy_population` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `playercount` int(11) DEFAULT NULL, - `admincount` int(11) DEFAULT NULL, - `time` datetime NOT NULL, - `server_ip` int(10) unsigned NOT NULL, - `server_port` smallint(5) unsigned NOT NULL, - `round_id` int(11) unsigned NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `library` --- - -DROP TABLE IF EXISTS `library`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `library` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `author` varchar(45) NOT NULL, - `title` varchar(45) NOT NULL, - `content` text NOT NULL, - `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, - `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY', - `datetime` datetime NOT NULL, - `deleted` tinyint(1) unsigned DEFAULT NULL, - `round_id_created` int(11) unsigned NOT NULL, - PRIMARY KEY (`id`), - KEY `deleted_idx` (`deleted`), - KEY `idx_lib_id_del` (`id`,`deleted`), - KEY `idx_lib_del_title` (`deleted`,`title`), - KEY `idx_lib_search` (`deleted`,`author`,`title`,`category`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `messages` --- - -DROP TABLE IF EXISTS `messages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `messages` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `type` enum('memo','message','message sent','note','watchlist entry') NOT NULL, - `targetckey` varchar(32) NOT NULL, - `adminckey` varchar(32) NOT NULL, - `text` varchar(2048) NOT NULL, - `timestamp` datetime NOT NULL, - `server` varchar(32) DEFAULT NULL, - `server_ip` int(10) unsigned NOT NULL, - `server_port` smallint(5) unsigned NOT NULL, - `round_id` int(11) unsigned NOT NULL, - `secret` tinyint(1) unsigned NOT NULL, - `expire_timestamp` datetime DEFAULT NULL, - `severity` enum('high','medium','minor','none') DEFAULT NULL, - `lasteditor` varchar(32) DEFAULT NULL, - `edits` text, - `deleted` tinyint(1) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `idx_msg_ckey_time` (`targetckey`,`timestamp`, `deleted`), - KEY `idx_msg_type_ckeys_time` (`type`,`targetckey`,`adminckey`,`timestamp`, `deleted`), - KEY `idx_msg_type_ckey_time_odr` (`type`,`targetckey`,`timestamp`, `deleted`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `role_time` --- - -DROP TABLE IF EXISTS `role_time`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; - -CREATE TABLE `role_time` -( `ckey` VARCHAR(32) NOT NULL , - `job` VARCHAR(32) NOT NULL , - `minutes` INT UNSIGNED NOT NULL, - PRIMARY KEY (`ckey`, `job`) - ) ENGINE = InnoDB; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `role_time` --- - -DROP TABLE IF EXISTS `role_time_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; - -CREATE TABLE IF NOT EXISTS `role_time_log` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `ckey` varchar(32) NOT NULL, - `job` varchar(128) NOT NULL, - `delta` int(11) NOT NULL, - `datetime` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`id`), - KEY `ckey` (`ckey`), - KEY `job` (`job`), - KEY `datetime` (`datetime`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `player` --- - -DROP TABLE IF EXISTS `player`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `player` ( - `ckey` varchar(32) NOT NULL, - `byond_key` varchar(32) DEFAULT NULL, - `firstseen` datetime NOT NULL, - `firstseen_round_id` int(11) unsigned NOT NULL, - `lastseen` datetime NOT NULL, - `lastseen_round_id` int(11) unsigned NOT NULL, - `ip` int(10) unsigned NOT NULL, - `computerid` varchar(32) NOT NULL, - `lastadminrank` varchar(32) NOT NULL DEFAULT 'Player', - `accountjoindate` DATE DEFAULT NULL, - `flags` smallint(5) unsigned DEFAULT '0' NOT NULL, - PRIMARY KEY (`ckey`), - KEY `idx_player_cid_ckey` (`computerid`,`ckey`), - KEY `idx_player_ip_ckey` (`ip`,`ckey`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `poll_option` --- - -DROP TABLE IF EXISTS `poll_option`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `poll_option` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `pollid` int(11) NOT NULL, - `text` varchar(255) NOT NULL, - `minval` int(3) DEFAULT NULL, - `maxval` int(3) DEFAULT NULL, - `descmin` varchar(32) DEFAULT NULL, - `descmid` varchar(32) DEFAULT NULL, - `descmax` varchar(32) DEFAULT NULL, - `default_percentage_calc` tinyint(1) unsigned NOT NULL DEFAULT '1', - PRIMARY KEY (`id`), - KEY `idx_pop_pollid` (`pollid`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `poll_question` --- - -DROP TABLE IF EXISTS `poll_question`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `poll_question` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `polltype` enum('OPTION','TEXT','NUMVAL','MULTICHOICE','IRV') NOT NULL, - `starttime` datetime NOT NULL, - `endtime` datetime NOT NULL, - `question` varchar(255) NOT NULL, - `adminonly` tinyint(1) unsigned NOT NULL, - `multiplechoiceoptions` int(2) DEFAULT NULL, - `createdby_ckey` varchar(32) DEFAULT NULL, - `createdby_ip` int(10) unsigned NOT NULL, - `dontshow` tinyint(1) unsigned NOT NULL, - PRIMARY KEY (`id`), - KEY `idx_pquest_question_time_ckey` (`question`,`starttime`,`endtime`,`createdby_ckey`,`createdby_ip`), - KEY `idx_pquest_time_admin` (`starttime`,`endtime`,`adminonly`), - KEY `idx_pquest_id_time_type_admin` (`id`,`starttime`,`endtime`,`polltype`,`adminonly`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `poll_textreply` --- - -DROP TABLE IF EXISTS `poll_textreply`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `poll_textreply` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `datetime` datetime NOT NULL, - `pollid` int(11) NOT NULL, - `ckey` varchar(32) NOT NULL, - `ip` int(10) unsigned NOT NULL, - `replytext` varchar(2048) NOT NULL, - `adminrank` varchar(32) NOT NULL DEFAULT 'Player', - PRIMARY KEY (`id`), - KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `poll_vote` --- - -DROP TABLE IF EXISTS `poll_vote`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `poll_vote` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `datetime` datetime NOT NULL, - `pollid` int(11) NOT NULL, - `optionid` int(11) NOT NULL, - `ckey` varchar(32) NOT NULL, - `ip` int(10) unsigned NOT NULL, - `adminrank` varchar(32) NOT NULL, - `rating` int(2) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `idx_pvote_pollid_ckey` (`pollid`,`ckey`), - KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `round` --- -DROP TABLE IF EXISTS `round`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `round` ( - `id` INT(11) NOT NULL AUTO_INCREMENT, - `initialize_datetime` DATETIME NOT NULL, - `start_datetime` DATETIME NULL, - `shutdown_datetime` DATETIME NULL, - `end_datetime` DATETIME NULL, - `server_ip` INT(10) UNSIGNED NOT NULL, - `server_port` SMALLINT(5) UNSIGNED NOT NULL, - `commit_hash` CHAR(40) NULL, - `game_mode` VARCHAR(32) NULL, - `game_mode_result` VARCHAR(64) NULL, - `end_state` VARCHAR(64) NULL, - `shuttle_name` VARCHAR(64) NULL, - `map_name` VARCHAR(32) NULL, - `station_name` VARCHAR(80) NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - --- --- Table structure for table `schema_revision` --- -DROP TABLE IF EXISTS `schema_revision`; -CREATE TABLE `schema_revision` ( - `major` TINYINT(3) unsigned NOT NULL, - `minor` TINYINT(3) unsigned NOT NULL, - `date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (`major`, `minor`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DELIMITER $$ -CREATE TRIGGER `role_timeTlogupdate` AFTER UPDATE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); -END -$$ -CREATE TRIGGER `role_timeTloginsert` AFTER INSERT ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); -END -$$ -CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); -END -$$ - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `admin` +-- + +DROP TABLE IF EXISTS `admin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `admin` ( + `ckey` varchar(32) NOT NULL, + `rank` varchar(32) NOT NULL, + PRIMARY KEY (`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `admin_log` +-- + +DROP TABLE IF EXISTS `admin_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `admin_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `datetime` datetime NOT NULL, + `round_id` int(11) unsigned NOT NULL, + `adminckey` varchar(32) NOT NULL, + `adminip` int(10) unsigned NOT NULL, + `operation` enum('add admin','remove admin','change admin rank','add rank','remove rank','change rank flags') NOT NULL, + `target` varchar(32) NOT NULL, + `log` varchar(1000) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `admin_ranks` +-- + +DROP TABLE IF EXISTS `admin_ranks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `admin_ranks` ( + `rank` varchar(32) NOT NULL, + `flags` smallint(5) unsigned NOT NULL, + `exclude_flags` smallint(5) unsigned NOT NULL, + `can_edit_flags` smallint(5) unsigned NOT NULL, + PRIMARY KEY (`rank`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `ban` +-- + +DROP TABLE IF EXISTS `ban`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ban` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `bantime` datetime NOT NULL, + `server_ip` int(10) unsigned NOT NULL, + `server_port` smallint(5) unsigned NOT NULL, + `round_id` int(11) NOT NULL, + `bantype` enum('PERMABAN','TEMPBAN','JOB_PERMABAN','JOB_TEMPBAN','ADMIN_PERMABAN','ADMIN_TEMPBAN') NOT NULL, + `reason` varchar(2048) NOT NULL, + `job` varchar(32) DEFAULT NULL, + `duration` int(11) NOT NULL, + `expiration_time` datetime NOT NULL, + `ckey` varchar(32) NOT NULL, + `computerid` varchar(32) NOT NULL, + `ip` int(10) unsigned NOT NULL, + `a_ckey` varchar(32) NOT NULL, + `a_computerid` varchar(32) NOT NULL, + `a_ip` int(10) unsigned NOT NULL, + `who` varchar(2048) NOT NULL, + `adminwho` varchar(2048) NOT NULL, + `edits` text, + `unbanned` tinyint(3) unsigned DEFAULT NULL, + `unbanned_datetime` datetime DEFAULT NULL, + `unbanned_ckey` varchar(32) DEFAULT NULL, + `unbanned_computerid` varchar(32) DEFAULT NULL, + `unbanned_ip` int(10) unsigned DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `idx_ban_checkban` (`ckey`,`bantype`,`expiration_time`,`unbanned`,`job`), + KEY `idx_ban_isbanned` (`ckey`,`ip`,`computerid`,`bantype`,`expiration_time`,`unbanned`), + KEY `idx_ban_count` (`id`,`a_ckey`,`bantype`,`expiration_time`,`unbanned`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `connection_log` +-- + +DROP TABLE IF EXISTS `connection_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `connection_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `datetime` datetime DEFAULT NULL, + `server_ip` int(10) unsigned NOT NULL, + `server_port` smallint(5) unsigned NOT NULL, + `round_id` int(11) unsigned NOT NULL, + `ckey` varchar(45) DEFAULT NULL, + `ip` int(10) unsigned NOT NULL, + `computerid` varchar(45) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `death` +-- + +DROP TABLE IF EXISTS `death`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `death` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pod` varchar(50) NOT NULL, + `x_coord` smallint(5) unsigned NOT NULL, + `y_coord` smallint(5) unsigned NOT NULL, + `z_coord` smallint(5) unsigned NOT NULL, + `mapname` varchar(32) NOT NULL, + `server_ip` int(10) unsigned NOT NULL, + `server_port` smallint(5) unsigned NOT NULL, + `round_id` int(11) NOT NULL, + `tod` datetime NOT NULL COMMENT 'Time of death', + `job` varchar(32) NOT NULL, + `special` varchar(32) DEFAULT NULL, + `name` varchar(96) NOT NULL, + `byondkey` varchar(32) NOT NULL, + `laname` varchar(96) DEFAULT NULL, + `lakey` varchar(32) DEFAULT NULL, + `bruteloss` smallint(5) unsigned NOT NULL, + `brainloss` smallint(5) unsigned NOT NULL, + `fireloss` smallint(5) unsigned NOT NULL, + `oxyloss` smallint(5) unsigned NOT NULL, + `toxloss` smallint(5) unsigned NOT NULL, + `cloneloss` smallint(5) unsigned NOT NULL, + `staminaloss` smallint(5) unsigned NOT NULL, + `last_words` varchar(255) DEFAULT NULL, + `suicide` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `feedback` +-- + +DROP TABLE IF EXISTS `feedback`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `feedback` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `datetime` datetime NOT NULL, + `round_id` int(11) unsigned NOT NULL, + `key_name` varchar(32) NOT NULL, + `key_type` enum('text', 'amount', 'tally', 'nested tally', 'associative') NOT NULL, + `version` tinyint(3) unsigned NOT NULL, + `json` json NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `ipintel` +-- + +DROP TABLE IF EXISTS `ipintel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ipintel` ( + `ip` int(10) unsigned NOT NULL, + `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `intel` double NOT NULL DEFAULT '0', + PRIMARY KEY (`ip`), + KEY `idx_ipintel` (`ip`,`intel`,`date`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `legacy_population` +-- + +DROP TABLE IF EXISTS `legacy_population`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `legacy_population` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `playercount` int(11) DEFAULT NULL, + `admincount` int(11) DEFAULT NULL, + `time` datetime NOT NULL, + `server_ip` int(10) unsigned NOT NULL, + `server_port` smallint(5) unsigned NOT NULL, + `round_id` int(11) unsigned NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `library` +-- + +DROP TABLE IF EXISTS `library`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `library` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `author` varchar(45) NOT NULL, + `title` varchar(45) NOT NULL, + `content` text NOT NULL, + `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL, + `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY', + `datetime` datetime NOT NULL, + `deleted` tinyint(1) unsigned DEFAULT NULL, + `round_id_created` int(11) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `deleted_idx` (`deleted`), + KEY `idx_lib_id_del` (`id`,`deleted`), + KEY `idx_lib_del_title` (`deleted`,`title`), + KEY `idx_lib_search` (`deleted`,`author`,`title`,`category`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `messages` +-- + +DROP TABLE IF EXISTS `messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `messages` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `type` enum('memo','message','message sent','note','watchlist entry') NOT NULL, + `targetckey` varchar(32) NOT NULL, + `adminckey` varchar(32) NOT NULL, + `text` varchar(2048) NOT NULL, + `timestamp` datetime NOT NULL, + `server` varchar(32) DEFAULT NULL, + `server_ip` int(10) unsigned NOT NULL, + `server_port` smallint(5) unsigned NOT NULL, + `round_id` int(11) unsigned NOT NULL, + `secret` tinyint(1) unsigned NOT NULL, + `expire_timestamp` datetime DEFAULT NULL, + `severity` enum('high','medium','minor','none') DEFAULT NULL, + `lasteditor` varchar(32) DEFAULT NULL, + `edits` text, + `deleted` tinyint(1) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `idx_msg_ckey_time` (`targetckey`,`timestamp`, `deleted`), + KEY `idx_msg_type_ckeys_time` (`type`,`targetckey`,`adminckey`,`timestamp`, `deleted`), + KEY `idx_msg_type_ckey_time_odr` (`type`,`targetckey`,`timestamp`, `deleted`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `role_time` +-- + +DROP TABLE IF EXISTS `role_time`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; + +CREATE TABLE `role_time` +( `ckey` VARCHAR(32) NOT NULL , + `job` VARCHAR(32) NOT NULL , + `minutes` INT UNSIGNED NOT NULL, + PRIMARY KEY (`ckey`, `job`) + ) ENGINE = InnoDB; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `role_time` +-- + +DROP TABLE IF EXISTS `role_time_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; + +CREATE TABLE IF NOT EXISTS `role_time_log` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `ckey` varchar(32) NOT NULL, + `job` varchar(128) NOT NULL, + `delta` int(11) NOT NULL, + `datetime` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `ckey` (`ckey`), + KEY `job` (`job`), + KEY `datetime` (`datetime`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `player` +-- + +DROP TABLE IF EXISTS `player`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `player` ( + `ckey` varchar(32) NOT NULL, + `byond_key` varchar(32) DEFAULT NULL, + `firstseen` datetime NOT NULL, + `firstseen_round_id` int(11) unsigned NOT NULL, + `lastseen` datetime NOT NULL, + `lastseen_round_id` int(11) unsigned NOT NULL, + `ip` int(10) unsigned NOT NULL, + `computerid` varchar(32) NOT NULL, + `lastadminrank` varchar(32) NOT NULL DEFAULT 'Player', + `accountjoindate` DATE DEFAULT NULL, + `flags` smallint(5) unsigned DEFAULT '0' NOT NULL, + PRIMARY KEY (`ckey`), + KEY `idx_player_cid_ckey` (`computerid`,`ckey`), + KEY `idx_player_ip_ckey` (`ip`,`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `poll_option` +-- + +DROP TABLE IF EXISTS `poll_option`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `poll_option` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pollid` int(11) NOT NULL, + `text` varchar(255) NOT NULL, + `minval` int(3) DEFAULT NULL, + `maxval` int(3) DEFAULT NULL, + `descmin` varchar(32) DEFAULT NULL, + `descmid` varchar(32) DEFAULT NULL, + `descmax` varchar(32) DEFAULT NULL, + `default_percentage_calc` tinyint(1) unsigned NOT NULL DEFAULT '1', + PRIMARY KEY (`id`), + KEY `idx_pop_pollid` (`pollid`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `poll_question` +-- + +DROP TABLE IF EXISTS `poll_question`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `poll_question` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `polltype` enum('OPTION','TEXT','NUMVAL','MULTICHOICE','IRV') NOT NULL, + `starttime` datetime NOT NULL, + `endtime` datetime NOT NULL, + `question` varchar(255) NOT NULL, + `adminonly` tinyint(1) unsigned NOT NULL, + `multiplechoiceoptions` int(2) DEFAULT NULL, + `createdby_ckey` varchar(32) DEFAULT NULL, + `createdby_ip` int(10) unsigned NOT NULL, + `dontshow` tinyint(1) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `idx_pquest_question_time_ckey` (`question`,`starttime`,`endtime`,`createdby_ckey`,`createdby_ip`), + KEY `idx_pquest_time_admin` (`starttime`,`endtime`,`adminonly`), + KEY `idx_pquest_id_time_type_admin` (`id`,`starttime`,`endtime`,`polltype`,`adminonly`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `poll_textreply` +-- + +DROP TABLE IF EXISTS `poll_textreply`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `poll_textreply` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `datetime` datetime NOT NULL, + `pollid` int(11) NOT NULL, + `ckey` varchar(32) NOT NULL, + `ip` int(10) unsigned NOT NULL, + `replytext` varchar(2048) NOT NULL, + `adminrank` varchar(32) NOT NULL DEFAULT 'Player', + PRIMARY KEY (`id`), + KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `poll_vote` +-- + +DROP TABLE IF EXISTS `poll_vote`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `poll_vote` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `datetime` datetime NOT NULL, + `pollid` int(11) NOT NULL, + `optionid` int(11) NOT NULL, + `ckey` varchar(32) NOT NULL, + `ip` int(10) unsigned NOT NULL, + `adminrank` varchar(32) NOT NULL, + `rating` int(2) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `idx_pvote_pollid_ckey` (`pollid`,`ckey`), + KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `round` +-- +DROP TABLE IF EXISTS `round`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `round` ( + `id` INT(11) NOT NULL AUTO_INCREMENT, + `initialize_datetime` DATETIME NOT NULL, + `start_datetime` DATETIME NULL, + `shutdown_datetime` DATETIME NULL, + `end_datetime` DATETIME NULL, + `server_ip` INT(10) UNSIGNED NOT NULL, + `server_port` SMALLINT(5) UNSIGNED NOT NULL, + `commit_hash` CHAR(40) NULL, + `game_mode` VARCHAR(32) NULL, + `game_mode_result` VARCHAR(64) NULL, + `end_state` VARCHAR(64) NULL, + `shuttle_name` VARCHAR(64) NULL, + `map_name` VARCHAR(32) NULL, + `station_name` VARCHAR(80) NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +-- +-- Table structure for table `schema_revision` +-- +DROP TABLE IF EXISTS `schema_revision`; +CREATE TABLE `schema_revision` ( + `major` TINYINT(3) unsigned NOT NULL, + `minor` TINYINT(3) unsigned NOT NULL, + `date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`major`, `minor`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +DELIMITER $$ +CREATE TRIGGER `role_timeTlogupdate` AFTER UPDATE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); +END +$$ +CREATE TRIGGER `role_timeTloginsert` AFTER INSERT ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); +END +$$ +CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); +END +$$ + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/TGS3.json b/TGS3.json index 2a2b80cf95..39b75bd913 100644 --- a/TGS3.json +++ b/TGS3.json @@ -1,22 +1,22 @@ -{ - "documentation": "/tg/station server 3 configuration file", - "changelog": { - "script": "tools/ss13_genchangelog.py", - "arguments": "html/changelog.html html/changelogs", - "pip_dependancies": [ - "PyYaml", - "beautifulsoup4" - ] - }, - "synchronize_paths": [ - "html/changelog.html", - "html/changelogs/*" - ], - "static_directories": [ - "config", - "data" - ], - "dlls": [ - "libmariadb.dll" - ] - } +{ + "documentation": "/tg/station server 3 configuration file", + "changelog": { + "script": "tools/ss13_genchangelog.py", + "arguments": "html/changelog.html html/changelogs", + "pip_dependancies": [ + "PyYaml", + "beautifulsoup4" + ] + }, + "synchronize_paths": [ + "html/changelog.html", + "html/changelogs/*" + ], + "static_directories": [ + "config", + "data" + ], + "dlls": [ + "libmariadb.dll" + ] + } diff --git a/_maps/boxstation.json b/_maps/boxstation.json index 143fcae5bc..3c71c654fa 100644 --- a/_maps/boxstation.json +++ b/_maps/boxstation.json @@ -1,11 +1,11 @@ -{ - "map_name": "Box Station", - "map_path": "map_files/BoxStation", - "map_file": "BoxStation.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - } -} +{ + "map_name": "Box Station", + "map_path": "map_files/BoxStation", + "map_file": "BoxStation.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + } +} diff --git a/_maps/runtimestation.json b/_maps/runtimestation.json index f9333c65a2..ca2cc3d379 100644 --- a/_maps/runtimestation.json +++ b/_maps/runtimestation.json @@ -1,8 +1,8 @@ -{ - "map_name": "Runtime Station", - "map_path": "map_files/debug", - "map_file": "runtimestation.dmm", - "shuttles": { - "cargo": "cargo_delta" - } -} +{ + "map_name": "Runtime Station", + "map_path": "map_files/debug", + "map_file": "runtimestation.dmm", + "shuttles": { + "cargo": "cargo_delta" + } +} diff --git a/bot/nudge.py b/bot/nudge.py index b1e6058cc0..6c551ab0d2 100644 --- a/bot/nudge.py +++ b/bot/nudge.py @@ -1,25 +1,25 @@ -#!/usr/bin/env python3 -from config import * -import sys -import pickle -import socket - - -def pack(): - ip = sys.argv[1] - try: - data = sys.argv[2:] - except: - data = "NO DATA SPECIFIED" - - nudge(pickle.dumps({"ip": ip, "data": data})) - - -def nudge(data): - s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - s.connect(("localhost", 45678)) - s.send(data) - s.close() - -if __name__ == "__main__" and len(sys.argv) > 1: - pack() +#!/usr/bin/env python3 +from config import * +import sys +import pickle +import socket + + +def pack(): + ip = sys.argv[1] + try: + data = sys.argv[2:] + except: + data = "NO DATA SPECIFIED" + + nudge(pickle.dumps({"ip": ip, "data": data})) + + +def nudge(data): + s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + s.connect(("localhost", 45678)) + s.send(data) + s.close() + +if __name__ == "__main__" and len(sys.argv) > 1: + pack() diff --git a/code/datums/components/README.md b/code/datums/components/README.md index 509630bb0a..dd27c05469 100644 --- a/code/datums/components/README.md +++ b/code/datums/components/README.md @@ -1,9 +1,9 @@ -# Datum Component System (DCS) - -## Concept - -Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a `SendSignal()` call. Now every component that want's to can also know about this happening. - -See [this thread](https://tgstation13.org/phpBB/viewtopic.php?f=5&t=22674) for an introduction to the system as a whole. - -### See/Define signals and their arguments in [__DEFINES\components.dm](..\..\__DEFINES\components.dm) +# Datum Component System (DCS) + +## Concept + +Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a `SendSignal()` call. Now every component that want's to can also know about this happening. + +See [this thread](https://tgstation13.org/phpBB/viewtopic.php?f=5&t=22674) for an introduction to the system as a whole. + +### See/Define signals and their arguments in [__DEFINES\components.dm](..\..\__DEFINES\components.dm) diff --git a/config/antag_rep.txt b/config/antag_rep.txt index a26b157d5a..e8a7250686 100644 --- a/config/antag_rep.txt +++ b/config/antag_rep.txt @@ -1,5 +1,5 @@ -## Custom antag reputation values -## List of job titles followed by antag rep value, all prefixed with ANTAG_REP. See code/modules/jobs/job_types for titles -## e.g. -## ANTAG_REP Captain 10 -## ANTAG_REP Assistant 0 +## Custom antag reputation values +## List of job titles followed by antag rep value, all prefixed with ANTAG_REP. See code/modules/jobs/job_types for titles +## e.g. +## ANTAG_REP Captain 10 +## ANTAG_REP Assistant 0 diff --git a/config/comms.txt b/config/comms.txt index 865011032e..5a32f10fd3 100644 --- a/config/comms.txt +++ b/config/comms.txt @@ -1,17 +1,17 @@ -## Communication key for receiving data through world/Topic(), you don't want to give this out -#COMMS_KEY default_pwd - -## World address and port for server recieving cross server messages -## Use '+' to denote spaces in ServerName -## Repeat this entry to add more servers -#CROSS_SERVER ServerName byond:\\address:port - -## Name that the server calls itself in communications -#CROSS_COMMS_NAME - -## Hub address for tracking stats -## example: Hubmakerckey.Hubname -#MEDAL_HUB_ADDRESS - -## Password for the hub page +## Communication key for receiving data through world/Topic(), you don't want to give this out +#COMMS_KEY default_pwd + +## World address and port for server recieving cross server messages +## Use '+' to denote spaces in ServerName +## Repeat this entry to add more servers +#CROSS_SERVER ServerName byond:\\address:port + +## Name that the server calls itself in communications +#CROSS_COMMS_NAME + +## Hub address for tracking stats +## example: Hubmakerckey.Hubname +#MEDAL_HUB_ADDRESS + +## Password for the hub page #MEDAL_HUB_PASSWORD \ No newline at end of file diff --git a/html/changelog.css b/html/changelog.css index 2bfa3fa495..da32a5a557 100644 --- a/html/changelog.css +++ b/html/changelog.css @@ -1,41 +1,41 @@ -.top{font-family:Tahoma,sans-serif;font-size:12px;} -h2{font-family:Tahoma,sans-serif;} -a img {border:none;} -.bgimages16 li { - padding:2px 10px 2px 30px; - background-position:6px center; - background-repeat:no-repeat; - border:1px solid #ddd; - border-left:4px solid #999; - margin-bottom:2px; -} -.bugfix {background-image:url(bug-minus.png)} -.wip {background-image:url(hard-hat-exclamation.png)} -.tweak {background-image:url(wrench-screwdriver.png)} -.soundadd {background-image:url(music-plus.png)} -.sounddel {background-image:url(music-minus.png)} -.rscdel {background-image:url(cross-circle.png)} -.rscadd {background-image:url(tick-circle.png)} -.imageadd {background-image:url(image-plus.png)} -.imagedel {background-image:url(image-minus.png)} -.spellcheck {background-image:url(spell-check.png)} -.experiment {background-image:url(burn-exclamation.png)} -.refactor {background-image:url(burn-exclamation.png)} -.code_imp {background-image:url(coding.png)} -.config {background-image:url(chrome-wrench.png)} -.admin {background-image:url(ban.png)} -.server {background-image:url(hard-hat-exclamation.png)} -.balance {background-image:url(scales.png)} -.sansserif {font-family:Tahoma,sans-serif;font-size:12px;} -.commit {margin-bottom:20px;font-size:100%;font-weight:normal;} -.changes {list-style:none;margin:5px 0;padding:0 0 0 25px;font-size:0.8em;} -.date {margin:10px 0;color:blue;border-bottom:2px solid #00f;width:60%;padding:2px 0;font-size:1em;font-weight:bold;} -.author {padding-left:10px;margin:0;font-weight:bold;font-size:0.9em;} -.drop {cursor:pointer;border:1px solid #999;display:inline;font-size:0.9em;padding:1px 20px 1px 5px;line-height:16px;} -.hidden {display:none;} -.indrop {margin:2px 0 0 0;clear:both;background:#fff;border:1px solid #ddd;padding:5px 10px;} -.indrop p {margin:0;font-size:0.8em;line-height:16px;margin:1px 0;} -.indrop img {margin-right:5px;vertical-align:middle;} -.closed {background:url(chevron-expand.png) right center no-repeat;} -.open {background:url(chevron.png) right center no-repeat;} -.lic {font-size:9px;} +.top{font-family:Tahoma,sans-serif;font-size:12px;} +h2{font-family:Tahoma,sans-serif;} +a img {border:none;} +.bgimages16 li { + padding:2px 10px 2px 30px; + background-position:6px center; + background-repeat:no-repeat; + border:1px solid #ddd; + border-left:4px solid #999; + margin-bottom:2px; +} +.bugfix {background-image:url(bug-minus.png)} +.wip {background-image:url(hard-hat-exclamation.png)} +.tweak {background-image:url(wrench-screwdriver.png)} +.soundadd {background-image:url(music-plus.png)} +.sounddel {background-image:url(music-minus.png)} +.rscdel {background-image:url(cross-circle.png)} +.rscadd {background-image:url(tick-circle.png)} +.imageadd {background-image:url(image-plus.png)} +.imagedel {background-image:url(image-minus.png)} +.spellcheck {background-image:url(spell-check.png)} +.experiment {background-image:url(burn-exclamation.png)} +.refactor {background-image:url(burn-exclamation.png)} +.code_imp {background-image:url(coding.png)} +.config {background-image:url(chrome-wrench.png)} +.admin {background-image:url(ban.png)} +.server {background-image:url(hard-hat-exclamation.png)} +.balance {background-image:url(scales.png)} +.sansserif {font-family:Tahoma,sans-serif;font-size:12px;} +.commit {margin-bottom:20px;font-size:100%;font-weight:normal;} +.changes {list-style:none;margin:5px 0;padding:0 0 0 25px;font-size:0.8em;} +.date {margin:10px 0;color:blue;border-bottom:2px solid #00f;width:60%;padding:2px 0;font-size:1em;font-weight:bold;} +.author {padding-left:10px;margin:0;font-weight:bold;font-size:0.9em;} +.drop {cursor:pointer;border:1px solid #999;display:inline;font-size:0.9em;padding:1px 20px 1px 5px;line-height:16px;} +.hidden {display:none;} +.indrop {margin:2px 0 0 0;clear:both;background:#fff;border:1px solid #ddd;padding:5px 10px;} +.indrop p {margin:0;font-size:0.8em;line-height:16px;margin:1px 0;} +.indrop img {margin-right:5px;vertical-align:middle;} +.closed {background:url(chevron-expand.png) right center no-repeat;} +.open {background:url(chevron.png) right center no-repeat;} +.lic {font-size:9px;} diff --git a/sound/voice/catpeople/license.txt b/sound/voice/catpeople/license.txt index 7218480ddb..d0e8cad0c6 100644 --- a/sound/voice/catpeople/license.txt +++ b/sound/voice/catpeople/license.txt @@ -1,2 +1,2 @@ -distressed_cat.ogg from Cat annoyed meow / wail by jbierfeldt at https://freesound.org/people/jbierfeldt/sounds/440735/, chopped up and ogged +distressed_cat.ogg from Cat annoyed meow / wail by jbierfeldt at https://freesound.org/people/jbierfeldt/sounds/440735/, chopped up and ogged cat_puking.ogg from catpuking mp3 by NoiseCollector and Mocha the cat at https://freesound.org/people/NoiseCollector/sounds/80778/, chopped up, volume altered and ogged \ No newline at end of file diff --git a/strings/names/adjectives.txt b/strings/names/adjectives.txt index fe9b28d431..bca89bc5a2 100644 --- a/strings/names/adjectives.txt +++ b/strings/names/adjectives.txt @@ -1,375 +1,375 @@ -abundant -adorable -adventurous -aggressive -agreeable -alert -alive -amused -ancient -angry -annoyed -annoying -anxious -arrogant -ashamed -attractive -average -awful -bad -beautiful -better -bewildered -big -bitter -black -bloody -blue -blue-eyed -blushing -boiling -bored -brainy -brave -breakable -breezy -brief -bright -broad -broken -bumpy -busy -calm -careful -cautious -charming -cheerful -chilly -chubby -clean -clear -clever -cloudy -clumsy -cold -colorful -colossal -combative -comfortable -concerned -condemned -confused -cooing -cool -cooperative -courageous -crazy -crazy flipped-out -creepy -crooked -crowded -cruel -cuddly -curious -curly -curved -cute -damaged -damp -dangerous -dark -dead -deafening -deep -defeated -defiant -delicious -delightful -depressed -determined -different -difficult -dirty -disgusted -distinct -disturbed -dizzy -doubtful -drab -dry -dull -dusty -eager -early -easy -elated -elegant -embarrassed -empty -enchanting -encouraging -energetic -enthusiastic -envious -evil -excited -expensive -exuberant -faint -fair -faithful -famous -fancy -fantastic -fast -fat -few -fierce -filthy -fine -flaky -flat -fluffy -fluttering -foolish -fragile -frail -frantic -freezing -fresh -friendly -frightened -funny -fuzzy -gentle -gifted -gigantic -glamorous -gleaming -glorious -good -gorgeous -graceful -greasy -great -grieving -grotesque -grubby -grumpy -handsome -happy -hard -harsh -healthy -heavy -helpful -helpless -high -high-pitched -hilarious -hissing -hollow -homeless -homely -horrible -hot -huge -hungry -hurt -hushed -husky -icy -ill -immense -important -impossible -inexpensive -innocent -inquisitive -itchy -jealous -jittery -jolly -joyous -juicy -kind -large -late -lazy -light -little -lively -lonely -long -loose -loud -lovely -low -lucky -magnificent -mammoth -many -massive -melodic -melted -miniature -misty -moaning -modern -motionless -muddy -mushy -mute -mysterious -narrow -nasty -naughty -nervous -nice -noisy -numerous -nutritious -nutty -obedient -obnoxious -odd -old -old-fashioned -open -outrageous -outstanding -panicky -perfect -petite -plain -plastic -pleasant -poised -poor -powerful -precious -prickly -proud -puny -purring -puzzled -quaint -quick -quiet -rainy -rapid -raspy -real -relieved -repulsive -resonant -rich -ripe -rotten -rough -round -salty -scary -scattered -scrawny -screeching -selfish -shaggy -shaky -shallow -sharp -shiny -shivering -short -shrill -shy -silent -silky -silly -skinny -sleepy -slimy -slippery -slow -small -smiling -smoggy -smooth -soft -solid -sore -sour -sparkling -spicy -splendid -spotless -square -squealing -stale -steady -steep -sticky -stormy -straight -strange -strong -stupid -substantial -successful -super -sweet -swift -talented -tall -tame -tart -Taste/Touch -tasteless -tasty -teeny -teeny-tiny -tender -tense -terrible -testy -thankful -thirsty -thoughtful -thoughtless -thundering -tight -tiny -tired -tough -troubled -ugliest -ugly -uneven -uninterested -unsightly -unusual -upset -uptight -vast -victorious -vivacious -voiceless -wandering -warm -weak -weary -wet -whispering -wicked -wide -wide-eyed -wild -witty -wonderful -wooden -worried -wrong -young -yummy -zany +abundant +adorable +adventurous +aggressive +agreeable +alert +alive +amused +ancient +angry +annoyed +annoying +anxious +arrogant +ashamed +attractive +average +awful +bad +beautiful +better +bewildered +big +bitter +black +bloody +blue +blue-eyed +blushing +boiling +bored +brainy +brave +breakable +breezy +brief +bright +broad +broken +bumpy +busy +calm +careful +cautious +charming +cheerful +chilly +chubby +clean +clear +clever +cloudy +clumsy +cold +colorful +colossal +combative +comfortable +concerned +condemned +confused +cooing +cool +cooperative +courageous +crazy +crazy flipped-out +creepy +crooked +crowded +cruel +cuddly +curious +curly +curved +cute +damaged +damp +dangerous +dark +dead +deafening +deep +defeated +defiant +delicious +delightful +depressed +determined +different +difficult +dirty +disgusted +distinct +disturbed +dizzy +doubtful +drab +dry +dull +dusty +eager +early +easy +elated +elegant +embarrassed +empty +enchanting +encouraging +energetic +enthusiastic +envious +evil +excited +expensive +exuberant +faint +fair +faithful +famous +fancy +fantastic +fast +fat +few +fierce +filthy +fine +flaky +flat +fluffy +fluttering +foolish +fragile +frail +frantic +freezing +fresh +friendly +frightened +funny +fuzzy +gentle +gifted +gigantic +glamorous +gleaming +glorious +good +gorgeous +graceful +greasy +great +grieving +grotesque +grubby +grumpy +handsome +happy +hard +harsh +healthy +heavy +helpful +helpless +high +high-pitched +hilarious +hissing +hollow +homeless +homely +horrible +hot +huge +hungry +hurt +hushed +husky +icy +ill +immense +important +impossible +inexpensive +innocent +inquisitive +itchy +jealous +jittery +jolly +joyous +juicy +kind +large +late +lazy +light +little +lively +lonely +long +loose +loud +lovely +low +lucky +magnificent +mammoth +many +massive +melodic +melted +miniature +misty +moaning +modern +motionless +muddy +mushy +mute +mysterious +narrow +nasty +naughty +nervous +nice +noisy +numerous +nutritious +nutty +obedient +obnoxious +odd +old +old-fashioned +open +outrageous +outstanding +panicky +perfect +petite +plain +plastic +pleasant +poised +poor +powerful +precious +prickly +proud +puny +purring +puzzled +quaint +quick +quiet +rainy +rapid +raspy +real +relieved +repulsive +resonant +rich +ripe +rotten +rough +round +salty +scary +scattered +scrawny +screeching +selfish +shaggy +shaky +shallow +sharp +shiny +shivering +short +shrill +shy +silent +silky +silly +skinny +sleepy +slimy +slippery +slow +small +smiling +smoggy +smooth +soft +solid +sore +sour +sparkling +spicy +splendid +spotless +square +squealing +stale +steady +steep +sticky +stormy +straight +strange +strong +stupid +substantial +successful +super +sweet +swift +talented +tall +tame +tart +Taste/Touch +tasteless +tasty +teeny +teeny-tiny +tender +tense +terrible +testy +thankful +thirsty +thoughtful +thoughtless +thundering +tight +tiny +tired +tough +troubled +ugliest +ugly +uneven +uninterested +unsightly +unusual +upset +uptight +vast +victorious +vivacious +voiceless +wandering +warm +weak +weary +wet +whispering +wicked +wide +wide-eyed +wild +witty +wonderful +wooden +worried +wrong +young +yummy +zany zealous \ No newline at end of file diff --git a/strings/names/ai.txt b/strings/names/ai.txt index 2ea5e18fc0..4104337d2c 100644 --- a/strings/names/ai.txt +++ b/strings/names/ai.txt @@ -1,146 +1,146 @@ -1-Rover-1 -16-20 -7-Zark-7 -790 -Adaptive Manipulator -Allied Mastercomputer -Alpha 5 -Alpha 6 -Alpha 7 -AM -AMEE -AmigoBot -Android -Aniel -Asimov -ASTAR -Astor -B O B -B-4 -B-9 -B166ER -Bender -Bishop -Blitz -Box -Brackenridge -C-3PO -Cassandra One -Cell -Chii -Chip -Computer -Conky 2000 -Cutie -Data -Decimus -Dee Model -Deep Thought -Dor-15 -Dorfl -Dot Matrix -Duey -E D I -E-Man -ED-209 -Emma-2 -Erasmus -Ez-27 -Fagor -Faith -Fi -FRIEND COMPUTER -Frost -Fum -Futura -G2 -George -Gnut -Gort -H A R L I E -H E L P eR -H E R B I E -Hadaly -HAL 9000 -Huey -Irona -Ironhide -Jay-Dub -Jinx -Johnny 5 -K-9 -KITT -Klapaucius -Kryten 2X4B-523P -L-76 -L-Ron -Louie -LUH 3417 -Maria -MARK13 -Marvin -Master Control Program -Max 404 -Maximillian -Mechagodzilla -Mechani-Kong -Megatron -Metalhead -Mr R I N G -Mugsy3000 -NCH -Necron-99 -Norby -OMM 0910 -Optimus -Orange v 3 5 -Project 2501 -PTO -R I C 2 0 -R2-D2 -R4-P17 -Revelation -Ro-Man -Robbie -Robot Devil -S A M -S H O C K -S H R O U D -S O P H I E -SEN 5241 -Setaur -SHODAN -Shrike -SID 6 7 -Solo -Soundwave -Speedy -Super 17 -Surgeon General Kraken -T-1000 -T-800 -T-850 -Terminus -THX 1138 -Tidy -Tik-Tok -Tobor -Trurl -TWA -ULTRABOT -Ulysses -Uniblab -V I N CENT -Voltes V -W1k1 -Wikipedia -Windows 3 1 -X-5 -XERXES -XR -Yod -Z-1 -Z-2 -Z-3 -Zed +1-Rover-1 +16-20 +7-Zark-7 +790 +Adaptive Manipulator +Allied Mastercomputer +Alpha 5 +Alpha 6 +Alpha 7 +AM +AMEE +AmigoBot +Android +Aniel +Asimov +ASTAR +Astor +B O B +B-4 +B-9 +B166ER +Bender +Bishop +Blitz +Box +Brackenridge +C-3PO +Cassandra One +Cell +Chii +Chip +Computer +Conky 2000 +Cutie +Data +Decimus +Dee Model +Deep Thought +Dor-15 +Dorfl +Dot Matrix +Duey +E D I +E-Man +ED-209 +Emma-2 +Erasmus +Ez-27 +Fagor +Faith +Fi +FRIEND COMPUTER +Frost +Fum +Futura +G2 +George +Gnut +Gort +H A R L I E +H E L P eR +H E R B I E +Hadaly +HAL 9000 +Huey +Irona +Ironhide +Jay-Dub +Jinx +Johnny 5 +K-9 +KITT +Klapaucius +Kryten 2X4B-523P +L-76 +L-Ron +Louie +LUH 3417 +Maria +MARK13 +Marvin +Master Control Program +Max 404 +Maximillian +Mechagodzilla +Mechani-Kong +Megatron +Metalhead +Mr R I N G +Mugsy3000 +NCH +Necron-99 +Norby +OMM 0910 +Optimus +Orange v 3 5 +Project 2501 +PTO +R I C 2 0 +R2-D2 +R4-P17 +Revelation +Ro-Man +Robbie +Robot Devil +S A M +S H O C K +S H R O U D +S O P H I E +SEN 5241 +Setaur +SHODAN +Shrike +SID 6 7 +Solo +Soundwave +Speedy +Super 17 +Surgeon General Kraken +T-1000 +T-800 +T-850 +Terminus +THX 1138 +Tidy +Tik-Tok +Tobor +Trurl +TWA +ULTRABOT +Ulysses +Uniblab +V I N CENT +Voltes V +W1k1 +Wikipedia +Windows 3 1 +X-5 +XERXES +XR +Yod +Z-1 +Z-2 +Z-3 +Zed Zord \ No newline at end of file diff --git a/strings/names/carp.txt b/strings/names/carp.txt index 4b10aa65f7..223106992b 100644 --- a/strings/names/carp.txt +++ b/strings/names/carp.txt @@ -1,30 +1,30 @@ -Lungfish -Blackfish -Alligator -Icefish -Armorhead -Hammerhead -Anaconda -Flathead -Manta Ray -Sting Ray -Fangtooth Moray -Goblin Shark -Grass Carp -Round River Bat Ray -Noodlefish -Hagfish -Man o’ War -Ladyfish -Black Eel -Baby Seal -Sprat -Koi -Electric Eel -Lamprey -Pejeray -Yellow-edged Moray -Salmon Shark -Sleeper Shark -Featherback -Eagle Ray +Lungfish +Blackfish +Alligator +Icefish +Armorhead +Hammerhead +Anaconda +Flathead +Manta Ray +Sting Ray +Fangtooth Moray +Goblin Shark +Grass Carp +Round River Bat Ray +Noodlefish +Hagfish +Man o’ War +Ladyfish +Black Eel +Baby Seal +Sprat +Koi +Electric Eel +Lamprey +Pejeray +Yellow-edged Moray +Salmon Shark +Sleeper Shark +Featherback +Eagle Ray diff --git a/strings/names/clown.txt b/strings/names/clown.txt index d8655d7cbf..3b4b4dcb75 100644 --- a/strings/names/clown.txt +++ b/strings/names/clown.txt @@ -1,62 +1,62 @@ -Alfie -Antsy -Baby Cakes -Bam Bam -Beebee -Bo Bo Sassy -Bonker -Bonbon -Bubble -Buster Frown -Buttercup -Button -Candy -Checkers -Clarabell -Clownsky -Clueless -Cluesky -Dazzle -Dinky Doodle -Doodles -Duckie -Flop O'Honker -Freckle -Giggles -Gigglesworth -Goose McSunny -Honkel the III -Honker -Honkerbelle -Knicknack -Jazzy Bella -Jingle -Joy -Jo Jo Bobo Bo -Ladybug Honks -Lala -Miss Stockings -Mittens -Mr Shoe -Patches -Pancake -Pepinpop -Pocket -Razzle Dazzle -Redshirt McBeat -Ronnie Pace -Scootaloo -Silly Willy -Skiddle -Slippy Joe -Sparkle -Speckles -Sprinkledinkle -Squigley -Tickle -Topcake -Toodles Sharperton -Trixy -Witty -Ziggy Yoyo -Zippy +Alfie +Antsy +Baby Cakes +Bam Bam +Beebee +Bo Bo Sassy +Bonker +Bonbon +Bubble +Buster Frown +Buttercup +Button +Candy +Checkers +Clarabell +Clownsky +Clueless +Cluesky +Dazzle +Dinky Doodle +Doodles +Duckie +Flop O'Honker +Freckle +Giggles +Gigglesworth +Goose McSunny +Honkel the III +Honker +Honkerbelle +Knicknack +Jazzy Bella +Jingle +Joy +Jo Jo Bobo Bo +Ladybug Honks +Lala +Miss Stockings +Mittens +Mr Shoe +Patches +Pancake +Pepinpop +Pocket +Razzle Dazzle +Redshirt McBeat +Ronnie Pace +Scootaloo +Silly Willy +Skiddle +Slippy Joe +Sparkle +Speckles +Sprinkledinkle +Squigley +Tickle +Topcake +Toodles Sharperton +Trixy +Witty +Ziggy Yoyo +Zippy diff --git a/strings/names/death_commando.txt b/strings/names/death_commando.txt index e689727228..fa47fb2065 100644 --- a/strings/names/death_commando.txt +++ b/strings/names/death_commando.txt @@ -1,70 +1,70 @@ -A whole bunch of spiders in a SWAT suit -Al "Otta" Gore -AMERICA -Beat Punchbeef -Blast Hardcheese -Blast Thickneck -Bob Johnson -Bold Bigflank -Bolt Vanderhuge -Brick Hardmeat -Buck Plankchest -Buff Drinklots -Buff Hardback -Butch Deadlift -Crud Bonemeal -Crunch Buttsteak -Crush McStompbones -Dirk Hardpeck -Duke Killington -Evil Bob Marley -Evil Martin Luther King -Fist Rockbone -Flint Ironstag -Fridge Largemeat -George Melons -Gibbs McLargehuge -GORE Vidal -Gristle McThornBody -Hank Chesthair -Hans Testosteroneson -Killiam Shakespeare -Killing McKillingalot -Lance Killiam -Leonardo Da Viking -Lump Beefrock -Mancrush McBrorape -Max Pain -Maximilian Murderface -Maxx Power -Noam Bombsky -Pack Blowfist -Punch Rockgroin -Punch Sideiron -Punt Speedchunk -Reef Blastbody -Rex Dudekiller VII -Rip Sidecheek -Rip Steakface -Roll Fizzlebeef -Sarah Pain -Seamus McTosterone -Sgt Slaughter -Sir Killaslot -Slab Bulkhead -Slab Squatthrust -Slake Fistcrunch -Slate Slabrock -Smash Lampjaw -Smoke Manmuscle -Splint Chesthair -Stabby McGee -Stump Beefgnaw -Stump Chunkman -THAT DAMN TRAITOR GEORGE MELONS -Theodore Pain -Thick McRunfast -Toolboxl Rose -Touch Rustrod -Trunk Slamchest -Zombie Gandhi +A whole bunch of spiders in a SWAT suit +Al "Otta" Gore +AMERICA +Beat Punchbeef +Blast Hardcheese +Blast Thickneck +Bob Johnson +Bold Bigflank +Bolt Vanderhuge +Brick Hardmeat +Buck Plankchest +Buff Drinklots +Buff Hardback +Butch Deadlift +Crud Bonemeal +Crunch Buttsteak +Crush McStompbones +Dirk Hardpeck +Duke Killington +Evil Bob Marley +Evil Martin Luther King +Fist Rockbone +Flint Ironstag +Fridge Largemeat +George Melons +Gibbs McLargehuge +GORE Vidal +Gristle McThornBody +Hank Chesthair +Hans Testosteroneson +Killiam Shakespeare +Killing McKillingalot +Lance Killiam +Leonardo Da Viking +Lump Beefrock +Mancrush McBrorape +Max Pain +Maximilian Murderface +Maxx Power +Noam Bombsky +Pack Blowfist +Punch Rockgroin +Punch Sideiron +Punt Speedchunk +Reef Blastbody +Rex Dudekiller VII +Rip Sidecheek +Rip Steakface +Roll Fizzlebeef +Sarah Pain +Seamus McTosterone +Sgt Slaughter +Sir Killaslot +Slab Bulkhead +Slab Squatthrust +Slake Fistcrunch +Slate Slabrock +Smash Lampjaw +Smoke Manmuscle +Splint Chesthair +Stabby McGee +Stump Beefgnaw +Stump Chunkman +THAT DAMN TRAITOR GEORGE MELONS +Theodore Pain +Thick McRunfast +Toolboxl Rose +Touch Rustrod +Trunk Slamchest +Zombie Gandhi diff --git a/strings/names/first.txt b/strings/names/first.txt index cc99e59d84..3f9018adca 100644 --- a/strings/names/first.txt +++ b/strings/names/first.txt @@ -1,1396 +1,1396 @@ -Aaden -Aaliyah -Aaron -Abby -Abel -Abigail -Abraham -Adam -Adan -Addison -Addyson -Adeline -Aden -Adolph -Adrian -Adriana -Adrianna -Aida -Aidan -Aiden -Aileen -Ainsley -Alaina -Alan -Alana -Alanna -Alayna -Albert -Alberto -Alden -Alec -Alejandra -Alejandro -Alessandra -Alex -Alexa -Alexander -Alexandra -Alexandria -Alexia -Alexis -Alexus -Alfred -Alfreda -Alfredo -Alger -Ali -Alice -Alicia -Alijah -Alina -Alisa -Alison -Alissa -Alisya -Alivia -Aliyah -Allegra -Allegria -Allen -Allie -Allison -Allisson -Allyson -Alma -Alondra -Alvin -Alysha -Alyson -Alyssa -Alyssia -Amanda -Amari -Amaryllis -Amaya -Amber -Ambrosine -Amelia -Amir -Amira -Amiyah -Amos -Amy -Amya -Ana -Anahi -Anastasia -Anaya -Anderson -Andre -Andrea -Andres -Andrew -Andy -Angel -Angela -Angelica -Angelina -Angelo -Angie -Aniya -Aniyah -Anjelica -Anna -Annabelle -Anne -Annie -Annika -Anthony -Antonio -Anya -April -Arabella -Archie -Ariana -Arianna -Ariel -Arielle -Arleen -Armando -Arn -Art -Arthur -Arturo -Asher -Ashley -Ashlie -Ashlyn -Ashlynn -Ashton -Asia -Astor -Athena -Aubree -Aubrey -Aubrie -Audrey -Audrina -August -Aurora -Austin -Autumn -Ava -Avalon -Averill -Avery -Axel -Ayden -Ayla -Bailey -Baldric -Barbra -Bartholomew -Baylee -Beau -Beckah -Beckett -Becky -Bella -Benjamin -Bennett -Bernice -Bertrand -Bethany -Bethney -Betsy -Bianca -Bidelia -Bill -Blake -Braden -Bradley -Brady -Braeden -Braiden -Brandon -Braxton -Brayan -Brayden -Braydon -Braylon -Breanna -Breanne -Brenda -Brendan -Brenden -Brenna -Brennan -Brett -Brian -Briana -Brianna -Bridget -Brielle -Brittani -Brittany -Brock -Brodie -Brody -Bronte -Brooke -Brooklyn -Brooklynn -Bruce -Bryan -Bryant -Bryce -Brycen -Brynn -Bryson -Burt -Byrne -Byron -Bysshe -Cade -Caden -Cadence -Caiden -Caitlin -Caitlyn -Calanthia -Caleb -Caleigh -Cali -Callie -Calvin -Camden -Cameron -Camila -Camille -Camron -Camryn -Candace -Candice -Candis -Canute -Cara -Carl -Carlos -Carly -Carlyle -Carmen -Carolina -Caroline -Carolyn -Carry -Carson -Carter -Caryl -Casey -Cash -Casimir -Cassandra -Cassian -Cassidy -Catherine -Cayden -Cecilia -Cecily -Celeste -Cesar -Chad -Chance -Chandler -Charles -Charlie -Charlotte -Charlton -Chase -Chelsea -Cherette -Cheri -Cherry -Cheyanne -Cheyenne -Chip -Chloe -Chris -Christa -Christian -Christiana -Christina -Christobel -Christopher -Ciara -Cindy -Claire -Clara -Claribel -Clark -Claudia -Claudius -Clayton -Clement -Cleveland -Cliff -Clinton -Clitus -Clover -Cody -Cohen -Colby -Cole -Colin -Collin -Colten -Colton -Conner -Connor -Cooper -Cora -Corbin -Coreen -Corey -Corrine -Cory -Courtney -Cristian -Cristopher -Cruz -Crystal -Curtis -Cy -Cynthia -Daisy -Dakota -Dallas -Dalton -Dalya -Damian -Damien -Damon -Dana -Dane -Danica -Daniel -Daniela -Daniella -Danielle -Danika -Danna -Danny -Dante -Darcey -Darell -Daria -Darin -Darius -Darren -David -Davion -Davis -Dawson -Dayana -Dayna -Dayton -Dean -Deandre -Deangelo -Debbi -Declan -Dee -Deena -Delaney -Delilah -Della -Delma -Denholm -Denise -Dennis -Denys -Derek -Derrick -Desiree -Desmond -Destiny -Devin -Devon -Diamond -Diana -Diego -Dillon -Dina -Dolores -Dominic -Dominick -Donald -Donella -Donna -Donny -Donovan -Dorian -Dorothy -Dortha -Douglas -Drake -Drew -Driscoll -Dulce -Duncan -Dustin -Dylan -Easter -Easton -Ebba -Eddie -Eden -Edgar -Eduardo -Edward -Edwin -Effie -Elaina -Eleanor -Elena -Eli -Eliana -Elias -Elijah -Eliot -Eliott -Elise -Eliza -Elizabeth -Ella -Elle -Ellie -Elliot -Elliott -Elric -Elspet -Elwood -Emanuel -Emely -Emerson -Emery -Emilee -Emilia -Emiliano -Emilio -Emily -Emma -Emmanuel -Enrique -Eric -Erica -Erick -Erik -Erika -Erin -Ermintrude -Ernesto -Esmeralda -Esteban -Esther -Estrella -Ethan -Eugenia -Euphemia -Eustace -Eva -Evan -Evangeline -Eveleen -Evelina -Evelyn -Everett -Ezekiel -Ezra -Fabian -Faith -Fatima -Fay -Felix -Fernanda -Fernando -Finn -Fiona -Fitz -Flick -Floella -Flora -Flossie -Fortune -Francesca -Francis -Francisco -Frank -Frankie -Franklin -Fulton -Gabriel -Gabriela -Gabriella -Gabrielle -Gael -Gage -Garret -Garrett -Gary -Gavin -Gaye -Gaylord -Genesis -Genette -Genevieve -George -Georgene -Georgia -Geraldine -Gerardo -Gervase -Gianna -Gina -Ginger -Giovanni -Giselle -Gladwyn -Glenna -Gloria -Goddard -Godwin -Goodwin -Gordon -Grace -Gracie -Grady -Graeme -Graham -Grant -Gratian -Grayson -Gregory -Greta -Greyson -Griffin -Griselda -Guadalupe -Guillermo -Gunner -Gustavo -Gwenda -Gwenevere -Hadley -Haidee -Hailee -Hailey -Hal -Haleigh -Haley -Hanna -Hannah -Happy -Harley -Harmony -Harper -Harrison -Hartley -Hayden -Haylee -Hayley -Haylie -Hazel -Heather -Heaven -Hector -Hedley -Heidi -Helen -Henderson -Henry -Hepsie -Hervey -Holden -Holly -Homer -Hope -Horatio -Hortensia -Hudson -Huffie -Hugo -Hunter -Ian -Iantha -Ileen -Imani -Innocent -Irene -Iris -Irvine -Isaac -Isabel -Isabella -Isabelle -Isaiah -Isaias -Isiah -Ismael -Israel -Issac -Itzel -Ivan -Ivy -Izabella -Izaiah -Jacaline -Jace -Jack -Jackson -Jacob -Jacoby -Jacqueline -Jacquetta -Jacqui -Jada -Jade -Jaden -Jadon -Jadyn -Jaelyn -Jaiden -Jaime -Jake -Jakki -Jakob -Jalen -Jamar -Jamari -Jamarion -James -Jameson -Jamie -Jamison -Jane -Janel -Janelle -Janette -Janie -Janina -Janine -Janiya -Janiyah -Jared -Jaslene -Jasmin -Jasmine -Jason -Jasper -Javier -Javon -Jaxon -Jaxson -Jay -Jayce -Jayda -Jayden -Jaydon -Jaye -Jayla -Jaylee -Jaylen -Jayne -Jaynie -Jayson -Jazlyn -Jazmin -Jazmine -Jeanna -Jeannie -Jeannine -Jeb -Jed -Jeffrey -Jemmy -Jenifer -Jenna -Jennie -Jennifer -Jera -Jere -Jeremiah -Jeremy -Jeri -Jermaine -Jerrie -Jerry -Jesse -Jessica -Jesus -Jillian -Jillie -Jim -Jimena -Jimmy -Joachim -Joanna -Joaquin -Jocelyn -Joe -Joel -Joetta -Joey -Johan -Johanna -John -Johnathan -Johnny -Joi -Jonah -Jonas -Jonathan -Jonathon -Joni -Jordan -Jordyn -Jorge -Jose -Joselyn -Joseph -Josepha -Josephine -Josh -Joshua -Josiah -Josie -Josue -Joye -Juan -Judah -Jude -Julia -Julian -Juliana -Julianna -Julie -Juliet -Julio -Julissa -Julius -July -Justice -Justin -Kade -Kaden -Kadence -Kaelea -Kaelyn -Kai -Kaiden -Kailey -Kailyn -Kaitlin -Kaitlyn -Kale -Kaleb -Kaleigh -Kameron -Kamryn -Kane -Kara -Karen -Karenza -Karina -Karla -Karly -Karson -Karyn -Kassidy -Kat -Kate -Katelyn -Katelynn -Katherine -Kathleen -Kathryn -Kathy -Katie -Katlyn -Kayden -Kaydence -Kayla -Kaylee -Kayleigh -Kaylie -Kaylin -Keagan -Keaton -Keegan -Keira -Keith -Kellen -Kellie -Kelly -Kelsey -Kelvin -Kendall -Kendra -Kennard -Kennedy -Kenneth -Kenzie -Kerena -Kerensa -Keturah -Kevin -Keziah -Khalil -Khloe -Kiana -Kiara -Kiera -Kiley -Kimberley -Kimberly -Kimora -Kingston -Kira -Kobe -Kolton -Kristen -Kristina -Kristopher -Kyla -Kyle -Kylee -Kyleigh -Kyler -Kylie -Kyra -Lacey -Lacy -Laila -Lakeisha -Lalla -Lana -Lance -Landen -Landon -Landyn -Lane -Lanny -Larry -Latanya -Launce -Laura -Lauren -Laurencia -Laurissa -Lauryn -Lawrence -Layla -Leah -Leeann -Leia -Leila -Leilani -Leland -Lena -Lennox -Leo -Leonardo -Leonel -Leroi -Leslie -Lesly -Lessie -Leta -Levi -Lexi -Lexia -Lexus -Lia -Liam -Lila -Lilah -Lilian -Liliana -Lillian -Lilliana -Lillie -Lilly -Lily -Lincoln -Linden -Lindsay -Lindsey -Lindsie -Lindy -Linton -Lizbeth -Lockie -Logan -Lola -London -Lorenzo -Loreto -Lori -Lorin -Lou -Louis -Luanne -Luca -Lucas -Lucia -Lucian -Lucy -Luis -Lukas -Luke -Luna -Luvenia -Lydia -Lyla -Lyndsey -Lynn -Lynsey -Lynwood -Lyric -Mabelle -Macey -Macie -Mackenzie -Macy -Madalyn -Maddison -Maddox -Madeleine -Madeline -Madelyn -Madelynn -Madilyn -Madison -Madisyn -Madyson -Maegan -Maggie -Makayla -Makenna -Makenzie -Malachi -Malcolm -Malia -Malik -Mallory -Manley -Manuel -Marc -Marcia -Marco -Marcos -Marcus -Marely -Margaret -Maria -Mariabella -Mariah -Mariana -Marilene -Mario -Marion -Marisol -Marissa -Marje -Marjory -Mark -Marlee -Marley -Marlowe -Marlyn -Marshall -Martin -Marvin -Mary -Maryann -Mason -Mateo -Mathew -Matthew -Maudie -Maurene -Maurice -Mauricio -Max -Maximilian -Maximus -Maxwell -May -Maya -Maynard -Mckenna -Mckenzie -Megan -Meghan -Mekhi -Melanie -Melany -Melissa -Melody -Melvin -Melvyn -Meredith -Merideth -Merrilyn -Meryl -Mia -Micah -Michael -Michaela -Micheal -Michelle -Miguel -Mikayla -Mike -Miles -Miley -Milo -Milton -Minnie -Miracle -Miranda -Miriam -Mitchell -Moises -Molly -Monica -Monna -Montague -Monte -Monty -Morgan -Moses -Muriel -Mya -Mylee -Myles -Myriam -Myrtie -Nadia -Nan -Nancy -Naomi -Nasir -Natalia -Natalie -Nataly -Natasha -Nathan -Nathaniel -Nayeli -Nehemiah -Nelle -Nelson -Nena -Nerissa -Netta -Nettie -Nevaeh -Nia -Nicholas -Nickolas -Nicolas -Nicole -Nikolas -Nina -Noah -Noel -Noelle -Nolan -Nonie -Nora -Norah -Nova -Nowell -Nydia -Nyla -Olive -Oliver -Olivia -Omar -Oralie -Orlando -Osbert -Osborn -Osborne -Oscar -Osmund -Owen -Pablo -Paget -Paige -Paisley -Paola -Paris -Parker -Patience -Patricia -Patrick -Patton -Paul -Pauleen -Paxton -Payton -Pedro -Pene -Penelope -Percival -Peregrine -Perla -Peter -Peyton -Pheobe -Philip -Phillip -Phoebe -Phoenix -Phyliss -Phyllida -Phyllis -Piper -Porsche -Porter -Presley -Preston -Priscilla -Prosper -Prue -Quanah -Quentin -Quiana -Quinn -Quinton -Rachael -Rachel -Raegan -Raelene -Rafael -Rain -Ramon -Randa -Randal -Randy -Rastus -Raul -Raymond -Rayner -Reagan -Rebecca -Rebeckah -Rebekah -Reece -Reed -Reene -Reese -Reid -Renie -Reuben -Rexana -Reynard -Rhetta -Ricardo -Rich -Richard -Richie -Rick -Rickena -Rickey -Rickie -Ricky -Rihanna -Riley -River -Robert -Roberto -Rocco -Rodger -Rodrigo -Roger -Roman -Romayne -Romeo -Ronald -Ronnette -Rosa -Roscoe -Rose -Rosemary -Roswell -Rowan -Roy -Royce -Ruben -Ruby -Rubye -Russell -Rusty -Ruth -Ryan -Ryder -Ryker -Rylan -Rylee -Ryleigh -Rylie -Sabella -Sabrina -Sachie -Sadie -Sage -Sal -Sally -Salvador -Sam -Samantha -Samara -Samuel -Sandra -Santiago -Sara -Sarah -Sarai -Saranna -Sasha -Saul -Savanna -Savannah -Sawyer -Scarlett -Scott -Scotty -Sean -Sebastian -Selena -Seneca -Serena -Serenity -Sergio -Seth -Seymour -Shan -Shana -Shane -Shanika -Shannah -Shannon -Shantae -Sharalyn -Sharla -Shaun -Shawn -Shayla -Shelby -Sheri -Sherie -Sherill -Sherri -Shiloh -Sienna -Sierra -Silas -Simon -Sissy -Skylar -Skyler -Sloan -Sofia -Solomon -Sophia -Sophie -Sorrel -Spencer -Spike -Star -Stella -Steph -Stephanie -Stephany -Stephen -Steven -Sue -Sukie -Summer -Sunshine -Susanna -Susannah -Suzan -Suzy -Sybil -Syd -Sydney -Talia -Talon -Tamika -Tamsin -Tania -Tanner -Tansy -Taryn -Tate -Tatiana -Tatum -Tatyanna -Taylor -Teagan -Tel -Terrell -Terry -Tessa -Theodore -Thomas -Tiffany -Timothy -Titus -Tod -Tolly -Tony -Topaz -Tori -Tracee -Tracey -Travis -Trent -Trenton -Trevor -Trey -Trinity -Tristan -Tristen -Triston -Troy -Tucker -Ty -Tye -Tyler -Tyson -Uland -Ulric -Ulyssa -Uriel -Valary -Valentina -Valeria -Valerie -Vanessa -Vaughn -Verna -Veronica -Victor -Victoria -Vince -Vincent -Vinnie -Violet -Vivian -Viviana -Vivyan -Walker -Walter -Ward -Warner -Wayne -Wendi -Wendy -Wesley -Weston -Whitaker -William -Willow -Willy -Winifred -Wisdom -Woodrow -Woody -Wyatt -Wynonna -Wynter -Xander -Xavier -Ximena -Yahir -Yasmin -Yolanda -Ysabel -Zachariah -Zachary -Zack -Zackary -Zander -Zane -Zayden -Zeke -Zelda -Zion -Zoe -Zoey +Aaden +Aaliyah +Aaron +Abby +Abel +Abigail +Abraham +Adam +Adan +Addison +Addyson +Adeline +Aden +Adolph +Adrian +Adriana +Adrianna +Aida +Aidan +Aiden +Aileen +Ainsley +Alaina +Alan +Alana +Alanna +Alayna +Albert +Alberto +Alden +Alec +Alejandra +Alejandro +Alessandra +Alex +Alexa +Alexander +Alexandra +Alexandria +Alexia +Alexis +Alexus +Alfred +Alfreda +Alfredo +Alger +Ali +Alice +Alicia +Alijah +Alina +Alisa +Alison +Alissa +Alisya +Alivia +Aliyah +Allegra +Allegria +Allen +Allie +Allison +Allisson +Allyson +Alma +Alondra +Alvin +Alysha +Alyson +Alyssa +Alyssia +Amanda +Amari +Amaryllis +Amaya +Amber +Ambrosine +Amelia +Amir +Amira +Amiyah +Amos +Amy +Amya +Ana +Anahi +Anastasia +Anaya +Anderson +Andre +Andrea +Andres +Andrew +Andy +Angel +Angela +Angelica +Angelina +Angelo +Angie +Aniya +Aniyah +Anjelica +Anna +Annabelle +Anne +Annie +Annika +Anthony +Antonio +Anya +April +Arabella +Archie +Ariana +Arianna +Ariel +Arielle +Arleen +Armando +Arn +Art +Arthur +Arturo +Asher +Ashley +Ashlie +Ashlyn +Ashlynn +Ashton +Asia +Astor +Athena +Aubree +Aubrey +Aubrie +Audrey +Audrina +August +Aurora +Austin +Autumn +Ava +Avalon +Averill +Avery +Axel +Ayden +Ayla +Bailey +Baldric +Barbra +Bartholomew +Baylee +Beau +Beckah +Beckett +Becky +Bella +Benjamin +Bennett +Bernice +Bertrand +Bethany +Bethney +Betsy +Bianca +Bidelia +Bill +Blake +Braden +Bradley +Brady +Braeden +Braiden +Brandon +Braxton +Brayan +Brayden +Braydon +Braylon +Breanna +Breanne +Brenda +Brendan +Brenden +Brenna +Brennan +Brett +Brian +Briana +Brianna +Bridget +Brielle +Brittani +Brittany +Brock +Brodie +Brody +Bronte +Brooke +Brooklyn +Brooklynn +Bruce +Bryan +Bryant +Bryce +Brycen +Brynn +Bryson +Burt +Byrne +Byron +Bysshe +Cade +Caden +Cadence +Caiden +Caitlin +Caitlyn +Calanthia +Caleb +Caleigh +Cali +Callie +Calvin +Camden +Cameron +Camila +Camille +Camron +Camryn +Candace +Candice +Candis +Canute +Cara +Carl +Carlos +Carly +Carlyle +Carmen +Carolina +Caroline +Carolyn +Carry +Carson +Carter +Caryl +Casey +Cash +Casimir +Cassandra +Cassian +Cassidy +Catherine +Cayden +Cecilia +Cecily +Celeste +Cesar +Chad +Chance +Chandler +Charles +Charlie +Charlotte +Charlton +Chase +Chelsea +Cherette +Cheri +Cherry +Cheyanne +Cheyenne +Chip +Chloe +Chris +Christa +Christian +Christiana +Christina +Christobel +Christopher +Ciara +Cindy +Claire +Clara +Claribel +Clark +Claudia +Claudius +Clayton +Clement +Cleveland +Cliff +Clinton +Clitus +Clover +Cody +Cohen +Colby +Cole +Colin +Collin +Colten +Colton +Conner +Connor +Cooper +Cora +Corbin +Coreen +Corey +Corrine +Cory +Courtney +Cristian +Cristopher +Cruz +Crystal +Curtis +Cy +Cynthia +Daisy +Dakota +Dallas +Dalton +Dalya +Damian +Damien +Damon +Dana +Dane +Danica +Daniel +Daniela +Daniella +Danielle +Danika +Danna +Danny +Dante +Darcey +Darell +Daria +Darin +Darius +Darren +David +Davion +Davis +Dawson +Dayana +Dayna +Dayton +Dean +Deandre +Deangelo +Debbi +Declan +Dee +Deena +Delaney +Delilah +Della +Delma +Denholm +Denise +Dennis +Denys +Derek +Derrick +Desiree +Desmond +Destiny +Devin +Devon +Diamond +Diana +Diego +Dillon +Dina +Dolores +Dominic +Dominick +Donald +Donella +Donna +Donny +Donovan +Dorian +Dorothy +Dortha +Douglas +Drake +Drew +Driscoll +Dulce +Duncan +Dustin +Dylan +Easter +Easton +Ebba +Eddie +Eden +Edgar +Eduardo +Edward +Edwin +Effie +Elaina +Eleanor +Elena +Eli +Eliana +Elias +Elijah +Eliot +Eliott +Elise +Eliza +Elizabeth +Ella +Elle +Ellie +Elliot +Elliott +Elric +Elspet +Elwood +Emanuel +Emely +Emerson +Emery +Emilee +Emilia +Emiliano +Emilio +Emily +Emma +Emmanuel +Enrique +Eric +Erica +Erick +Erik +Erika +Erin +Ermintrude +Ernesto +Esmeralda +Esteban +Esther +Estrella +Ethan +Eugenia +Euphemia +Eustace +Eva +Evan +Evangeline +Eveleen +Evelina +Evelyn +Everett +Ezekiel +Ezra +Fabian +Faith +Fatima +Fay +Felix +Fernanda +Fernando +Finn +Fiona +Fitz +Flick +Floella +Flora +Flossie +Fortune +Francesca +Francis +Francisco +Frank +Frankie +Franklin +Fulton +Gabriel +Gabriela +Gabriella +Gabrielle +Gael +Gage +Garret +Garrett +Gary +Gavin +Gaye +Gaylord +Genesis +Genette +Genevieve +George +Georgene +Georgia +Geraldine +Gerardo +Gervase +Gianna +Gina +Ginger +Giovanni +Giselle +Gladwyn +Glenna +Gloria +Goddard +Godwin +Goodwin +Gordon +Grace +Gracie +Grady +Graeme +Graham +Grant +Gratian +Grayson +Gregory +Greta +Greyson +Griffin +Griselda +Guadalupe +Guillermo +Gunner +Gustavo +Gwenda +Gwenevere +Hadley +Haidee +Hailee +Hailey +Hal +Haleigh +Haley +Hanna +Hannah +Happy +Harley +Harmony +Harper +Harrison +Hartley +Hayden +Haylee +Hayley +Haylie +Hazel +Heather +Heaven +Hector +Hedley +Heidi +Helen +Henderson +Henry +Hepsie +Hervey +Holden +Holly +Homer +Hope +Horatio +Hortensia +Hudson +Huffie +Hugo +Hunter +Ian +Iantha +Ileen +Imani +Innocent +Irene +Iris +Irvine +Isaac +Isabel +Isabella +Isabelle +Isaiah +Isaias +Isiah +Ismael +Israel +Issac +Itzel +Ivan +Ivy +Izabella +Izaiah +Jacaline +Jace +Jack +Jackson +Jacob +Jacoby +Jacqueline +Jacquetta +Jacqui +Jada +Jade +Jaden +Jadon +Jadyn +Jaelyn +Jaiden +Jaime +Jake +Jakki +Jakob +Jalen +Jamar +Jamari +Jamarion +James +Jameson +Jamie +Jamison +Jane +Janel +Janelle +Janette +Janie +Janina +Janine +Janiya +Janiyah +Jared +Jaslene +Jasmin +Jasmine +Jason +Jasper +Javier +Javon +Jaxon +Jaxson +Jay +Jayce +Jayda +Jayden +Jaydon +Jaye +Jayla +Jaylee +Jaylen +Jayne +Jaynie +Jayson +Jazlyn +Jazmin +Jazmine +Jeanna +Jeannie +Jeannine +Jeb +Jed +Jeffrey +Jemmy +Jenifer +Jenna +Jennie +Jennifer +Jera +Jere +Jeremiah +Jeremy +Jeri +Jermaine +Jerrie +Jerry +Jesse +Jessica +Jesus +Jillian +Jillie +Jim +Jimena +Jimmy +Joachim +Joanna +Joaquin +Jocelyn +Joe +Joel +Joetta +Joey +Johan +Johanna +John +Johnathan +Johnny +Joi +Jonah +Jonas +Jonathan +Jonathon +Joni +Jordan +Jordyn +Jorge +Jose +Joselyn +Joseph +Josepha +Josephine +Josh +Joshua +Josiah +Josie +Josue +Joye +Juan +Judah +Jude +Julia +Julian +Juliana +Julianna +Julie +Juliet +Julio +Julissa +Julius +July +Justice +Justin +Kade +Kaden +Kadence +Kaelea +Kaelyn +Kai +Kaiden +Kailey +Kailyn +Kaitlin +Kaitlyn +Kale +Kaleb +Kaleigh +Kameron +Kamryn +Kane +Kara +Karen +Karenza +Karina +Karla +Karly +Karson +Karyn +Kassidy +Kat +Kate +Katelyn +Katelynn +Katherine +Kathleen +Kathryn +Kathy +Katie +Katlyn +Kayden +Kaydence +Kayla +Kaylee +Kayleigh +Kaylie +Kaylin +Keagan +Keaton +Keegan +Keira +Keith +Kellen +Kellie +Kelly +Kelsey +Kelvin +Kendall +Kendra +Kennard +Kennedy +Kenneth +Kenzie +Kerena +Kerensa +Keturah +Kevin +Keziah +Khalil +Khloe +Kiana +Kiara +Kiera +Kiley +Kimberley +Kimberly +Kimora +Kingston +Kira +Kobe +Kolton +Kristen +Kristina +Kristopher +Kyla +Kyle +Kylee +Kyleigh +Kyler +Kylie +Kyra +Lacey +Lacy +Laila +Lakeisha +Lalla +Lana +Lance +Landen +Landon +Landyn +Lane +Lanny +Larry +Latanya +Launce +Laura +Lauren +Laurencia +Laurissa +Lauryn +Lawrence +Layla +Leah +Leeann +Leia +Leila +Leilani +Leland +Lena +Lennox +Leo +Leonardo +Leonel +Leroi +Leslie +Lesly +Lessie +Leta +Levi +Lexi +Lexia +Lexus +Lia +Liam +Lila +Lilah +Lilian +Liliana +Lillian +Lilliana +Lillie +Lilly +Lily +Lincoln +Linden +Lindsay +Lindsey +Lindsie +Lindy +Linton +Lizbeth +Lockie +Logan +Lola +London +Lorenzo +Loreto +Lori +Lorin +Lou +Louis +Luanne +Luca +Lucas +Lucia +Lucian +Lucy +Luis +Lukas +Luke +Luna +Luvenia +Lydia +Lyla +Lyndsey +Lynn +Lynsey +Lynwood +Lyric +Mabelle +Macey +Macie +Mackenzie +Macy +Madalyn +Maddison +Maddox +Madeleine +Madeline +Madelyn +Madelynn +Madilyn +Madison +Madisyn +Madyson +Maegan +Maggie +Makayla +Makenna +Makenzie +Malachi +Malcolm +Malia +Malik +Mallory +Manley +Manuel +Marc +Marcia +Marco +Marcos +Marcus +Marely +Margaret +Maria +Mariabella +Mariah +Mariana +Marilene +Mario +Marion +Marisol +Marissa +Marje +Marjory +Mark +Marlee +Marley +Marlowe +Marlyn +Marshall +Martin +Marvin +Mary +Maryann +Mason +Mateo +Mathew +Matthew +Maudie +Maurene +Maurice +Mauricio +Max +Maximilian +Maximus +Maxwell +May +Maya +Maynard +Mckenna +Mckenzie +Megan +Meghan +Mekhi +Melanie +Melany +Melissa +Melody +Melvin +Melvyn +Meredith +Merideth +Merrilyn +Meryl +Mia +Micah +Michael +Michaela +Micheal +Michelle +Miguel +Mikayla +Mike +Miles +Miley +Milo +Milton +Minnie +Miracle +Miranda +Miriam +Mitchell +Moises +Molly +Monica +Monna +Montague +Monte +Monty +Morgan +Moses +Muriel +Mya +Mylee +Myles +Myriam +Myrtie +Nadia +Nan +Nancy +Naomi +Nasir +Natalia +Natalie +Nataly +Natasha +Nathan +Nathaniel +Nayeli +Nehemiah +Nelle +Nelson +Nena +Nerissa +Netta +Nettie +Nevaeh +Nia +Nicholas +Nickolas +Nicolas +Nicole +Nikolas +Nina +Noah +Noel +Noelle +Nolan +Nonie +Nora +Norah +Nova +Nowell +Nydia +Nyla +Olive +Oliver +Olivia +Omar +Oralie +Orlando +Osbert +Osborn +Osborne +Oscar +Osmund +Owen +Pablo +Paget +Paige +Paisley +Paola +Paris +Parker +Patience +Patricia +Patrick +Patton +Paul +Pauleen +Paxton +Payton +Pedro +Pene +Penelope +Percival +Peregrine +Perla +Peter +Peyton +Pheobe +Philip +Phillip +Phoebe +Phoenix +Phyliss +Phyllida +Phyllis +Piper +Porsche +Porter +Presley +Preston +Priscilla +Prosper +Prue +Quanah +Quentin +Quiana +Quinn +Quinton +Rachael +Rachel +Raegan +Raelene +Rafael +Rain +Ramon +Randa +Randal +Randy +Rastus +Raul +Raymond +Rayner +Reagan +Rebecca +Rebeckah +Rebekah +Reece +Reed +Reene +Reese +Reid +Renie +Reuben +Rexana +Reynard +Rhetta +Ricardo +Rich +Richard +Richie +Rick +Rickena +Rickey +Rickie +Ricky +Rihanna +Riley +River +Robert +Roberto +Rocco +Rodger +Rodrigo +Roger +Roman +Romayne +Romeo +Ronald +Ronnette +Rosa +Roscoe +Rose +Rosemary +Roswell +Rowan +Roy +Royce +Ruben +Ruby +Rubye +Russell +Rusty +Ruth +Ryan +Ryder +Ryker +Rylan +Rylee +Ryleigh +Rylie +Sabella +Sabrina +Sachie +Sadie +Sage +Sal +Sally +Salvador +Sam +Samantha +Samara +Samuel +Sandra +Santiago +Sara +Sarah +Sarai +Saranna +Sasha +Saul +Savanna +Savannah +Sawyer +Scarlett +Scott +Scotty +Sean +Sebastian +Selena +Seneca +Serena +Serenity +Sergio +Seth +Seymour +Shan +Shana +Shane +Shanika +Shannah +Shannon +Shantae +Sharalyn +Sharla +Shaun +Shawn +Shayla +Shelby +Sheri +Sherie +Sherill +Sherri +Shiloh +Sienna +Sierra +Silas +Simon +Sissy +Skylar +Skyler +Sloan +Sofia +Solomon +Sophia +Sophie +Sorrel +Spencer +Spike +Star +Stella +Steph +Stephanie +Stephany +Stephen +Steven +Sue +Sukie +Summer +Sunshine +Susanna +Susannah +Suzan +Suzy +Sybil +Syd +Sydney +Talia +Talon +Tamika +Tamsin +Tania +Tanner +Tansy +Taryn +Tate +Tatiana +Tatum +Tatyanna +Taylor +Teagan +Tel +Terrell +Terry +Tessa +Theodore +Thomas +Tiffany +Timothy +Titus +Tod +Tolly +Tony +Topaz +Tori +Tracee +Tracey +Travis +Trent +Trenton +Trevor +Trey +Trinity +Tristan +Tristen +Triston +Troy +Tucker +Ty +Tye +Tyler +Tyson +Uland +Ulric +Ulyssa +Uriel +Valary +Valentina +Valeria +Valerie +Vanessa +Vaughn +Verna +Veronica +Victor +Victoria +Vince +Vincent +Vinnie +Violet +Vivian +Viviana +Vivyan +Walker +Walter +Ward +Warner +Wayne +Wendi +Wendy +Wesley +Weston +Whitaker +William +Willow +Willy +Winifred +Wisdom +Woodrow +Woody +Wyatt +Wynonna +Wynter +Xander +Xavier +Ximena +Yahir +Yasmin +Yolanda +Ysabel +Zachariah +Zachary +Zack +Zackary +Zander +Zane +Zayden +Zeke +Zelda +Zion +Zoe +Zoey Zune \ No newline at end of file diff --git a/strings/names/first_female.txt b/strings/names/first_female.txt index 6710c1bfc3..038e936879 100644 --- a/strings/names/first_female.txt +++ b/strings/names/first_female.txt @@ -1,771 +1,771 @@ -Aaliyah -Abby -Abigail -Addison -Addyson -Adeline -Adriana -Adrianna -Aida -Aileen -Ainsley -Alaina -Alana -Alanna -Alayna -Alejandra -Alessandra -Alexa -Alexandra -Alexandria -Alexia -Alexis -Alexus -Alfreda -Alice -Alicia -Alina -Alisa -Alison -Alissa -Alisya -Alivia -Aliyah -Allegra -Allegria -Allie -Allison -Allisson -Allyson -Alma -Alondra -Alysha -Alyson -Alyssa -Alyssia -Amanda -Amari -Amaryllis -Amaya -Amber -Ambrosine -Amelia -Amira -Amiyah -Amy -Amya -Ana -Anahi -Anastasia -Anaya -Andrea -Angel -Angela -Angelica -Angelina -Angie -Aniya -Aniyah -Anjelica -Anna -Annabelle -Anne -Annie -Annika -Anya -April -Arabella -Ariana -Arianna -Ariel -Arielle -Arleen -Ashley -Ashlie -Ashlyn -Ashlynn -Asia -Astor -Athena -Aubree -Aubrey -Aubrie -Audrey -Audrina -Aurora -Autumn -Ava -Avalona -Averill -Avery -Ayla -Bailey -Barbara -Baylee -Beckah -Becky -Bella -Bernice -Bethany -Bethney -Betsy -Bianca -Bidelia -Breanna -Breanne -Brenda -Brenna -Briana -Brianna -Bridget -Brielle -Brittani -Brittany -Brooke -Brooklyn -Brooklynn -Brynn -Cadence -Caitlin -Caitlyn -Calanthia -Caleigh -Cali -Callie -Cameron -Camila -Camille -Camryn -Candace -Candice -Cara -Carly -Carlyle -Carmen -Carolina -Caroline -Carolyn -Carry -Caryl -Casey -Cassandra -Cassidy -Catherine -Cecilia -Cecily -Celeste -Charlotte -Chelsea -Cherette -Cheri -Cherry -Cheyanne -Cheyenne -Chloe -Christa -Christiana -Christina -Christobelle -Ciara -Cindy -Claire -Clara -Claribel -Claudia -Clover -Cora -Coreen -Corrine -Courtney -Crystal -Cynthia -Daisy -Dakota -Dalya -Dana -Danica -Daniela -Daniella -Danielle -Danika -Danna -Daria -Dayana -Dayna -Debbi -Dee -Deena -Delaney -Delilah -Della -Delma -Denise -Denys -Desiree -Destiny -Diamond -Diana -Dina -Dolores -Donella -Donna -Dorothy -Dortha -Dulce -Easter -Ebba -Eden -Effie -Elaina -Eleanor -Elena -Eliana -Elise -Eliza -Elizabeth -Ella -Elle -Ellie -Emely -Emerson -Emery -Emilee -Emilia -Emily -Emma -Erica -Erika -Erin -Ermintrude -Esmeralda -Esther -Estrella -Eugenia -Euphemia -Eustace -Eva -Evangeline -Eveleen -Evelina -Evelyn -Faith -Fatima -Fay -Fernanda -Fiona -Floella -Flora -Flossie -Fortune -Francesca -Gabriela -Gabriella -Gabrielle -Genette -Genevieve -Georgene -Georgia -Geraldine -Gervase -Gianna -Gina -Ginger -Giselle -Gladwyn -Glenna -Gloria -Grace -Gracie -Greta -Griselda -Guadalupe -Gwenda -Gwenevere -Hadley -Haidee -Hailee -Hailey -Hal -Haleigh -Haley -Hanna -Hannah -Harley -Harmony -Harper -Hayden -Haylee -Hayley -Haylie -Hazel -Heather -Heaven -Hedley -Heidi -Helen -Hepsie -Holly -Hope -Hortensia -Iantha -Ileen -Imani -Innocent -Irene -Iris -Isabel -Isabella -Isabelle -Itzel -Ivy -Izabella -Jacaline -Jacqueline -Jacquetta -Jacqui -Jada -Jade -Jaden -Jadyn -Jaelyn -Jakki -Jalen -Jamie -Jane -Janelle -Janette -Janie -Janina -Janine -Janiya -Janiyah -Jaslene -Jasmin -Jasmine -Jayda -Jayden -Jayla -Jaylee -Jaynie -Jazlyn -Jazmin -Jazmine -Jeanna -Jeannie -Jeannine -Jenifer -Jenna -Jennie -Jennifer -Jera -Jere -Jeri -Jessica -Jillian -Jillie -Jimena -Joanna -Jocelyn -Joetta -Johanna -Joi -Joni -Jordan -Jordyn -Joselyn -Josepha -Josephine -Josie -Joye -Julia -Juliana -Julianna -Julie -Juliet -Julissa -July -Kadence -Kaelea -Kaelyn -Kailey -Kailyn -Kaitlin -Kaitlyn -Kaleigh -Kamryn -Kara -Karen -Karenza -Karina -Karla -Karly -Karyn -Kassidy -Kat -Kate -Katelyn -Katelynn -Katherine -Kathleen -Kathryn -Kathy -Katie -Katlyn -Kayden -Kaydence -Kayla -Kaylee -Kayleigh -Kaylie -Kaylin -Keegan -Keira -Keith -Kellie -Kelly -Kelsey -Kendall -Kendra -Kennedy -Kenzie -Kerena -Kerensa -Keturah -Khloe -Kiana -Kiara -Kiera -Kiley -Kimberley -Kimberly -Kimora -Kira -Kristen -Kristina -Kyla -Kylee -Kyleigh -Kylie -Kyra -Lacey -Lacy -Laila -Lakeisha -Lalla -Lana -Latanya -Laura -Lauren -Laurencia -Laurissa -Lauryn -Layla -Leah -Leeann -Leia -Leila -Leilani -Lena -Leslie -Lesly -Lessie -Leta -Lexi -Lexia -Lexus -Lia -Lila -Lilah -Lilian -Liliana -Lillian -Lilliana -Lillie -Lilly -Lily -Lindsay -Lindsey -Lindsie -Lindy -Lizbeth -Lockie -Logan -Lola -London -Lori -Lorin -Luanne -Lucia -Lucian -Lucy -Luna -Luvenia -Lydia -Lyla -Lyndsey -Lynn -Lynsey -Lynwood -Lyric -Mabelle -Macey -Macie -Mackenzie -Macy -Madalyn -Maddison -Madeleine -Madeline -Madelyn -Madelynn -Madilyn -Madison -Madisyn -Madyson -Maegan -Maggie -Makayla -Makenna -Makenzie -Malia -Mallory -Marcia -Marely -Margaret -Maria -Mariabella -Mariah -Mariana -Marilene -Marion -Marisol -Marissa -Marje -Marjory -Marlee -Marley -Marlowe -Marlyn -Marshall -Mary -Maryann -Maudie -Maurene -May -Maya -Mckenna -Mckenzie -Megan -Meghan -Melanie -Melany -Melissa -Melody -Meredith -Merideth -Merrilyn -Meryl -Mia -Michaela -Michelle -Mikayla -Miley -Minnie -Miracle -Miranda -Miriam -Molly -Monica -Monna -Morgan -Muriel -Mya -Mylee -Myriam -Myrtie -Nadia -Nan -Nancy -Naomi -Natalia -Natalie -Nataly -Natasha -Nayeli -Nelle -Nena -Nerissa -Netta -Nettie -Nevaeh -Nia -Nicole -Nina -Noelle -Nonie -Nora -Norah -Nova -Nowell -Nydia -Nyla -Olive -Olivia -Oralie -Paige -Paisley -Paola -Paris -Patience -Patricia -Pauleen -Payton -Pene -Penelope -Peregrine -Perla -Peyton -Pheobe -Phoebe -Phyliss -Phyllida -Phyllis -Piper -Porsche -Presley -Priscilla -Prosper -Prue -Quanah -Quiana -Rachael -Rachel -Raegan -Raelene -Rain -Randa -Randal -Reagan -Rebecca -Rebeckah -Rebekah -Reene -Reese -Renie -Rexana -Rhetta -Rihanna -Riley -Ronnette -Rosa -Rose -Rosemary -Rowan -Ruby -Rubye -Ruth -Rylee -Ryleigh -Rylie -Sabella -Sabrina -Sachie -Sadie -Sage -Sally -Samantha -Samara -Sandra -Sara -Sarah -Sarai -Saranna -Sasha -Savanna -Savannah -Scarlett -Selena -Seneca -Serena -Serenity -Shana -Shanika -Shannah -Shannon -Shantae -Sharalyn -Sharla -Shayla -Shelby -Sheri -Sherie -Sherill -Sherri -Sienna -Sierra -Sissy -Skylar -Skyler -Sofia -Sophia -Sophie -Star -Stella -Steph -Stephanie -Stephany -Sue -Sukie -Summer -Sunshine -Susanna -Susannah -Suzan -Suzy -Sydney -Talia -Tamika -Tania -Tansy -Taryn -Tatiana -Tatum -Tatyanna -Taylor -Teagan -Tessa -Tiffany -Tolly -Topaz -Tori -Tracee -Tracey -Trinity -Ulyssa -Valary -Valentina -Valeria -Valerie -Vanessa -Verna -Veronica -Victoria -Vinnie -Violet -Vivian -Viviana -Vivyan -Wendi -Wendy -Willow -Wisdom -Wynonna -Wynter -Ximena -Yasmin -Yolanda -Ysabel -Zelda -Zoe -Zoey +Aaliyah +Abby +Abigail +Addison +Addyson +Adeline +Adriana +Adrianna +Aida +Aileen +Ainsley +Alaina +Alana +Alanna +Alayna +Alejandra +Alessandra +Alexa +Alexandra +Alexandria +Alexia +Alexis +Alexus +Alfreda +Alice +Alicia +Alina +Alisa +Alison +Alissa +Alisya +Alivia +Aliyah +Allegra +Allegria +Allie +Allison +Allisson +Allyson +Alma +Alondra +Alysha +Alyson +Alyssa +Alyssia +Amanda +Amari +Amaryllis +Amaya +Amber +Ambrosine +Amelia +Amira +Amiyah +Amy +Amya +Ana +Anahi +Anastasia +Anaya +Andrea +Angel +Angela +Angelica +Angelina +Angie +Aniya +Aniyah +Anjelica +Anna +Annabelle +Anne +Annie +Annika +Anya +April +Arabella +Ariana +Arianna +Ariel +Arielle +Arleen +Ashley +Ashlie +Ashlyn +Ashlynn +Asia +Astor +Athena +Aubree +Aubrey +Aubrie +Audrey +Audrina +Aurora +Autumn +Ava +Avalona +Averill +Avery +Ayla +Bailey +Barbara +Baylee +Beckah +Becky +Bella +Bernice +Bethany +Bethney +Betsy +Bianca +Bidelia +Breanna +Breanne +Brenda +Brenna +Briana +Brianna +Bridget +Brielle +Brittani +Brittany +Brooke +Brooklyn +Brooklynn +Brynn +Cadence +Caitlin +Caitlyn +Calanthia +Caleigh +Cali +Callie +Cameron +Camila +Camille +Camryn +Candace +Candice +Cara +Carly +Carlyle +Carmen +Carolina +Caroline +Carolyn +Carry +Caryl +Casey +Cassandra +Cassidy +Catherine +Cecilia +Cecily +Celeste +Charlotte +Chelsea +Cherette +Cheri +Cherry +Cheyanne +Cheyenne +Chloe +Christa +Christiana +Christina +Christobelle +Ciara +Cindy +Claire +Clara +Claribel +Claudia +Clover +Cora +Coreen +Corrine +Courtney +Crystal +Cynthia +Daisy +Dakota +Dalya +Dana +Danica +Daniela +Daniella +Danielle +Danika +Danna +Daria +Dayana +Dayna +Debbi +Dee +Deena +Delaney +Delilah +Della +Delma +Denise +Denys +Desiree +Destiny +Diamond +Diana +Dina +Dolores +Donella +Donna +Dorothy +Dortha +Dulce +Easter +Ebba +Eden +Effie +Elaina +Eleanor +Elena +Eliana +Elise +Eliza +Elizabeth +Ella +Elle +Ellie +Emely +Emerson +Emery +Emilee +Emilia +Emily +Emma +Erica +Erika +Erin +Ermintrude +Esmeralda +Esther +Estrella +Eugenia +Euphemia +Eustace +Eva +Evangeline +Eveleen +Evelina +Evelyn +Faith +Fatima +Fay +Fernanda +Fiona +Floella +Flora +Flossie +Fortune +Francesca +Gabriela +Gabriella +Gabrielle +Genette +Genevieve +Georgene +Georgia +Geraldine +Gervase +Gianna +Gina +Ginger +Giselle +Gladwyn +Glenna +Gloria +Grace +Gracie +Greta +Griselda +Guadalupe +Gwenda +Gwenevere +Hadley +Haidee +Hailee +Hailey +Hal +Haleigh +Haley +Hanna +Hannah +Harley +Harmony +Harper +Hayden +Haylee +Hayley +Haylie +Hazel +Heather +Heaven +Hedley +Heidi +Helen +Hepsie +Holly +Hope +Hortensia +Iantha +Ileen +Imani +Innocent +Irene +Iris +Isabel +Isabella +Isabelle +Itzel +Ivy +Izabella +Jacaline +Jacqueline +Jacquetta +Jacqui +Jada +Jade +Jaden +Jadyn +Jaelyn +Jakki +Jalen +Jamie +Jane +Janelle +Janette +Janie +Janina +Janine +Janiya +Janiyah +Jaslene +Jasmin +Jasmine +Jayda +Jayden +Jayla +Jaylee +Jaynie +Jazlyn +Jazmin +Jazmine +Jeanna +Jeannie +Jeannine +Jenifer +Jenna +Jennie +Jennifer +Jera +Jere +Jeri +Jessica +Jillian +Jillie +Jimena +Joanna +Jocelyn +Joetta +Johanna +Joi +Joni +Jordan +Jordyn +Joselyn +Josepha +Josephine +Josie +Joye +Julia +Juliana +Julianna +Julie +Juliet +Julissa +July +Kadence +Kaelea +Kaelyn +Kailey +Kailyn +Kaitlin +Kaitlyn +Kaleigh +Kamryn +Kara +Karen +Karenza +Karina +Karla +Karly +Karyn +Kassidy +Kat +Kate +Katelyn +Katelynn +Katherine +Kathleen +Kathryn +Kathy +Katie +Katlyn +Kayden +Kaydence +Kayla +Kaylee +Kayleigh +Kaylie +Kaylin +Keegan +Keira +Keith +Kellie +Kelly +Kelsey +Kendall +Kendra +Kennedy +Kenzie +Kerena +Kerensa +Keturah +Khloe +Kiana +Kiara +Kiera +Kiley +Kimberley +Kimberly +Kimora +Kira +Kristen +Kristina +Kyla +Kylee +Kyleigh +Kylie +Kyra +Lacey +Lacy +Laila +Lakeisha +Lalla +Lana +Latanya +Laura +Lauren +Laurencia +Laurissa +Lauryn +Layla +Leah +Leeann +Leia +Leila +Leilani +Lena +Leslie +Lesly +Lessie +Leta +Lexi +Lexia +Lexus +Lia +Lila +Lilah +Lilian +Liliana +Lillian +Lilliana +Lillie +Lilly +Lily +Lindsay +Lindsey +Lindsie +Lindy +Lizbeth +Lockie +Logan +Lola +London +Lori +Lorin +Luanne +Lucia +Lucian +Lucy +Luna +Luvenia +Lydia +Lyla +Lyndsey +Lynn +Lynsey +Lynwood +Lyric +Mabelle +Macey +Macie +Mackenzie +Macy +Madalyn +Maddison +Madeleine +Madeline +Madelyn +Madelynn +Madilyn +Madison +Madisyn +Madyson +Maegan +Maggie +Makayla +Makenna +Makenzie +Malia +Mallory +Marcia +Marely +Margaret +Maria +Mariabella +Mariah +Mariana +Marilene +Marion +Marisol +Marissa +Marje +Marjory +Marlee +Marley +Marlowe +Marlyn +Marshall +Mary +Maryann +Maudie +Maurene +May +Maya +Mckenna +Mckenzie +Megan +Meghan +Melanie +Melany +Melissa +Melody +Meredith +Merideth +Merrilyn +Meryl +Mia +Michaela +Michelle +Mikayla +Miley +Minnie +Miracle +Miranda +Miriam +Molly +Monica +Monna +Morgan +Muriel +Mya +Mylee +Myriam +Myrtie +Nadia +Nan +Nancy +Naomi +Natalia +Natalie +Nataly +Natasha +Nayeli +Nelle +Nena +Nerissa +Netta +Nettie +Nevaeh +Nia +Nicole +Nina +Noelle +Nonie +Nora +Norah +Nova +Nowell +Nydia +Nyla +Olive +Olivia +Oralie +Paige +Paisley +Paola +Paris +Patience +Patricia +Pauleen +Payton +Pene +Penelope +Peregrine +Perla +Peyton +Pheobe +Phoebe +Phyliss +Phyllida +Phyllis +Piper +Porsche +Presley +Priscilla +Prosper +Prue +Quanah +Quiana +Rachael +Rachel +Raegan +Raelene +Rain +Randa +Randal +Reagan +Rebecca +Rebeckah +Rebekah +Reene +Reese +Renie +Rexana +Rhetta +Rihanna +Riley +Ronnette +Rosa +Rose +Rosemary +Rowan +Ruby +Rubye +Ruth +Rylee +Ryleigh +Rylie +Sabella +Sabrina +Sachie +Sadie +Sage +Sally +Samantha +Samara +Sandra +Sara +Sarah +Sarai +Saranna +Sasha +Savanna +Savannah +Scarlett +Selena +Seneca +Serena +Serenity +Shana +Shanika +Shannah +Shannon +Shantae +Sharalyn +Sharla +Shayla +Shelby +Sheri +Sherie +Sherill +Sherri +Sienna +Sierra +Sissy +Skylar +Skyler +Sofia +Sophia +Sophie +Star +Stella +Steph +Stephanie +Stephany +Sue +Sukie +Summer +Sunshine +Susanna +Susannah +Suzan +Suzy +Sydney +Talia +Tamika +Tania +Tansy +Taryn +Tatiana +Tatum +Tatyanna +Taylor +Teagan +Tessa +Tiffany +Tolly +Topaz +Tori +Tracee +Tracey +Trinity +Ulyssa +Valary +Valentina +Valeria +Valerie +Vanessa +Verna +Veronica +Victoria +Vinnie +Violet +Vivian +Viviana +Vivyan +Wendi +Wendy +Willow +Wisdom +Wynonna +Wynter +Ximena +Yasmin +Yolanda +Ysabel +Zelda +Zoe +Zoey Zune \ No newline at end of file diff --git a/strings/names/first_male.txt b/strings/names/first_male.txt index b86722dbaf..928958d1a9 100644 --- a/strings/names/first_male.txt +++ b/strings/names/first_male.txt @@ -1,668 +1,668 @@ -Aaden -Aaron -Abel -Abraham -Adam -Adan -Aden -Adolph -Adrian -Aidan -Aiden -Alan -Albert -Alberto -Alden -Alec -Alejandro -Alex -Alexander -Alexis -Alfred -Alfredo -Alger -Ali -Alijah -Allen -Alvin -Amari -Amir -Amos -Anderson -Andre -Andres -Andrew -Andy -Angel -Angelo -Anthony -Antonio -Apple -Archie -Armando -Arnie -Art -Arthur -Arturo -Asher -Ashton -August -Austin -Avery -Axel -Ayden -Baldric -Bartholomew -Beau -Beckett -Benjamin -Bennett -Bill -Blake -Braden -Bradley -Brady -Braeden -Braiden -Brandon -Braxton -Brayan -Brayden -Braydon -Braylon -Brendan -Brenden -Brennan -Brett -Brian -Brick -Brock -Brodie -Brody -Bronte -Bruce -Bryan -Bryant -Bryce -Brycen -Bryson -Buck -Burt -Butch -Byrne -Byron -Cade -Caden -Caiden -Caleb -Calvin -Camden -Cameron -Camron -Camryn -Carl -Carlos -Carson -Carter -Casey -Cash -Casimir -Cassian -Cayden -Cesar -Chad -Chance -Chandler -Charles -Charlie -Charlton -Chase -Chip -Chris -Christian -Christopher -Clark -Claudius -Clayton -Clement -Cletus -Cleveland -Cliff -Clinton -Cody -Cohen -Colby -Cole -Colin -Collin -Colten -Colton -Conner -Connor -Cooper -Corbin -Corey -Cory -Cristian -Cristopher -Crush -Cruz -Curtis -Cy -Dakota -Dallas -Dalton -Damian -Damien -Damon -Dane -Daniel -Danny -Dante -Darcey -Darell -Darin -Darius -Darren -David -Davion -Davis -Dawson -Dayton -Dean -Deandre -Deangelo -Declan -Denholm -Dennis -Derek -Derrick -Desmond -Devin -Devon -Diego -Dillon -Dirk -Dominic -Dominick -Donald -Donny -Donovan -Douglas -Drake -Drew -Driscoll -Duke -Duncan -Dustin -Dylan -Easton -Eddie -Edgar -Eduardo -Edward -Edwin -Eli -Elias -Elijah -Eliot -Eliott -Elliot -Elliott -Elric -Elwood -Emanuel -Emerson -Emiliano -Emilio -Emmanuel -Enrique -Eric -Erick -Erik -Ernesto -Esteban -Ethan -Evan -Everett -Ezekiel -Ezra -Fabian -Felix -Fenton -Fernando -Finn -Fitz -Flick -Flint -Flip -Francis -Francisco -Frank -Frankie -Franklin -Fridge -Fulton -Gabriel -Gael -Gage -Gannon -Garret -Garrett -Gary -Gavin -George -Gerardo -Giovanni -Goddard -Godwin -Goodwin -Gordon -Grady -Graeme -Graham -Grandpa -Grant -Gratian -Grayson -Gregory -Grendel -Greyson -Griffin -Guillermo -Gunner -Gustavo -Han -Harrison -Harry -Hartley -Harvey -Hayden -Hector -Henderson -Henry -Holden -Homer -Horatio -Hudson -Huffie -Hugo -Hungry -Hunter -Ian -Irvine -Isaac -Isaiah -Isaias -Isiah -Ismael -Israel -Issac -Ivan -Izaiah -Jace -Jack -Jackson -Jacob -Jacoby -Jaden -Jadon -Jaiden -Jaime -Jake -Jakob -Jalen -Jamar -Jamari -Jamarion -James -Jameson -Jamie -Jamison -Janel -Jared -Jason -Jasper -Javier -Javon -Jaxon -Jaxson -Jay -Jayce -Jayden -Jaydon -Jaye -Jaylen -Jayne -Jayson -Jean-Luc -Jeb -Jed -Jeffrey -Jemmy -Jeremiah -Jeremy -Jermaine -Jerrie -Jerry -Jesse -Jesus -Jim -Jimmy -Joachim -Joaquin -Joe -Joel -Joey -Johan -John -Johnathan -Johnny -Jonah -Jonas -Jonathan -Jonathon -Jordan -Jorge -Jose -Joseph -Josh -Joshua -Josiah -Josue -Juan -Judah -Jude -Julian -Julio -Julius -Justice -Justin -Kade -Kaden -Kai -Kaiden -Kale -Kaleb -Kameron -Kane -Karson -Kayden -Keagan -Keaton -Keegan -Keith -Kellen -Kelvin -Kennard -Kenneth -Kevin -Keziah -Khalil -Kingston -Kobe -Kolton -Kristopher -Kyle -Kyler -Lance -Landen -Lando -Landon -Landyn -Lane -Lanny -Larry -Launce -Lawrence -Leland -Lennox -Lenny -Leo -Leonard -Leonardo -Leonel -Leroy -Levi -Liam -Lief -Lincoln -Linden -Linton -Logan -Lorde -Lorenzo -Loreto -Lou -Louis -Luca -Lucas -Luis -Lukas -Luke -Maddox -Malachi -Malcolm -Malik -Manley -Manuel -Marc -Marco -Marcos -Marcus -Mario -Marion -Mark -Marshall -Martin -Marvin -Mason -Mateo -Mathew -Matthew -Maurice -Mauricio -Max -Maximilian -Maximus -Maxwell -Maynard -Mekhi -Melvin -Melvyn -Micah -Michael -Micheal -Miguel -Mike -Miles -Milo -Milton -Mitchell -Moises -Montague -Monte -Monty -Morgan -Moses -Myles -Nasir -Nat -Nathan -Nathaniel -Nehemiah -Nelson -Nicholas -Nick -Nickolas -Nicolas -Nikolas -Noah -Noel -Nolan -Oliver -Omar -Opie -Orlando -Osbert -Osborn -Osborne -Oscar -Osmund -Oswald -Owen -Pablo -Paget -Parker -Patrick -Patton -Paul -Paxton -Payton -Pedro -Percival -Persh -Peter -Peyton -Philip -Phillip -Phoenix -Porter -Preston -Quentin -Quinn -Quinton -Rafael -Ramon -Randy -Rastus -Raul -Raymond -Rayner -Reece -Reed -Reese -Reid -Reuben -Reynard -Ricardo -Richard -Ricky -Riley -River -Robert -Roberto -Rocco -Rodger -Rodrigo -Roger -Roman -Romayne -Romeo -Ronald -Roscoe -Roswell -Rowan -Roy -Royce -Rube -Ruben -Russell -Rusty -Ryan -Ryder -Ryker -Rylan -Sal -Salvador -Sam -Samuel -Santiago -Saul -Sawyer -Scott -Scotty -Sean -Sebastian -Sergio -Seth -Seymour -Shane -Shaun -Shawn -Shiloh -Silas -Simon -Skyler -Sloan -Smoke -Solomon -Sorrel -Spencer -Spike -Stephen -Steven -Sybil -Syd -Talon -Tamsin -Tanner -Tate -Taylor -Tel -Terrell -Terry -Theodore -Thomas -Tim -Timothy -Titus -Todd -Tony -Travis -Trent -Trenton -Trevor -Trey -Trip -Tristan -Tristen -Triston -Troy -Tucker -Ty -Tye -Tyler -Tyson -Uland -Ulric -Uriel -Vaughn -Victor -Vince -Vincent -Vinny -Walker -Walter -Ward -Warner -Wayne -Wesley -Weston -Whitaker -William -Willy -Woodrow -Wyatt -Xander -Xavier -Yahir -Zachariah -Zachary -Zack -Zackary -Zander -Zane -Zayden -Zeke +Aaden +Aaron +Abel +Abraham +Adam +Adan +Aden +Adolph +Adrian +Aidan +Aiden +Alan +Albert +Alberto +Alden +Alec +Alejandro +Alex +Alexander +Alexis +Alfred +Alfredo +Alger +Ali +Alijah +Allen +Alvin +Amari +Amir +Amos +Anderson +Andre +Andres +Andrew +Andy +Angel +Angelo +Anthony +Antonio +Apple +Archie +Armando +Arnie +Art +Arthur +Arturo +Asher +Ashton +August +Austin +Avery +Axel +Ayden +Baldric +Bartholomew +Beau +Beckett +Benjamin +Bennett +Bill +Blake +Braden +Bradley +Brady +Braeden +Braiden +Brandon +Braxton +Brayan +Brayden +Braydon +Braylon +Brendan +Brenden +Brennan +Brett +Brian +Brick +Brock +Brodie +Brody +Bronte +Bruce +Bryan +Bryant +Bryce +Brycen +Bryson +Buck +Burt +Butch +Byrne +Byron +Cade +Caden +Caiden +Caleb +Calvin +Camden +Cameron +Camron +Camryn +Carl +Carlos +Carson +Carter +Casey +Cash +Casimir +Cassian +Cayden +Cesar +Chad +Chance +Chandler +Charles +Charlie +Charlton +Chase +Chip +Chris +Christian +Christopher +Clark +Claudius +Clayton +Clement +Cletus +Cleveland +Cliff +Clinton +Cody +Cohen +Colby +Cole +Colin +Collin +Colten +Colton +Conner +Connor +Cooper +Corbin +Corey +Cory +Cristian +Cristopher +Crush +Cruz +Curtis +Cy +Dakota +Dallas +Dalton +Damian +Damien +Damon +Dane +Daniel +Danny +Dante +Darcey +Darell +Darin +Darius +Darren +David +Davion +Davis +Dawson +Dayton +Dean +Deandre +Deangelo +Declan +Denholm +Dennis +Derek +Derrick +Desmond +Devin +Devon +Diego +Dillon +Dirk +Dominic +Dominick +Donald +Donny +Donovan +Douglas +Drake +Drew +Driscoll +Duke +Duncan +Dustin +Dylan +Easton +Eddie +Edgar +Eduardo +Edward +Edwin +Eli +Elias +Elijah +Eliot +Eliott +Elliot +Elliott +Elric +Elwood +Emanuel +Emerson +Emiliano +Emilio +Emmanuel +Enrique +Eric +Erick +Erik +Ernesto +Esteban +Ethan +Evan +Everett +Ezekiel +Ezra +Fabian +Felix +Fenton +Fernando +Finn +Fitz +Flick +Flint +Flip +Francis +Francisco +Frank +Frankie +Franklin +Fridge +Fulton +Gabriel +Gael +Gage +Gannon +Garret +Garrett +Gary +Gavin +George +Gerardo +Giovanni +Goddard +Godwin +Goodwin +Gordon +Grady +Graeme +Graham +Grandpa +Grant +Gratian +Grayson +Gregory +Grendel +Greyson +Griffin +Guillermo +Gunner +Gustavo +Han +Harrison +Harry +Hartley +Harvey +Hayden +Hector +Henderson +Henry +Holden +Homer +Horatio +Hudson +Huffie +Hugo +Hungry +Hunter +Ian +Irvine +Isaac +Isaiah +Isaias +Isiah +Ismael +Israel +Issac +Ivan +Izaiah +Jace +Jack +Jackson +Jacob +Jacoby +Jaden +Jadon +Jaiden +Jaime +Jake +Jakob +Jalen +Jamar +Jamari +Jamarion +James +Jameson +Jamie +Jamison +Janel +Jared +Jason +Jasper +Javier +Javon +Jaxon +Jaxson +Jay +Jayce +Jayden +Jaydon +Jaye +Jaylen +Jayne +Jayson +Jean-Luc +Jeb +Jed +Jeffrey +Jemmy +Jeremiah +Jeremy +Jermaine +Jerrie +Jerry +Jesse +Jesus +Jim +Jimmy +Joachim +Joaquin +Joe +Joel +Joey +Johan +John +Johnathan +Johnny +Jonah +Jonas +Jonathan +Jonathon +Jordan +Jorge +Jose +Joseph +Josh +Joshua +Josiah +Josue +Juan +Judah +Jude +Julian +Julio +Julius +Justice +Justin +Kade +Kaden +Kai +Kaiden +Kale +Kaleb +Kameron +Kane +Karson +Kayden +Keagan +Keaton +Keegan +Keith +Kellen +Kelvin +Kennard +Kenneth +Kevin +Keziah +Khalil +Kingston +Kobe +Kolton +Kristopher +Kyle +Kyler +Lance +Landen +Lando +Landon +Landyn +Lane +Lanny +Larry +Launce +Lawrence +Leland +Lennox +Lenny +Leo +Leonard +Leonardo +Leonel +Leroy +Levi +Liam +Lief +Lincoln +Linden +Linton +Logan +Lorde +Lorenzo +Loreto +Lou +Louis +Luca +Lucas +Luis +Lukas +Luke +Maddox +Malachi +Malcolm +Malik +Manley +Manuel +Marc +Marco +Marcos +Marcus +Mario +Marion +Mark +Marshall +Martin +Marvin +Mason +Mateo +Mathew +Matthew +Maurice +Mauricio +Max +Maximilian +Maximus +Maxwell +Maynard +Mekhi +Melvin +Melvyn +Micah +Michael +Micheal +Miguel +Mike +Miles +Milo +Milton +Mitchell +Moises +Montague +Monte +Monty +Morgan +Moses +Myles +Nasir +Nat +Nathan +Nathaniel +Nehemiah +Nelson +Nicholas +Nick +Nickolas +Nicolas +Nikolas +Noah +Noel +Nolan +Oliver +Omar +Opie +Orlando +Osbert +Osborn +Osborne +Oscar +Osmund +Oswald +Owen +Pablo +Paget +Parker +Patrick +Patton +Paul +Paxton +Payton +Pedro +Percival +Persh +Peter +Peyton +Philip +Phillip +Phoenix +Porter +Preston +Quentin +Quinn +Quinton +Rafael +Ramon +Randy +Rastus +Raul +Raymond +Rayner +Reece +Reed +Reese +Reid +Reuben +Reynard +Ricardo +Richard +Ricky +Riley +River +Robert +Roberto +Rocco +Rodger +Rodrigo +Roger +Roman +Romayne +Romeo +Ronald +Roscoe +Roswell +Rowan +Roy +Royce +Rube +Ruben +Russell +Rusty +Ryan +Ryder +Ryker +Rylan +Sal +Salvador +Sam +Samuel +Santiago +Saul +Sawyer +Scott +Scotty +Sean +Sebastian +Sergio +Seth +Seymour +Shane +Shaun +Shawn +Shiloh +Silas +Simon +Skyler +Sloan +Smoke +Solomon +Sorrel +Spencer +Spike +Stephen +Steven +Sybil +Syd +Talon +Tamsin +Tanner +Tate +Taylor +Tel +Terrell +Terry +Theodore +Thomas +Tim +Timothy +Titus +Todd +Tony +Travis +Trent +Trenton +Trevor +Trey +Trip +Tristan +Tristen +Triston +Troy +Tucker +Ty +Tye +Tyler +Tyson +Uland +Ulric +Uriel +Vaughn +Victor +Vince +Vincent +Vinny +Walker +Walter +Ward +Warner +Wayne +Wesley +Weston +Whitaker +William +Willy +Woodrow +Wyatt +Xander +Xavier +Yahir +Zachariah +Zachary +Zack +Zackary +Zander +Zane +Zayden +Zeke Zion \ No newline at end of file diff --git a/strings/names/golem.txt b/strings/names/golem.txt index a26da78b04..7cfcefa899 100644 --- a/strings/names/golem.txt +++ b/strings/names/golem.txt @@ -1,157 +1,157 @@ -Ablation -Alabaster -Alunite -Andesite -Anyhdrite -Basalt -Basin -Bauxite -Bedrock -Bismuth -Bismuthinite -Bituminous Coal -Borax -Boulder -Brimstone -Brittle -Calcite -Cassiterite -Cenozoic -Chalk -Chasm -Cheridite -Chert -Chromite -Cinnabar -Claystone -Coast -Cobaltite -Column -Conglomerate -Core -Crevasse -Crust -Cryolite -Crystal -Dacite -Diorite -Dolomite -Dolostone -Dragonforce -Earthflow -Epoch -Eutrophication -Fault -Flint -Foliation -Foreshock -Fossil -Gabbro -Galena -Garnierite -Geode -Geoge -Gneiss -Granite -Graphite -Gravel -Groove -Grotto -Gypsum -Hematite -Hornblende -Humus -Igneous -Ilmenite -Iron -Island -Jasper -Jet -Kaolinite -Kettle -Kimberlite -Komatiite -Landslide -Levee -Lignite -Limestone -Limonite -Luster -Madidite -Magnetite -Magnitude -Malachite -Mantle -Marble -Marcasite -Melange -Meme -Mica -Microcline -Migmatite -Mineral -Mountain -Mudstone -Obsidian -Olivine -Ore -Orpiment -Orthoclase -Outwash -Oxbow Lake -Oynx -Pahoehoe -Pebble -Pegmatite -Periclase -Petrified Wood -Phyllite -Pitchblende -Plate -Pothole -Puddingstone -Pyrite -Pyrolusite -Quake -Quarry -Quartz -Quartzite -Realgar -Reservoir -Rhyolite -Rock -Rock Salt -Rockfall -Rutile -Saltpeter -Sand -Sandstone -Satinspar -Schist -Sediment -Seismic -Selenite -Serpentine -Shale -Shore -Siltstone -Slag -Slate -Sphalerite -Stack -Stalactite -Stalagmite -Stibnite -Stone -Stress -Subduction -Sylvite -Talc -Tetrahedrite -Tidal -Trench -Valley -Volcano -Xenolith -Yardang -Zone +Ablation +Alabaster +Alunite +Andesite +Anyhdrite +Basalt +Basin +Bauxite +Bedrock +Bismuth +Bismuthinite +Bituminous Coal +Borax +Boulder +Brimstone +Brittle +Calcite +Cassiterite +Cenozoic +Chalk +Chasm +Cheridite +Chert +Chromite +Cinnabar +Claystone +Coast +Cobaltite +Column +Conglomerate +Core +Crevasse +Crust +Cryolite +Crystal +Dacite +Diorite +Dolomite +Dolostone +Dragonforce +Earthflow +Epoch +Eutrophication +Fault +Flint +Foliation +Foreshock +Fossil +Gabbro +Galena +Garnierite +Geode +Geoge +Gneiss +Granite +Graphite +Gravel +Groove +Grotto +Gypsum +Hematite +Hornblende +Humus +Igneous +Ilmenite +Iron +Island +Jasper +Jet +Kaolinite +Kettle +Kimberlite +Komatiite +Landslide +Levee +Lignite +Limestone +Limonite +Luster +Madidite +Magnetite +Magnitude +Malachite +Mantle +Marble +Marcasite +Melange +Meme +Mica +Microcline +Migmatite +Mineral +Mountain +Mudstone +Obsidian +Olivine +Ore +Orpiment +Orthoclase +Outwash +Oxbow Lake +Oynx +Pahoehoe +Pebble +Pegmatite +Periclase +Petrified Wood +Phyllite +Pitchblende +Plate +Pothole +Puddingstone +Pyrite +Pyrolusite +Quake +Quarry +Quartz +Quartzite +Realgar +Reservoir +Rhyolite +Rock +Rock Salt +Rockfall +Rutile +Saltpeter +Sand +Sandstone +Satinspar +Schist +Sediment +Seismic +Selenite +Serpentine +Shale +Shore +Siltstone +Slag +Slate +Sphalerite +Stack +Stalactite +Stalagmite +Stibnite +Stone +Stress +Subduction +Sylvite +Talc +Tetrahedrite +Tidal +Trench +Valley +Volcano +Xenolith +Yardang +Zone diff --git a/strings/names/last.txt b/strings/names/last.txt index b9769055e3..6796c7519e 100644 --- a/strings/names/last.txt +++ b/strings/names/last.txt @@ -1,570 +1,570 @@ -Ackerley -Adams -Addison -Agg -Aggley -Ahmed -Albright -Alekseev -Ali -Alice -Allen -Alliman -Altmann -Anderson -Andreev -Ann -Archibald -Armstrong -Ashbaugh -Atkinson -Atweeke -Aultman -Auman -Baer -Bailey -Baker -Barnes -Barrett -Bash -Bashline -Basinger -Baskett -Basmanoff -Batten -Baum -Baxter -Beach -Beail -Beck -Beedell -Begum -Bell -Benford -Bennett -Berkheimer -Best -Bickerson -Bicknell -Biery -Black -Blackburn -Blaine -Blessig -Bloise -Bluetenberger -Blyant -Bode -Bould -Bousum -Bowchiew -Boyer -Brandenburg -Bratton -Braun -Briggs -Brindle -Briner -Brinigh -Brooks -Brown -Bullard -Bunten -Burkett -Burns -Burris -Butterfill -Buttersworth -Buzzard -Byers -Bynum -Caldwell -Callison -Camp -Campbell -Carmichael -Carr -Carter -Catherina -Catleay -Cavalet -Chapman -Chauvin -Cherry -Christman -Christopher -Clark -Clarke -Clewett -Coates -Coldsmith -Collins -Compton -Conrad -Cook -Cooper -Costello -Cowart -Cowper -Cox -Cressman -Curry -Cypret -David -Davies -Davis -Dawkins -Day -Dean -Demuth -Dennis -Dickinson -Digson -Dimeling -Donkin -Draudy -Driggers -Dryfus -Dugmore -Duncan -Durstine -Earl -Easter -Echard -Eckhardstein -Edwards -Eggbert -Ehret -Elderson -Eliza -Elliott -Ellis -Enderly -Endsley -Evans -Ewing -Faqua -Faust -Fea -Feufer -Fiddler -Field -Fields -Finlay -Fischer -Fiscina -Fisher -Fitzgerald -Fleming -Flickinger -Focell -Foster -Franks -Fraser -Fryer -Fuchs -Fulton -Gadow -Gardner -Garland -Garneys -Garratt -Garrison -Gettemy -Gibson -Glover -Goebbles -Goodman -Graham -Gray -Green -Greenawalt -Greene -Greenwood -Gregory -Griffiths -Gronko -Guess -Hall -Hanford -Hardie -Harding -Hardy -Harris -Harrison -Harrold -Harrow -Harshman -Hastings -Hawker -Hawking -Hawkins -Hayhurst -Haynes -Heckendora -Hegarty -Henry -Hice -Highlands -Hill -Hincken -Hirleman -Hoenshell -Holdeman -Holmes -Hook -Hooker -Hoopengarner -Hoover -Houser -Houston -Howard -Howe -Huey -Hughes -Hujsak -Hunt -Hunter -Hussain -Hutton -Hynes -Ironmonger -Isaman -Isemann -Ivanov -Jackson -James -Jardine -Jenkins -Jenner -Jerome -Jesse -Jewell -Joghs -Johnson -Jones -Jowers -Joyce -Judge -Jyllian -Kadel -Kanaga -Kaur -Keener -Kelley -Kellogg -Kelly -Kemble -Kemerer -Keppel -Kepplinger -Khan -Kiefer -Kifer -Kimple -King -Kirkson -Knapenberger -Knapp -Koepple -Koster -Kuster -Kuznetsov -Laborde -Lacon -Lafortune -Langston -Larson -Lauffer -Laurenzi -Leach -Lee -Leech -Leichter -Leslie -Lester -Levett -Lewis -Lineman -Linton -Llora -Lloyd -Logue -Lombardi -Lord -Losey -Lowe -Lowstetter -Lucy -Ludwig -Maclagan -Magor -Marcotte -Margaret -Marriman -Marshall -Martins -Mary -Mason -Mathews -Matthews -Mcclymonds -Mccullough -Mccune -McDonald -McDonohugh -Mcfall -Mcintosh -Mckendrick -Mcloskey -Mcmullen -McShain -Mens -Merryman -Metzer -Meyers -Mikhaylov -Mildred -Miller -Millhouse -Mills -Milne -Mingle -Minnie -Mitchell -Moberly -Moon -Moore -Morgan -Morris -Mortland -Mosser -Mueller -Muggins -Mull -Muller -Murphy -Murray -Nash -Neely -Nehling -Newbern -Newton -Nicholas -Nickolson -Northey -Noton -Olphert -Oneal -Oppenheimer -Osteen -Osterweis -Osterwise -Otis -Overstreet -Owen -Owens -Palmer -Parker -Parkinson -Patel -Patterson -Paulson -Pavlov -Paynter -Pearsall -Pennington -Perkins -Pershing -Peters -Petrov -Pfeifer -Philips -Phillips -Picard -Pinney -Poehl -Poley -Polson -Potter -Powell -Power -Powers -Pratt -Prechtl -Prescott -Prevatt -Price -Priebe -Pritchard -Pycroft -Quinn -Quirin -Rader -Rahl -Ramos -Randolph -Ratcliff -Rathen -Rathens -Raub -Ray -Reade -Reichard -Reid -Reighner -Rhinehart -Richards -Richardson -Richter -Rifler -Riggle -Riker -Ringer -Roadman -Roberts -Robertson -Robinson -Roby -Rockwell -Rogers -Rohtin -Rose -Rosensteel -Rowley -Russell -Ryals -Sagan -Sanders -Sandford -Sandys -Sauter -Saylor -Schaeffer -Scherer -Schmidt -Schofield -Schrader -Scott -Sealis -Seelig -Seidner -Semenov -Shafer -Shaffer -Shaner -Shaw -Sheets -Shick -Shirey -Sholl -Shupe -Sidower -Siegrist -Simmons -Simpson -Singh -Skywalker -Sloan -Smail -Smirnov -Smith -Snyder -Sommer -Spock -Stafford -Stahl -Stainforth -Stall -Stamos -Stange -Staymates -Steele -Stephenson -Stern -Stewart -Stocker -Stone -Stough -Straub -Stroble -Stroh -Styles -Sullivan -Sulyard -Summy -Sutton -Swabey -Swarner -Sybilla -Taggart -Tanner -Taylor -Teagarden -Tedrow -Tennant -Thomas -Thomlinson -Thompson -Thomson -Thorley -Tilton -Tireman -Todd -Treeby -Trovato -Turner -Ulery -Ullman -Unk -Vader -Vanleer -Vasilyev -Waldron -Walker -Wallick -Ward -Wardle -Warren -Watson -Webb -Weeter -Weinstein -Weisgarber -Wells -Welty -Wentzel -Werner -Werry -Wheeler -Whirlow -White -Whiteman -Whittier -Wible -Wile -Wilkerson -Wilkinson -Willey -Williams -Williamson -Wilo -Wilson -Winton -Wise -Wolfe -Wolff -Wood -Woodward -Woodworth -Woolery -Woollard -Wright -Yeskey -Young -Zadovsky -Zalack -Zaun -Zeal -Zimmer +Ackerley +Adams +Addison +Agg +Aggley +Ahmed +Albright +Alekseev +Ali +Alice +Allen +Alliman +Altmann +Anderson +Andreev +Ann +Archibald +Armstrong +Ashbaugh +Atkinson +Atweeke +Aultman +Auman +Baer +Bailey +Baker +Barnes +Barrett +Bash +Bashline +Basinger +Baskett +Basmanoff +Batten +Baum +Baxter +Beach +Beail +Beck +Beedell +Begum +Bell +Benford +Bennett +Berkheimer +Best +Bickerson +Bicknell +Biery +Black +Blackburn +Blaine +Blessig +Bloise +Bluetenberger +Blyant +Bode +Bould +Bousum +Bowchiew +Boyer +Brandenburg +Bratton +Braun +Briggs +Brindle +Briner +Brinigh +Brooks +Brown +Bullard +Bunten +Burkett +Burns +Burris +Butterfill +Buttersworth +Buzzard +Byers +Bynum +Caldwell +Callison +Camp +Campbell +Carmichael +Carr +Carter +Catherina +Catleay +Cavalet +Chapman +Chauvin +Cherry +Christman +Christopher +Clark +Clarke +Clewett +Coates +Coldsmith +Collins +Compton +Conrad +Cook +Cooper +Costello +Cowart +Cowper +Cox +Cressman +Curry +Cypret +David +Davies +Davis +Dawkins +Day +Dean +Demuth +Dennis +Dickinson +Digson +Dimeling +Donkin +Draudy +Driggers +Dryfus +Dugmore +Duncan +Durstine +Earl +Easter +Echard +Eckhardstein +Edwards +Eggbert +Ehret +Elderson +Eliza +Elliott +Ellis +Enderly +Endsley +Evans +Ewing +Faqua +Faust +Fea +Feufer +Fiddler +Field +Fields +Finlay +Fischer +Fiscina +Fisher +Fitzgerald +Fleming +Flickinger +Focell +Foster +Franks +Fraser +Fryer +Fuchs +Fulton +Gadow +Gardner +Garland +Garneys +Garratt +Garrison +Gettemy +Gibson +Glover +Goebbles +Goodman +Graham +Gray +Green +Greenawalt +Greene +Greenwood +Gregory +Griffiths +Gronko +Guess +Hall +Hanford +Hardie +Harding +Hardy +Harris +Harrison +Harrold +Harrow +Harshman +Hastings +Hawker +Hawking +Hawkins +Hayhurst +Haynes +Heckendora +Hegarty +Henry +Hice +Highlands +Hill +Hincken +Hirleman +Hoenshell +Holdeman +Holmes +Hook +Hooker +Hoopengarner +Hoover +Houser +Houston +Howard +Howe +Huey +Hughes +Hujsak +Hunt +Hunter +Hussain +Hutton +Hynes +Ironmonger +Isaman +Isemann +Ivanov +Jackson +James +Jardine +Jenkins +Jenner +Jerome +Jesse +Jewell +Joghs +Johnson +Jones +Jowers +Joyce +Judge +Jyllian +Kadel +Kanaga +Kaur +Keener +Kelley +Kellogg +Kelly +Kemble +Kemerer +Keppel +Kepplinger +Khan +Kiefer +Kifer +Kimple +King +Kirkson +Knapenberger +Knapp +Koepple +Koster +Kuster +Kuznetsov +Laborde +Lacon +Lafortune +Langston +Larson +Lauffer +Laurenzi +Leach +Lee +Leech +Leichter +Leslie +Lester +Levett +Lewis +Lineman +Linton +Llora +Lloyd +Logue +Lombardi +Lord +Losey +Lowe +Lowstetter +Lucy +Ludwig +Maclagan +Magor +Marcotte +Margaret +Marriman +Marshall +Martins +Mary +Mason +Mathews +Matthews +Mcclymonds +Mccullough +Mccune +McDonald +McDonohugh +Mcfall +Mcintosh +Mckendrick +Mcloskey +Mcmullen +McShain +Mens +Merryman +Metzer +Meyers +Mikhaylov +Mildred +Miller +Millhouse +Mills +Milne +Mingle +Minnie +Mitchell +Moberly +Moon +Moore +Morgan +Morris +Mortland +Mosser +Mueller +Muggins +Mull +Muller +Murphy +Murray +Nash +Neely +Nehling +Newbern +Newton +Nicholas +Nickolson +Northey +Noton +Olphert +Oneal +Oppenheimer +Osteen +Osterweis +Osterwise +Otis +Overstreet +Owen +Owens +Palmer +Parker +Parkinson +Patel +Patterson +Paulson +Pavlov +Paynter +Pearsall +Pennington +Perkins +Pershing +Peters +Petrov +Pfeifer +Philips +Phillips +Picard +Pinney +Poehl +Poley +Polson +Potter +Powell +Power +Powers +Pratt +Prechtl +Prescott +Prevatt +Price +Priebe +Pritchard +Pycroft +Quinn +Quirin +Rader +Rahl +Ramos +Randolph +Ratcliff +Rathen +Rathens +Raub +Ray +Reade +Reichard +Reid +Reighner +Rhinehart +Richards +Richardson +Richter +Rifler +Riggle +Riker +Ringer +Roadman +Roberts +Robertson +Robinson +Roby +Rockwell +Rogers +Rohtin +Rose +Rosensteel +Rowley +Russell +Ryals +Sagan +Sanders +Sandford +Sandys +Sauter +Saylor +Schaeffer +Scherer +Schmidt +Schofield +Schrader +Scott +Sealis +Seelig +Seidner +Semenov +Shafer +Shaffer +Shaner +Shaw +Sheets +Shick +Shirey +Sholl +Shupe +Sidower +Siegrist +Simmons +Simpson +Singh +Skywalker +Sloan +Smail +Smirnov +Smith +Snyder +Sommer +Spock +Stafford +Stahl +Stainforth +Stall +Stamos +Stange +Staymates +Steele +Stephenson +Stern +Stewart +Stocker +Stone +Stough +Straub +Stroble +Stroh +Styles +Sullivan +Sulyard +Summy +Sutton +Swabey +Swarner +Sybilla +Taggart +Tanner +Taylor +Teagarden +Tedrow +Tennant +Thomas +Thomlinson +Thompson +Thomson +Thorley +Tilton +Tireman +Todd +Treeby +Trovato +Turner +Ulery +Ullman +Unk +Vader +Vanleer +Vasilyev +Waldron +Walker +Wallick +Ward +Wardle +Warren +Watson +Webb +Weeter +Weinstein +Weisgarber +Wells +Welty +Wentzel +Werner +Werry +Wheeler +Whirlow +White +Whiteman +Whittier +Wible +Wile +Wilkerson +Wilkinson +Willey +Williams +Williamson +Wilo +Wilson +Winton +Wise +Wolfe +Wolff +Wood +Woodward +Woodworth +Woolery +Woollard +Wright +Yeskey +Young +Zadovsky +Zalack +Zaun +Zeal +Zimmer Zoucks \ No newline at end of file diff --git a/strings/names/lizard_female.txt b/strings/names/lizard_female.txt index cf588df9b1..078ee7bcff 100644 --- a/strings/names/lizard_female.txt +++ b/strings/names/lizard_female.txt @@ -1,163 +1,163 @@ -Adzi -Ah -Ahaht -Ajim -Akeenus -Akish -Akishan -Aleeto -Am -Amussa -An -Anozz -Asheemar -Asska -Awas -Azala -Azbai -Azeez -Azum -Banalz -Bar -Baseenar -Beek -Beekatan -Beekus -Beela -Beelei -Beem -Beewos -Bejeen -Ber -Betzi -Bishalus -Bokeeus -Bur -Bura -Chalaree -Chana -Chanil -Chee -Cheesh -Chimatei -Chirurgeon -Cholasistu -Chuna -Churasu -Crath -Dar -Deeja -Deesei -Deesh -Deetsan -Deetwos -Dooka -Druja -Eepa -Ei -Eix -El -Ereel -Eutei -Gai -Gih -Gilm -Gish -Go -Hal -Hul -Ja -Jaseen -Jasuda -Jeed -Jeen -Kajul -Kal -Kasa -Keel -Keerava -Kiurz -Kud -La -Lee -Lei -Lifts -Liurz -Lurasha -Ma -Mach -Marz -Meedish -Meeh -Meema -Meen -Meena -Meenus -Meerana -Meesei -Meeus -Mei -Milah -Mim -Mota -Mudeska -Muz -Na -Nakuma -Nam -Nassa -Natoo -Neesha -Neetizei -Neetra -Neeus -Niima -Numeen -Nuralg -Nush -Ocheeva -Okur -Olank -On -Onasha -Osheeka -Pasha -Ra -Rana -Raniur -Ree -Reesa -Rei -Sa -Saak -Sanax -Seeba -Seed -Seen -Shah -Shahvee -Shaleez -Shatalg -Sheer -Shei -Sigerthe -Skaleel -Sudie -Tail -Tar -Tasha -Tei -Telixith -Tumma -Veek -Wan -Wazei -Weedum -Weewish -Witseidutsei -Wuja -Wujeeta -Wusha -Xil -Zish +Adzi +Ah +Ahaht +Ajim +Akeenus +Akish +Akishan +Aleeto +Am +Amussa +An +Anozz +Asheemar +Asska +Awas +Azala +Azbai +Azeez +Azum +Banalz +Bar +Baseenar +Beek +Beekatan +Beekus +Beela +Beelei +Beem +Beewos +Bejeen +Ber +Betzi +Bishalus +Bokeeus +Bur +Bura +Chalaree +Chana +Chanil +Chee +Cheesh +Chimatei +Chirurgeon +Cholasistu +Chuna +Churasu +Crath +Dar +Deeja +Deesei +Deesh +Deetsan +Deetwos +Dooka +Druja +Eepa +Ei +Eix +El +Ereel +Eutei +Gai +Gih +Gilm +Gish +Go +Hal +Hul +Ja +Jaseen +Jasuda +Jeed +Jeen +Kajul +Kal +Kasa +Keel +Keerava +Kiurz +Kud +La +Lee +Lei +Lifts +Liurz +Lurasha +Ma +Mach +Marz +Meedish +Meeh +Meema +Meen +Meena +Meenus +Meerana +Meesei +Meeus +Mei +Milah +Mim +Mota +Mudeska +Muz +Na +Nakuma +Nam +Nassa +Natoo +Neesha +Neetizei +Neetra +Neeus +Niima +Numeen +Nuralg +Nush +Ocheeva +Okur +Olank +On +Onasha +Osheeka +Pasha +Ra +Rana +Raniur +Ree +Reesa +Rei +Sa +Saak +Sanax +Seeba +Seed +Seen +Shah +Shahvee +Shaleez +Shatalg +Sheer +Shei +Sigerthe +Skaleel +Sudie +Tail +Tar +Tasha +Tei +Telixith +Tumma +Veek +Wan +Wazei +Weedum +Weewish +Witseidutsei +Wuja +Wujeeta +Wusha +Xil +Zish Zollassa \ No newline at end of file diff --git a/strings/names/lizard_male.txt b/strings/names/lizard_male.txt index 437d124b50..f14f1705ba 100644 --- a/strings/names/lizard_male.txt +++ b/strings/names/lizard_male.txt @@ -1,328 +1,328 @@ -Abijoo -Ah -Ajum -Am -Amusei -An -Anoo -Aojee -Asum -Az -Azeel -Azinar -Azjai -Baar -Banka -Bar -Barnaxi -Batar -Batuus -Beem -Beshnus -Betu -Bex -Bijot -Bimee -Binyaar -Bosekus -Brand -Bun -Bunach -Bunish -Busheeus -Buujhan -Chakuk -Chalish -Chalureel -Chath -Chee -Cheedal -Chilwir -Chitakus -Chiwish -Chulz -Chuna -Da -Dakee -Dan -Dar -Darasken -DarJee -Debameel -Deed -Deegeeta -Deeh -Deekonus -Deekum -Deekus -Deerkaza -Deetum -Demeepa -Depasa -Derkeethus -Deroh -Dezanu -Dreet -Drumarz -Dum -Dunaxith -Effe -Ei -Eidu -Eius -Eiuus -Eix -Eleedal -Er -Esqoo -Etaku -Gah -Gajul -Gam -Geeh -Geel -Geem -Geh -Gei -Gih -Gin -Goh -Gulum -Haj -Han -Haran -Hareeya -Hathei -Heedul -Heem -Hei -Heir -Hixeeh -Huleeya -Huzei -Ilas -Im -Inee -Itan -J'Ram -Ja -Jah -Jaraleet -Jaree -Jas -Jasaiin -Jaseen -Jat -Jee -Jeela -Jeelius -Jeelus -Jeen -Jeer -Jeetum -Jei -Jilux -Jin -Jon -Jul -Julan -Junal -Jush -Juunei -Kai -Kajin -Kamax -Kas -Keema -Keer -Keerasa -Kepanuu -Kia -Kiameed -Kilaya -Kiurz -Kur -Kuz -La -Lah -Lai -Lan -Lara -Leem -Lei -Loh -Lotash -Luh -Lurz -Luteema -Maahi -Madesi -Maheelius -Mahei -Maht -Malz -Marz -Mathei -Maxath -Meej -Meejapa -Meensuda -Meer -Mema -Mere -Metaku -Miharil -Milos -Miun -Mobareed -Mohimeem -Mopakuz -Motuu -Mujeen -Muranatepa -Mush -Muz -Na -Napetui -Nazuux -Nebutil -Neeti -Neetinei -Neetrenaza -Neetzara -Neeus -Nema -Neposh -Netapatuu -Nexith -Nodeeus -Nomu -Nosaleeth -Nowajeem -Noyei -Nulaz -Nur -Obaxith -Okan -Okaw -Okeeh -Oleed -Oleen -Olik -Olink -Onuja -Onurai -Opatieel -Otumeel -Owai -Pachat -Pacheeva -Pad -Paduxi -Pajeen -Parash -Peeradeeh -Pejureel -Petaxai -Pideelus -Pimaxi -Pojeel -Ra -Radithax -Raj -Rareel -Rasha -Redieeus -Ree -Reeh -Reemukeeus -Reenum -Reesa -Reet -Reezal -Resari -Riker -Ru -Rupah -Sakeepa -Sakeeus -Sakka -Saliith -Sar -Schiavas -Seek -Seewul -Sei -Sejaijilax -Shakiis -Shehs -Shei -Silm -Skee -Skeetul -Sureeus -Ta -Taeed -Tah -Taleel -Talen -Tan -Tanaka -Tanan -Tee -Teeba -Teegla -Teeka -Teekeeus -Teemeeta -Teeus -Tehat -Tei -Teinaava -Teineeja -Terezeeus -Tikaasi -Tim -Topeeth -Topith -Tsleeixth -Tul -Tulm -Tun -Ukatsei -Ukawei -Ula -Ulawa -Ullis -Usha -Usheeja -Utadeek -Utamukeeus -Utatul -Uxith -Vara -Veekas -Veenaza -Veezara -Vistha -Vudeelal -Wanan -Wanum -Wayiteh -Weebam -Weeltul -Weer -Wih -Wud -Wuleen -Wulm -Wumeek -Xal -Xemo -Yinz -Yinz'r -Zaw -Ze -Zeen -Zeeus +Abijoo +Ah +Ajum +Am +Amusei +An +Anoo +Aojee +Asum +Az +Azeel +Azinar +Azjai +Baar +Banka +Bar +Barnaxi +Batar +Batuus +Beem +Beshnus +Betu +Bex +Bijot +Bimee +Binyaar +Bosekus +Brand +Bun +Bunach +Bunish +Busheeus +Buujhan +Chakuk +Chalish +Chalureel +Chath +Chee +Cheedal +Chilwir +Chitakus +Chiwish +Chulz +Chuna +Da +Dakee +Dan +Dar +Darasken +DarJee +Debameel +Deed +Deegeeta +Deeh +Deekonus +Deekum +Deekus +Deerkaza +Deetum +Demeepa +Depasa +Derkeethus +Deroh +Dezanu +Dreet +Drumarz +Dum +Dunaxith +Effe +Ei +Eidu +Eius +Eiuus +Eix +Eleedal +Er +Esqoo +Etaku +Gah +Gajul +Gam +Geeh +Geel +Geem +Geh +Gei +Gih +Gin +Goh +Gulum +Haj +Han +Haran +Hareeya +Hathei +Heedul +Heem +Hei +Heir +Hixeeh +Huleeya +Huzei +Ilas +Im +Inee +Itan +J'Ram +Ja +Jah +Jaraleet +Jaree +Jas +Jasaiin +Jaseen +Jat +Jee +Jeela +Jeelius +Jeelus +Jeen +Jeer +Jeetum +Jei +Jilux +Jin +Jon +Jul +Julan +Junal +Jush +Juunei +Kai +Kajin +Kamax +Kas +Keema +Keer +Keerasa +Kepanuu +Kia +Kiameed +Kilaya +Kiurz +Kur +Kuz +La +Lah +Lai +Lan +Lara +Leem +Lei +Loh +Lotash +Luh +Lurz +Luteema +Maahi +Madesi +Maheelius +Mahei +Maht +Malz +Marz +Mathei +Maxath +Meej +Meejapa +Meensuda +Meer +Mema +Mere +Metaku +Miharil +Milos +Miun +Mobareed +Mohimeem +Mopakuz +Motuu +Mujeen +Muranatepa +Mush +Muz +Na +Napetui +Nazuux +Nebutil +Neeti +Neetinei +Neetrenaza +Neetzara +Neeus +Nema +Neposh +Netapatuu +Nexith +Nodeeus +Nomu +Nosaleeth +Nowajeem +Noyei +Nulaz +Nur +Obaxith +Okan +Okaw +Okeeh +Oleed +Oleen +Olik +Olink +Onuja +Onurai +Opatieel +Otumeel +Owai +Pachat +Pacheeva +Pad +Paduxi +Pajeen +Parash +Peeradeeh +Pejureel +Petaxai +Pideelus +Pimaxi +Pojeel +Ra +Radithax +Raj +Rareel +Rasha +Redieeus +Ree +Reeh +Reemukeeus +Reenum +Reesa +Reet +Reezal +Resari +Riker +Ru +Rupah +Sakeepa +Sakeeus +Sakka +Saliith +Sar +Schiavas +Seek +Seewul +Sei +Sejaijilax +Shakiis +Shehs +Shei +Silm +Skee +Skeetul +Sureeus +Ta +Taeed +Tah +Taleel +Talen +Tan +Tanaka +Tanan +Tee +Teeba +Teegla +Teeka +Teekeeus +Teemeeta +Teeus +Tehat +Tei +Teinaava +Teineeja +Terezeeus +Tikaasi +Tim +Topeeth +Topith +Tsleeixth +Tul +Tulm +Tun +Ukatsei +Ukawei +Ula +Ulawa +Ullis +Usha +Usheeja +Utadeek +Utamukeeus +Utatul +Uxith +Vara +Veekas +Veenaza +Veezara +Vistha +Vudeelal +Wanan +Wanum +Wayiteh +Weebam +Weeltul +Weer +Wih +Wud +Wuleen +Wulm +Wumeek +Xal +Xemo +Yinz +Yinz'r +Zaw +Ze +Zeen +Zeeus Zish \ No newline at end of file diff --git a/strings/names/mime.txt b/strings/names/mime.txt index 094987da9d..989cd6f300 100644 --- a/strings/names/mime.txt +++ b/strings/names/mime.txt @@ -1,32 +1,32 @@ -Church Mouse -Hush Foot -Invisible Man -Lemon Mime -Marcel -Marcel Mime -Master-Mime -Mime -Mr Beret -Mr Mime -Mr Mute -Mute -Omerta -Oui Oui -Pantomime -Quiet -Quiet Riot -See Through -Silence -Silencio -Silent Knight -Silent Majority -Silent Night -Silent Sorrow -Silent Step -Silent Mouse -The Unspeakable -Transparency -Unspeakable -Untouchable -Wall Runner -White Face +Church Mouse +Hush Foot +Invisible Man +Lemon Mime +Marcel +Marcel Mime +Master-Mime +Mime +Mr Beret +Mr Mime +Mr Mute +Mute +Omerta +Oui Oui +Pantomime +Quiet +Quiet Riot +See Through +Silence +Silencio +Silent Knight +Silent Majority +Silent Night +Silent Sorrow +Silent Step +Silent Mouse +The Unspeakable +Transparency +Unspeakable +Untouchable +Wall Runner +White Face diff --git a/strings/names/ninjaname.txt b/strings/names/ninjaname.txt index fa0d0f1094..eb470493fa 100644 --- a/strings/names/ninjaname.txt +++ b/strings/names/ninjaname.txt @@ -1,44 +1,44 @@ -Aria -Baki -Blood -Bro -Cyrax -Daemon -Death -Donatello -Eater -Ermac -Fox -Goemon -Hanzo -Hayabusa -Hazuki -Hero -Hien -Hiro -Hiryu -Iga -Koga -Leonardo -McAwesome -McNinja -Michaelangelo -Midnight -Null -Ogre -Phantom -Raiden -Rain -Raphael -Ryu -Saibot -Samurai -Sarutobi -Scorpion -Seven -Shadow -Shredder -Smoke -Splinter -Throat +Aria +Baki +Blood +Bro +Cyrax +Daemon +Death +Donatello +Eater +Ermac +Fox +Goemon +Hanzo +Hayabusa +Hazuki +Hero +Hien +Hiro +Hiryu +Iga +Koga +Leonardo +McAwesome +McNinja +Michaelangelo +Midnight +Null +Ogre +Phantom +Raiden +Rain +Raphael +Ryu +Saibot +Samurai +Sarutobi +Scorpion +Seven +Shadow +Shredder +Smoke +Splinter +Throat Zero \ No newline at end of file diff --git a/strings/names/ninjatitle.txt b/strings/names/ninjatitle.txt index 41c5b338ba..f9776f56fe 100644 --- a/strings/names/ninjatitle.txt +++ b/strings/names/ninjatitle.txt @@ -1,46 +1,46 @@ -Agile -Assassin -Awesome -Black -Crimson -Cruel -Deep -Dr -Dragon -Ender -Grandmaster -Grappler -Gray -Hunter -Initiate -Killer -Liquid -Master -Merciful -Merciless -Nickel -Night -Nightshade -Ninja -Noob -Orphaner -Quick -Remorseless -Rogue -Sensei -Shinobi -Silencing -Silent -Silver -Singing -Slayer -Snake -Solid -Solidus -Stalker -Steel -Strider -Striker -Swift -Ulimate +Agile +Assassin +Awesome +Black +Crimson +Cruel +Deep +Dr +Dragon +Ender +Grandmaster +Grappler +Gray +Hunter +Initiate +Killer +Liquid +Master +Merciful +Merciless +Nickel +Night +Nightshade +Ninja +Noob +Orphaner +Quick +Remorseless +Rogue +Sensei +Shinobi +Silencing +Silent +Silver +Singing +Slayer +Snake +Solid +Solidus +Stalker +Steel +Strider +Striker +Swift +Ulimate Widower \ No newline at end of file diff --git a/strings/names/plasmaman.txt b/strings/names/plasmaman.txt index eb5f8b786c..8cbfc00837 100644 --- a/strings/names/plasmaman.txt +++ b/strings/names/plasmaman.txt @@ -1,118 +1,118 @@ -Actinium -Aluminium -Americium -Antimony -Argon -Arsenic -Astatine -Barium -Berkelium -Beryllium -Bismuth -Bohrium -Boron -Bromine -Cadmium -Caesium -Calcium -Californium -Carbon -Cerium -Chlorine -Chromium -Cobalt -Copernicium -Copper -Curium -Darmstadtium -Dubnium -Dysprosium -Einsteinium -Erbium -Europium -Fermium -Flerovium -Fluorine -Francium -Gadolinium -Gallium -Germanium -Gold -Hafnium -Hassium -Helium -Holmium -Hydrogen -Indium -Iodine -Iridium -Iron -Krypton -Lanthanum -Lawrencium -Lead -Lithium -Livermorium -Lutetium -Magnesium -Manganese -Meitnerium -Mendelevium -Mercury -Molybdenum -Moscovium -Neodymium -Neon -Neptunium -Nickel -Nihonium -Niobium -Nitrogen -Nobelium -Oganesson -Osmium -Oxygen -Palladium -Phosphorus -Platinum -Plutonium -Polonium -Potassium -Praseodymium -Promethium -Protactinium -Radium -Radon -Rhenium -Rhodium -Roentgenium -Rubidium -Ruthenium -Rutherfordium -Samarium -Scandium -Seaborgium -Selenium -Silicon -Silver -Sodium -Strontium -Sulfur -Tantalum -Technetium -Tellurium -Tennessine -Terbium -Thallium -Thorium -Thulium -Tin -Titanium -Tungsten -Uranium -Vanadium -Xenon -Ytterbium -Yttrium -Zinc +Actinium +Aluminium +Americium +Antimony +Argon +Arsenic +Astatine +Barium +Berkelium +Beryllium +Bismuth +Bohrium +Boron +Bromine +Cadmium +Caesium +Calcium +Californium +Carbon +Cerium +Chlorine +Chromium +Cobalt +Copernicium +Copper +Curium +Darmstadtium +Dubnium +Dysprosium +Einsteinium +Erbium +Europium +Fermium +Flerovium +Fluorine +Francium +Gadolinium +Gallium +Germanium +Gold +Hafnium +Hassium +Helium +Holmium +Hydrogen +Indium +Iodine +Iridium +Iron +Krypton +Lanthanum +Lawrencium +Lead +Lithium +Livermorium +Lutetium +Magnesium +Manganese +Meitnerium +Mendelevium +Mercury +Molybdenum +Moscovium +Neodymium +Neon +Neptunium +Nickel +Nihonium +Niobium +Nitrogen +Nobelium +Oganesson +Osmium +Oxygen +Palladium +Phosphorus +Platinum +Plutonium +Polonium +Potassium +Praseodymium +Promethium +Protactinium +Radium +Radon +Rhenium +Rhodium +Roentgenium +Rubidium +Ruthenium +Rutherfordium +Samarium +Scandium +Seaborgium +Selenium +Silicon +Silver +Sodium +Strontium +Sulfur +Tantalum +Technetium +Tellurium +Tennessine +Terbium +Thallium +Thorium +Thulium +Tin +Titanium +Tungsten +Uranium +Vanadium +Xenon +Ytterbium +Yttrium +Zinc Zirconium \ No newline at end of file diff --git a/strings/names/posibrain.txt b/strings/names/posibrain.txt index 119632bd81..ed8a186fd4 100644 --- a/strings/names/posibrain.txt +++ b/strings/names/posibrain.txt @@ -1,47 +1,47 @@ -PBU -HIU -SINA -ARMA -OSI -HBL -MSO -RR -CHRI -CDB -HG -XSI -ORNG -GUN -KOR -MET -FRE -XIS -SLI -PKP -HOG -RZH -GOOF -MRPR -JJR -FIRC -INC -PHL -BGB -ANTR -MIW -WJ -JRD -CHOC -ANCL -JLLO -JNLG -KOS -TKRG -XAL -STLP -CBOS -DUNC -FXMC -DRSD -COI +PBU +HIU +SINA +ARMA +OSI +HBL +MSO +RR +CHRI +CDB +HG +XSI +ORNG +GUN +KOR +MET +FRE +XIS +SLI +PKP +HOG +RZH +GOOF +MRPR +JJR +FIRC +INC +PHL +BGB +ANTR +MIW +WJ +JRD +CHOC +ANCL +JLLO +JNLG +KOS +TKRG +XAL +STLP +CBOS +DUNC +FXMC +DRSD +COI CYBR \ No newline at end of file diff --git a/strings/names/verbs.txt b/strings/names/verbs.txt index 17bc127fd5..fc90f89e40 100644 --- a/strings/names/verbs.txt +++ b/strings/names/verbs.txt @@ -1,632 +1,632 @@ -accept -add -admire -admit -advise -afford -agree -alert -allow -amuse -analyse -announce -annoy -answer -apologise -appear -applaud -appreciate -approve -argue -arrange -arrest -arrive -ask -attach -attack -attempt -attend -attract -avoid -back -bake -balance -ban -bang -bare -bat -bathe -battle -beam -beg -behave -belong -bleach -bless -blind -blink -blot -blush -boast -boil -bolt -bomb -book -bore -borrow -bounce -bow -box -brake -branch -breathe -bruise -brush -bubble -bump -burn -bury -buzz -calculate -call -camp -care -carry -carve -cause -challenge -change -charge -chase -cheat -check -cheer -chew -choke -chop -claim -clap -clean -clear -clip -close -coach -coil -collect -colour -comb -command -communicate -compare -compete -complain -complete -concentrate -concern -confess -confuse -connect -consider -consist -contain -continue -copy -correct -cough -count -cover -crack -crash -crawl -cross -crush -cry -cure -curl -curve -cycle -dam -damage -dance -dare -decay -deceive -decide -decorate -delay -delight -deliver -depend -describe -desert -deserve -destroy -detect -develop -disagree -disappear -disapprove -disarm -discover -dislike -divide -double -doubt -drag -drain -dream -dress -drip -drop -drown -drum -dry -dust -earn -educate -embarrass -employ -empty -encourage -end -enjoy -enter -entertain -escape -examine -excite -excuse -exercise -exist -expand -expect -explain -explode -extend -face -fade -fail -fancy -fasten -fax -fear -fence -fetch -file -fill -film -fire -fit -fix -flap -flash -float -flood -flow -flower -fold -follow -fool -force -form -found -frame -frighten -fry -gather -gaze -glow -glue -grab -grate -grease -greet -grin -grip -groan -guarantee -guard -guess -guide -hammer -hand -handle -hang -happen -harass -harm -hate -haunt -head -heal -heap -heat -help -hook -hop -hope -hover -hug -hum -hunt -hurry -identify -ignore -imagine -impress -improve -include -increase -influence -inform -inject -injure -instruct -intend -interest -interfere -interrupt -introduce -invent -invite -irritate -itch -jail -jam -jog -join -joke -judge -juggle -jump -kick -kill -kiss -kneel -knit -knock -knot -label -land -last -laugh -launch -learn -level -license -lick -lie -lighten -like -list -listen -live -load -lock -long -look -love -man -manage -march -mark -marry -match -mate -matter -measure -meddle -melt -memorise -mend -messup -milk -mine -miss -mix -moan -moor -mourn -move -muddle -mug -multiply -murder -nail -name -need -nest -nod -note -notice -number -obey -object -observe -obtain -occur -offend -offer -open -order -overflow -owe -own -pack -paddle -paint -park -part -pass -paste -pat -pause -peck -pedal -peel -peep -perform -permit -phone -pick -pinch -pine -place -plan -plant -play -please -plug -point -poke -polish -pop -possess -post -pour -practise -pray -preach -precede -prefer -prepare -present -preserve -press -pretend -prevent -prick -print -produce -program -promise -protect -provide -pull -pump -punch -puncture -punish -push -question -queue -race -radiate -rain -raise -reach -realise -receive -recognise -record -reduce -reflect -refuse -regret -reign -reject -rejoice -relax -release -rely -remain -remember -remind -remove -repair -repeat -replace -reply -report -reproduce -request -rescue -retire -return -rhyme -rinse -risk -rob -rock -roll -rot -rub -ruin -rule -rush -sack -sail -satisfy -save -saw -scare -scatter -scold -scorch -scrape -scratch -scream -screw -scribble -scrub -seal -search -separate -serve -settle -shade -share -shave -shelter -shiver -shock -shop -shrug -sigh -sign -signal -sin -sip -ski -skip -slap -slip -slow -smash -smell -smile -smoke -snatch -sneeze -sniff -snore -snow -soak -soothe -sound -spare -spark -sparkle -spell -spill -spoil -spot -spray -sprout -squash -squeak -squeal -squeeze -stain -stamp -stare -start -stay -steer -step -stir -stitch -stop -store -strap -strengthen -stretch -strip -stroke -stuff -subtract -succeed -suck -suffer -suggest -suit -supply -support -suppose -surprise -surround -suspect -suspend -switch -talk -tame -tap -taste -tease -telephone -tempt -terrify -test -thank -thaw -tick -tickle -tie -time -tip -tire -touch -tour -tow -trace -trade -train -transport -trap -travel -treat -tremble -trick -trip -trot -trouble -trust -try -tug -tumble -turn -twist -type -undress -unfasten -unite -unlock -unpack -untidy -use -vanish -visit -wail -wait -walk -wander -want -warm -warn -wash -waste -watch -water -wave -weigh -welcome -whine -whip -whirl -whisper -whistle -wink -wipe -wish -wobble -wonder -work -worry -wrap -wreck -wrestle -wriggle -yawn -yell -zip +accept +add +admire +admit +advise +afford +agree +alert +allow +amuse +analyse +announce +annoy +answer +apologise +appear +applaud +appreciate +approve +argue +arrange +arrest +arrive +ask +attach +attack +attempt +attend +attract +avoid +back +bake +balance +ban +bang +bare +bat +bathe +battle +beam +beg +behave +belong +bleach +bless +blind +blink +blot +blush +boast +boil +bolt +bomb +book +bore +borrow +bounce +bow +box +brake +branch +breathe +bruise +brush +bubble +bump +burn +bury +buzz +calculate +call +camp +care +carry +carve +cause +challenge +change +charge +chase +cheat +check +cheer +chew +choke +chop +claim +clap +clean +clear +clip +close +coach +coil +collect +colour +comb +command +communicate +compare +compete +complain +complete +concentrate +concern +confess +confuse +connect +consider +consist +contain +continue +copy +correct +cough +count +cover +crack +crash +crawl +cross +crush +cry +cure +curl +curve +cycle +dam +damage +dance +dare +decay +deceive +decide +decorate +delay +delight +deliver +depend +describe +desert +deserve +destroy +detect +develop +disagree +disappear +disapprove +disarm +discover +dislike +divide +double +doubt +drag +drain +dream +dress +drip +drop +drown +drum +dry +dust +earn +educate +embarrass +employ +empty +encourage +end +enjoy +enter +entertain +escape +examine +excite +excuse +exercise +exist +expand +expect +explain +explode +extend +face +fade +fail +fancy +fasten +fax +fear +fence +fetch +file +fill +film +fire +fit +fix +flap +flash +float +flood +flow +flower +fold +follow +fool +force +form +found +frame +frighten +fry +gather +gaze +glow +glue +grab +grate +grease +greet +grin +grip +groan +guarantee +guard +guess +guide +hammer +hand +handle +hang +happen +harass +harm +hate +haunt +head +heal +heap +heat +help +hook +hop +hope +hover +hug +hum +hunt +hurry +identify +ignore +imagine +impress +improve +include +increase +influence +inform +inject +injure +instruct +intend +interest +interfere +interrupt +introduce +invent +invite +irritate +itch +jail +jam +jog +join +joke +judge +juggle +jump +kick +kill +kiss +kneel +knit +knock +knot +label +land +last +laugh +launch +learn +level +license +lick +lie +lighten +like +list +listen +live +load +lock +long +look +love +man +manage +march +mark +marry +match +mate +matter +measure +meddle +melt +memorise +mend +messup +milk +mine +miss +mix +moan +moor +mourn +move +muddle +mug +multiply +murder +nail +name +need +nest +nod +note +notice +number +obey +object +observe +obtain +occur +offend +offer +open +order +overflow +owe +own +pack +paddle +paint +park +part +pass +paste +pat +pause +peck +pedal +peel +peep +perform +permit +phone +pick +pinch +pine +place +plan +plant +play +please +plug +point +poke +polish +pop +possess +post +pour +practise +pray +preach +precede +prefer +prepare +present +preserve +press +pretend +prevent +prick +print +produce +program +promise +protect +provide +pull +pump +punch +puncture +punish +push +question +queue +race +radiate +rain +raise +reach +realise +receive +recognise +record +reduce +reflect +refuse +regret +reign +reject +rejoice +relax +release +rely +remain +remember +remind +remove +repair +repeat +replace +reply +report +reproduce +request +rescue +retire +return +rhyme +rinse +risk +rob +rock +roll +rot +rub +ruin +rule +rush +sack +sail +satisfy +save +saw +scare +scatter +scold +scorch +scrape +scratch +scream +screw +scribble +scrub +seal +search +separate +serve +settle +shade +share +shave +shelter +shiver +shock +shop +shrug +sigh +sign +signal +sin +sip +ski +skip +slap +slip +slow +smash +smell +smile +smoke +snatch +sneeze +sniff +snore +snow +soak +soothe +sound +spare +spark +sparkle +spell +spill +spoil +spot +spray +sprout +squash +squeak +squeal +squeeze +stain +stamp +stare +start +stay +steer +step +stir +stitch +stop +store +strap +strengthen +stretch +strip +stroke +stuff +subtract +succeed +suck +suffer +suggest +suit +supply +support +suppose +surprise +surround +suspect +suspend +switch +talk +tame +tap +taste +tease +telephone +tempt +terrify +test +thank +thaw +tick +tickle +tie +time +tip +tire +touch +tour +tow +trace +trade +train +transport +trap +travel +treat +tremble +trick +trip +trot +trouble +trust +try +tug +tumble +turn +twist +type +undress +unfasten +unite +unlock +unpack +untidy +use +vanish +visit +wail +wait +walk +wander +want +warm +warn +wash +waste +watch +water +wave +weigh +welcome +whine +whip +whirl +whisper +whistle +wink +wipe +wish +wobble +wonder +work +worry +wrap +wreck +wrestle +wriggle +yawn +yell +zip zoom \ No newline at end of file diff --git a/strings/names/wizardfirst.txt b/strings/names/wizardfirst.txt index f1e9a10a58..13dc68c6bd 100644 --- a/strings/names/wizardfirst.txt +++ b/strings/names/wizardfirst.txt @@ -1,37 +1,37 @@ -Alatar -Archchancellor -Boccob -Circe -Dumbledor -Elminister -Gandalf -Grimm -Gulstaff -Houdini -Jim -Kaschei -Khelben -Kreol -Lina -Merlin -Mogan -Mordenkainen -Morgan -Mystryl -Nihilus -Palando -Prospero -Radagast -Raistlin -Rasputin -Rincewind -Saruman -Tenser -Terefi -Tzeentch -Urza -Vaarsuvius -Vecna -Yoda -Zagyg +Alatar +Archchancellor +Boccob +Circe +Dumbledor +Elminister +Gandalf +Grimm +Gulstaff +Houdini +Jim +Kaschei +Khelben +Kreol +Lina +Merlin +Mogan +Mordenkainen +Morgan +Mystryl +Nihilus +Palando +Prospero +Radagast +Raistlin +Rasputin +Rincewind +Saruman +Tenser +Terefi +Tzeentch +Urza +Vaarsuvius +Vecna +Yoda +Zagyg Zul \ No newline at end of file diff --git a/strings/names/wizardsecond.txt b/strings/names/wizardsecond.txt index dd191cfa2b..6daff0f3e7 100644 --- a/strings/names/wizardsecond.txt +++ b/strings/names/wizardsecond.txt @@ -1,40 +1,40 @@ -Dark -Darkmagic -Darko -Gray -Honko -Inverse -le Fay -of Void -Shado -Smith -the All Knowing -the Amazing -the Bandit Killer -the Benevolent -the Blue -the Brown -the Conquerer -the Deathless -the Destroyer -the Dragon Spooker -the Emperor -the Gray -the Great -the Magician -the Powerful -the Raven -the Red -the Remorseful -the Seething -the Sorcelator -the Spiral King -the Unending -the Unstoppable -the Weeping -the White -the Wise -the Wizzard -Unseen -Weatherwax +Dark +Darkmagic +Darko +Gray +Honko +Inverse +le Fay +of Void +Shado +Smith +the All Knowing +the Amazing +the Bandit Killer +the Benevolent +the Blue +the Brown +the Conquerer +the Deathless +the Destroyer +the Dragon Spooker +the Emperor +the Gray +the Great +the Magician +the Powerful +the Raven +the Red +the Remorseful +the Seething +the Sorcelator +the Spiral King +the Unending +the Unstoppable +the Weeping +the White +the Wise +the Wizzard +Unseen +Weatherwax Yagg \ No newline at end of file diff --git a/tools/CreditsTool/remappings.txt b/tools/CreditsTool/remappings.txt index ac57d4b873..18abb0a772 100644 --- a/tools/CreditsTool/remappings.txt +++ b/tools/CreditsTool/remappings.txt @@ -1,20 +1,20 @@ -# To make your name something other than your github name type it in the format " -# e.g. -# Cyberboss Jordan Brown -# To suppress your name from appearing in the credits do " __REMOVE__ -# e.g. -# Cyberboss __REMOVE__ - -tgstation-server Thanks for playing! - -optimumtact oranges -qustinnus Floyd / Qustinnus -catalystfd __REMOVE__ -TheVekter Vekter -ChangelingRain Joan -NewSta1 NewSta -theOperand Miauw -PraiseRatvar Frozenguy5 -FuryMcFlurry Fury McFlurry -vuonojenmustaturska Naksu -praisenarsie Frozenguy5 +# To make your name something other than your github name type it in the format " +# e.g. +# Cyberboss Jordan Brown +# To suppress your name from appearing in the credits do " __REMOVE__ +# e.g. +# Cyberboss __REMOVE__ + +tgstation-server Thanks for playing! + +optimumtact oranges +qustinnus Floyd / Qustinnus +catalystfd __REMOVE__ +TheVekter Vekter +ChangelingRain Joan +NewSta1 NewSta +theOperand Miauw +PraiseRatvar Frozenguy5 +FuryMcFlurry Fury McFlurry +vuonojenmustaturska Naksu +praisenarsie Frozenguy5 diff --git a/tools/Runtime Condenser/Main.cpp b/tools/Runtime Condenser/Main.cpp index 0161bb47a9..239ded0add 100644 --- a/tools/Runtime Condenser/Main.cpp +++ b/tools/Runtime Condenser/Main.cpp @@ -1,418 +1,418 @@ -/* Runtime Condenser by Nodrak - * Cleaned up and refactored by MrStonedOne - * This will sum up identical runtimes into one, giving a total of how many times it occured. The first occurance - * of the runtime will log the source, usr and src, the rest will just add to the total. Infinite loops will - * also be caught and displayed (if any) above the list of runtimes. - * - * How to use: - * 1) Copy and paste your list of runtimes from Dream Daemon into input.exe - * 2) Run RuntimeCondenser.exe - * 3) Open output.txt for a condensed report of the runtimes - * - * How to compile: - * Requires visual c++ compiler 2012 or any linux compiler with c++11 support. - * Windows: - * Normal: cl.exe /EHsc /Ox /Qpar Main.cpp - * Debug: cl.exe /EHsc /Zi Main.cpp - * Linux: - * Normal: g++ -O3 -std=c++11 Main.cpp -o rc - * Debug: g++ -g -Og -std=c++11 Main.cpp -o rc - * Any Compile errors most likely indicate lack of c++11 support. Google how to upgrade or nag coderbus for help.. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -#define PROGRESS_FPS 10 -#define PROGRESS_BAR_INNER_WIDTH 50 -#define LINEBUFFER (32*1024) //32KiB - -using namespace std; - -struct runtime { - string text; - string proc; - string source; - string usr; - string src; - string loc; - unsigned int count; -}; -struct harddel { - string type; - unsigned int count; -}; -//What we use to read input -string * lastLine = new string(); -string * currentLine = new string(); -string * nextLine = new string(); - -//Stores lines we want to keep to print out -unordered_map storedRuntime; -unordered_map storedInfiniteLoop; -unordered_map storedHardDel; - -//Stat tracking stuff for output -unsigned int totalRuntimes = 0; -unsigned int totalInfiniteLoops = 0; -unsigned int totalHardDels = 0; - - -bool endofbuffer = false; -//like substr, but returns an empty string if the string is smaller then start, rather then an exception. -inline string safe_substr(string * S, size_t start = 0, size_t end = string::npos) { - if (start > S->length()) - start = S->length(); - return S->substr(start, end); -} -//getline() is slow as fucking balls. this is quicker because we prefill a buffer rather then read 1 byte at a time searching for newlines, lowering on i/o calls and overhead. (110MB/s vs 40MB/s on a 1.8GB file pre-filled into the disk cache) -//if i wanted to make it even faster, I'd use a reading thread, a new line searching thread, another thread or four for searching for runtimes in the list to see if they are unique, and finally the main thread for displaying the progress bar. but fuck that noise. -inline string * readline(FILE * f) { - static char buf[LINEBUFFER]; - static size_t pos = 0; - static size_t size = 0; - - for (size_t i = pos; i < LINEBUFFER; i++) { - char c = buf[i]; - if (i >= size && (pos || i < LINEBUFFER-1)) { - if (feof(f) || ferror(f)) - break; - if (size && pos) { //move current stuff to start of buffer - size -= pos; - i -= pos; - memmove(buf, &buf[pos], size); - } - //fill remaining buffer - size += fread(&buf[i], 1, LINEBUFFER-size-1, f); - pos = 0; - c = buf[i]; - } - if (c == '\n') { - //trim off any newlines from the start - while (i > pos && (buf[pos] == '\r' || buf[pos] == '\n')) - pos++; - string * s = new string(&buf[pos], i-pos); - pos = i+1; - return s; - } - - } - string * s = new string(&buf[pos], size-pos); - pos = 0; - size = 0; - endofbuffer = true; - return s; -} - -inline void forward_progress(FILE * inputFile) { - delete(lastLine); - lastLine = currentLine; - currentLine = nextLine; - nextLine = readline(inputFile); - //strip out any timestamps. - if (nextLine->length() >= 10) { - if ((*nextLine)[0] == '[' && (*nextLine)[3] == ':' && (*nextLine)[6] == ':' && (*nextLine)[9] == ']') - nextLine->erase(0, 10); - else if (nextLine->length() >= 26 && ((*nextLine)[0] == '[' && (*nextLine)[5] == '-' && (*nextLine)[14] == ':' && (*nextLine)[20] == '.' && (*nextLine)[24] == ']')) - nextLine->erase(0, 26); - } -} -//deallocates to, copys from to to. -inline void string_send(string * &from, string * &to) { - delete(to); - to = new string(*from); -} -inline void printprogressbar(unsigned short progress /*as percent*/) { - double const modifer = 100.0L/(double)PROGRESS_BAR_INNER_WIDTH; - size_t bars = (double)progress/modifer; - cerr << "\r[" << string(bars, '=') << ((progress < 100) ? ">" : "") << string(PROGRESS_BAR_INNER_WIDTH-(bars+((progress < 100) ? 1 : 0)), ' ') << "] " << progress << "%"; - cerr.flush(); -} - -bool readFromFile(bool isstdin) { - //Open file to read - FILE * inputFile = stdin; - if (!isstdin) - inputFile = fopen("Input.txt", "r"); - - if (ferror(inputFile)) - return false; - long long fileLength = 0; - clock_t nextupdate = 0; - if (!isstdin) { - fseek(inputFile, 0, SEEK_END); - fileLength = ftell(inputFile); - fseek(inputFile, 0, SEEK_SET); - nextupdate = clock(); - } - - if (feof(inputFile)) - return false; //empty file - do { - //Update our lines - forward_progress(inputFile); - //progress bar - - if (!isstdin && clock() >= nextupdate) { - int dProgress = (int)(((long double)ftell(inputFile) / (long double)fileLength) * 100.0L); - printprogressbar(dProgress); - nextupdate = clock() + (CLOCKS_PER_SEC/PROGRESS_FPS); - } - //Found a runtime! - if (safe_substr(currentLine, 0, 14) == "runtime error:") { - if (currentLine->length() <= 17) { //empty runtime, check next line. - //runtime is on the line before this one. (byond bug) - if (nextLine->length() < 2) { - string_send(lastLine, nextLine); - } - forward_progress(inputFile); - string * tmp = new string("runtime error: " + *currentLine); - string_send(tmp, currentLine); - delete(tmp); - } - //we assign this to the right container in a moment. - unordered_map * storage_container; - - //runtime is actually an infinite loop - if (safe_substr(currentLine, 15, 23) == "Infinite loop suspected" || safe_substr(currentLine, 15, 31) == "Maximum recursion level reached") { - //use our infinite loop container. - storage_container = &storedInfiniteLoop; - totalInfiniteLoops++; - // skip the line about world.loop_checks - forward_progress(inputFile); - string_send(lastLine, currentLine); - } else { - //use the runtime container - storage_container = &storedRuntime; - totalRuntimes++; - } - - string key = *currentLine; - bool procfound = false; //so other things don't have to bother checking for this again. - if (safe_substr(nextLine, 0, 10) == "proc name:") { - key += *nextLine; - procfound = true; - } - - //(get the address of a runtime from (a pointer to a container of runtimes)) to then store in a pointer to a runtime. - //(and who said pointers were hard.) - runtime* R = &((*storage_container)[key]); - - //new - if (R->text != *currentLine) { - R->text = *currentLine; - if (procfound) { - R->proc = *nextLine; - forward_progress(inputFile); - } - R->count = 1; - - //search for source file info - if (safe_substr(nextLine, 2, 12) == "source file:") { - R->source = *nextLine; - //skip again - forward_progress(inputFile); - } - //If we find this, we have new stuff to store - if (safe_substr(nextLine, 2, 4) == "usr:") { - forward_progress(inputFile); - forward_progress(inputFile); - //Store more info - R->usr = *lastLine; - R->src = *currentLine; - if (safe_substr(nextLine, 2, 8) == "src.loc:") { - R->loc = *nextLine; - forward_progress(inputFile); - } - } - - } else { //existed already - R->count++; - if (procfound) - forward_progress(inputFile); - } - - } else if (safe_substr(currentLine, 0, 7) == "Path : ") { - string deltype = safe_substr(currentLine, 7); - if (deltype.substr(deltype.size()-1,1) == " ") //some times they have a single trailing space. - deltype = deltype.substr(0, deltype.size()-1); - - unsigned int failures = strtoul(safe_substr(nextLine, 11).c_str(), NULL, 10); - if (failures <= 0) - continue; - - totalHardDels += failures; - harddel* D = &storedHardDel[deltype]; - if (D->type != deltype) { - D->type = deltype; - D->count = failures; - } else { - D->count += failures; - } - } - } while (!feof(inputFile) || !endofbuffer); //Until end of file - if (!isstdin) - printprogressbar(100); - cerr << endl; - return true; -} - -bool runtimeComp(const runtime &a, const runtime &b) { - return a.count > b.count; -} - -bool hardDelComp(const harddel &a, const harddel &b) { - return a.count > b.count; -} - -bool writeToFile(bool usestdio) { - //Open and clear the file - ostream * output = &cout; - ofstream * outputFile; - if (!usestdio) - output = outputFile = new ofstream("Output.txt", ios::trunc); - - - if(usestdio || outputFile->is_open()) { - *output << "Note: The source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; - if(storedInfiniteLoop.size() > 0) - *output << "Total unique infinite loops: " << storedInfiniteLoop.size() << endl; - - if(totalInfiniteLoops > 0) - *output << "Total infinite loops: " << totalInfiniteLoops << endl << endl; - - *output << "Total unique runtimes: " << storedRuntime.size() << endl; - *output << "Total runtimes: " << totalRuntimes << endl << endl; - if(storedHardDel.size() > 0) - *output << "Total unique hard deletions: " << storedHardDel.size() << endl; - - if(totalHardDels > 0) - *output << "Total hard deletions: " << totalHardDels << endl << endl; - - - //If we have infinite loops, display them first. - if(storedInfiniteLoop.size() > 0) { - vector infiniteLoops; - infiniteLoops.reserve(storedInfiniteLoop.size()); - for (unordered_map::iterator it=storedInfiniteLoop.begin(); it != storedInfiniteLoop.end(); it++) - infiniteLoops.push_back(it->second); - storedInfiniteLoop.clear(); - sort(infiniteLoops.begin(), infiniteLoops.end(), runtimeComp); - *output << "** Infinite loops **"; - for (int i=0; i < infiniteLoops.size(); i++) { - runtime* R = &infiniteLoops[i]; - *output << endl << endl << "The following infinite loop has occurred " << R->count << " time(s).\n"; - *output << R->text << endl; - if(R->proc.length()) - *output << R->proc << endl; - if(R->source.length()) - *output << R->source << endl; - if(R->usr.length()) - *output << R->usr << endl; - if(R->src.length()) - *output << R->src << endl; - if(R->loc.length()) - *output << R->loc << endl; - } - *output << endl << endl; //For spacing - } - - - //Do runtimes next - *output << "** Runtimes **"; - vector runtimes; - runtimes.reserve(storedRuntime.size()); - for (unordered_map::iterator it=storedRuntime.begin(); it != storedRuntime.end(); it++) - runtimes.push_back(it->second); - storedRuntime.clear(); - sort(runtimes.begin(), runtimes.end(), runtimeComp); - for (int i=0; i < runtimes.size(); i++) { - runtime* R = &runtimes[i]; - *output << endl << endl << "The following runtime has occurred " << R->count << " time(s).\n"; - *output << R->text << endl; - if(R->proc.length()) - *output << R->proc << endl; - if(R->source.length()) - *output << R->source << endl; - if(R->usr.length()) - *output << R->usr << endl; - if(R->src.length()) - *output << R->src << endl; - if(R->loc.length()) - *output << R->loc << endl; - } - *output << endl << endl; //For spacing - - //and finally, hard deletes - if(totalHardDels > 0) { - *output << endl << "** Hard deletions **"; - vector hardDels; - hardDels.reserve(storedHardDel.size()); - for (unordered_map::iterator it=storedHardDel.begin(); it != storedHardDel.end(); it++) - hardDels.push_back(it->second); - storedHardDel.clear(); - sort(hardDels.begin(), hardDels.end(), hardDelComp); - for(int i=0; i < hardDels.size(); i++) { - harddel* D = &hardDels[i]; - *output << endl << D->type << " - " << D->count << " time(s).\n"; - } - } - if (!usestdio) { - outputFile->close(); - delete outputFile; - } - } else { - return false; - } - return true; -} - -int main(int argc, const char * argv[]) { - ios_base::sync_with_stdio(false); - ios::sync_with_stdio(false); - bool usestdio = false; - if (argc >= 2 && !strcmp(argv[1], "-s")) - usestdio = true; - - char exit; //Used to stop the program from immediately exiting - cerr << "Reading input.\n"; - if(readFromFile(usestdio)) { - cerr << "Input read successfully!\n"; - } else { - cerr << "Input failed to open, shutting down.\n"; - if (!usestdio) { - cerr << "\nEnter any letter to quit.\n"; - exit = cin.get(); - } - return 1; - } - - - cerr << "Writing output.\n"; - if(writeToFile(usestdio)) { - cerr << "Output was successful!\n"; - if (!usestdio) { - cerr << "\nEnter any letter to quit.\n"; - exit = cin.get(); - } - return 0; - } else { - cerr << "The output file could not be opened, shutting down.\n"; - if (!usestdio) { - cerr << "\nEnter any letter to quit.\n"; - exit = cin.get(); - } - return 1; - } - - return 0; -} +/* Runtime Condenser by Nodrak + * Cleaned up and refactored by MrStonedOne + * This will sum up identical runtimes into one, giving a total of how many times it occured. The first occurance + * of the runtime will log the source, usr and src, the rest will just add to the total. Infinite loops will + * also be caught and displayed (if any) above the list of runtimes. + * + * How to use: + * 1) Copy and paste your list of runtimes from Dream Daemon into input.exe + * 2) Run RuntimeCondenser.exe + * 3) Open output.txt for a condensed report of the runtimes + * + * How to compile: + * Requires visual c++ compiler 2012 or any linux compiler with c++11 support. + * Windows: + * Normal: cl.exe /EHsc /Ox /Qpar Main.cpp + * Debug: cl.exe /EHsc /Zi Main.cpp + * Linux: + * Normal: g++ -O3 -std=c++11 Main.cpp -o rc + * Debug: g++ -g -Og -std=c++11 Main.cpp -o rc + * Any Compile errors most likely indicate lack of c++11 support. Google how to upgrade or nag coderbus for help.. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#define PROGRESS_FPS 10 +#define PROGRESS_BAR_INNER_WIDTH 50 +#define LINEBUFFER (32*1024) //32KiB + +using namespace std; + +struct runtime { + string text; + string proc; + string source; + string usr; + string src; + string loc; + unsigned int count; +}; +struct harddel { + string type; + unsigned int count; +}; +//What we use to read input +string * lastLine = new string(); +string * currentLine = new string(); +string * nextLine = new string(); + +//Stores lines we want to keep to print out +unordered_map storedRuntime; +unordered_map storedInfiniteLoop; +unordered_map storedHardDel; + +//Stat tracking stuff for output +unsigned int totalRuntimes = 0; +unsigned int totalInfiniteLoops = 0; +unsigned int totalHardDels = 0; + + +bool endofbuffer = false; +//like substr, but returns an empty string if the string is smaller then start, rather then an exception. +inline string safe_substr(string * S, size_t start = 0, size_t end = string::npos) { + if (start > S->length()) + start = S->length(); + return S->substr(start, end); +} +//getline() is slow as fucking balls. this is quicker because we prefill a buffer rather then read 1 byte at a time searching for newlines, lowering on i/o calls and overhead. (110MB/s vs 40MB/s on a 1.8GB file pre-filled into the disk cache) +//if i wanted to make it even faster, I'd use a reading thread, a new line searching thread, another thread or four for searching for runtimes in the list to see if they are unique, and finally the main thread for displaying the progress bar. but fuck that noise. +inline string * readline(FILE * f) { + static char buf[LINEBUFFER]; + static size_t pos = 0; + static size_t size = 0; + + for (size_t i = pos; i < LINEBUFFER; i++) { + char c = buf[i]; + if (i >= size && (pos || i < LINEBUFFER-1)) { + if (feof(f) || ferror(f)) + break; + if (size && pos) { //move current stuff to start of buffer + size -= pos; + i -= pos; + memmove(buf, &buf[pos], size); + } + //fill remaining buffer + size += fread(&buf[i], 1, LINEBUFFER-size-1, f); + pos = 0; + c = buf[i]; + } + if (c == '\n') { + //trim off any newlines from the start + while (i > pos && (buf[pos] == '\r' || buf[pos] == '\n')) + pos++; + string * s = new string(&buf[pos], i-pos); + pos = i+1; + return s; + } + + } + string * s = new string(&buf[pos], size-pos); + pos = 0; + size = 0; + endofbuffer = true; + return s; +} + +inline void forward_progress(FILE * inputFile) { + delete(lastLine); + lastLine = currentLine; + currentLine = nextLine; + nextLine = readline(inputFile); + //strip out any timestamps. + if (nextLine->length() >= 10) { + if ((*nextLine)[0] == '[' && (*nextLine)[3] == ':' && (*nextLine)[6] == ':' && (*nextLine)[9] == ']') + nextLine->erase(0, 10); + else if (nextLine->length() >= 26 && ((*nextLine)[0] == '[' && (*nextLine)[5] == '-' && (*nextLine)[14] == ':' && (*nextLine)[20] == '.' && (*nextLine)[24] == ']')) + nextLine->erase(0, 26); + } +} +//deallocates to, copys from to to. +inline void string_send(string * &from, string * &to) { + delete(to); + to = new string(*from); +} +inline void printprogressbar(unsigned short progress /*as percent*/) { + double const modifer = 100.0L/(double)PROGRESS_BAR_INNER_WIDTH; + size_t bars = (double)progress/modifer; + cerr << "\r[" << string(bars, '=') << ((progress < 100) ? ">" : "") << string(PROGRESS_BAR_INNER_WIDTH-(bars+((progress < 100) ? 1 : 0)), ' ') << "] " << progress << "%"; + cerr.flush(); +} + +bool readFromFile(bool isstdin) { + //Open file to read + FILE * inputFile = stdin; + if (!isstdin) + inputFile = fopen("Input.txt", "r"); + + if (ferror(inputFile)) + return false; + long long fileLength = 0; + clock_t nextupdate = 0; + if (!isstdin) { + fseek(inputFile, 0, SEEK_END); + fileLength = ftell(inputFile); + fseek(inputFile, 0, SEEK_SET); + nextupdate = clock(); + } + + if (feof(inputFile)) + return false; //empty file + do { + //Update our lines + forward_progress(inputFile); + //progress bar + + if (!isstdin && clock() >= nextupdate) { + int dProgress = (int)(((long double)ftell(inputFile) / (long double)fileLength) * 100.0L); + printprogressbar(dProgress); + nextupdate = clock() + (CLOCKS_PER_SEC/PROGRESS_FPS); + } + //Found a runtime! + if (safe_substr(currentLine, 0, 14) == "runtime error:") { + if (currentLine->length() <= 17) { //empty runtime, check next line. + //runtime is on the line before this one. (byond bug) + if (nextLine->length() < 2) { + string_send(lastLine, nextLine); + } + forward_progress(inputFile); + string * tmp = new string("runtime error: " + *currentLine); + string_send(tmp, currentLine); + delete(tmp); + } + //we assign this to the right container in a moment. + unordered_map * storage_container; + + //runtime is actually an infinite loop + if (safe_substr(currentLine, 15, 23) == "Infinite loop suspected" || safe_substr(currentLine, 15, 31) == "Maximum recursion level reached") { + //use our infinite loop container. + storage_container = &storedInfiniteLoop; + totalInfiniteLoops++; + // skip the line about world.loop_checks + forward_progress(inputFile); + string_send(lastLine, currentLine); + } else { + //use the runtime container + storage_container = &storedRuntime; + totalRuntimes++; + } + + string key = *currentLine; + bool procfound = false; //so other things don't have to bother checking for this again. + if (safe_substr(nextLine, 0, 10) == "proc name:") { + key += *nextLine; + procfound = true; + } + + //(get the address of a runtime from (a pointer to a container of runtimes)) to then store in a pointer to a runtime. + //(and who said pointers were hard.) + runtime* R = &((*storage_container)[key]); + + //new + if (R->text != *currentLine) { + R->text = *currentLine; + if (procfound) { + R->proc = *nextLine; + forward_progress(inputFile); + } + R->count = 1; + + //search for source file info + if (safe_substr(nextLine, 2, 12) == "source file:") { + R->source = *nextLine; + //skip again + forward_progress(inputFile); + } + //If we find this, we have new stuff to store + if (safe_substr(nextLine, 2, 4) == "usr:") { + forward_progress(inputFile); + forward_progress(inputFile); + //Store more info + R->usr = *lastLine; + R->src = *currentLine; + if (safe_substr(nextLine, 2, 8) == "src.loc:") { + R->loc = *nextLine; + forward_progress(inputFile); + } + } + + } else { //existed already + R->count++; + if (procfound) + forward_progress(inputFile); + } + + } else if (safe_substr(currentLine, 0, 7) == "Path : ") { + string deltype = safe_substr(currentLine, 7); + if (deltype.substr(deltype.size()-1,1) == " ") //some times they have a single trailing space. + deltype = deltype.substr(0, deltype.size()-1); + + unsigned int failures = strtoul(safe_substr(nextLine, 11).c_str(), NULL, 10); + if (failures <= 0) + continue; + + totalHardDels += failures; + harddel* D = &storedHardDel[deltype]; + if (D->type != deltype) { + D->type = deltype; + D->count = failures; + } else { + D->count += failures; + } + } + } while (!feof(inputFile) || !endofbuffer); //Until end of file + if (!isstdin) + printprogressbar(100); + cerr << endl; + return true; +} + +bool runtimeComp(const runtime &a, const runtime &b) { + return a.count > b.count; +} + +bool hardDelComp(const harddel &a, const harddel &b) { + return a.count > b.count; +} + +bool writeToFile(bool usestdio) { + //Open and clear the file + ostream * output = &cout; + ofstream * outputFile; + if (!usestdio) + output = outputFile = new ofstream("Output.txt", ios::trunc); + + + if(usestdio || outputFile->is_open()) { + *output << "Note: The source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; + if(storedInfiniteLoop.size() > 0) + *output << "Total unique infinite loops: " << storedInfiniteLoop.size() << endl; + + if(totalInfiniteLoops > 0) + *output << "Total infinite loops: " << totalInfiniteLoops << endl << endl; + + *output << "Total unique runtimes: " << storedRuntime.size() << endl; + *output << "Total runtimes: " << totalRuntimes << endl << endl; + if(storedHardDel.size() > 0) + *output << "Total unique hard deletions: " << storedHardDel.size() << endl; + + if(totalHardDels > 0) + *output << "Total hard deletions: " << totalHardDels << endl << endl; + + + //If we have infinite loops, display them first. + if(storedInfiniteLoop.size() > 0) { + vector infiniteLoops; + infiniteLoops.reserve(storedInfiniteLoop.size()); + for (unordered_map::iterator it=storedInfiniteLoop.begin(); it != storedInfiniteLoop.end(); it++) + infiniteLoops.push_back(it->second); + storedInfiniteLoop.clear(); + sort(infiniteLoops.begin(), infiniteLoops.end(), runtimeComp); + *output << "** Infinite loops **"; + for (int i=0; i < infiniteLoops.size(); i++) { + runtime* R = &infiniteLoops[i]; + *output << endl << endl << "The following infinite loop has occurred " << R->count << " time(s).\n"; + *output << R->text << endl; + if(R->proc.length()) + *output << R->proc << endl; + if(R->source.length()) + *output << R->source << endl; + if(R->usr.length()) + *output << R->usr << endl; + if(R->src.length()) + *output << R->src << endl; + if(R->loc.length()) + *output << R->loc << endl; + } + *output << endl << endl; //For spacing + } + + + //Do runtimes next + *output << "** Runtimes **"; + vector runtimes; + runtimes.reserve(storedRuntime.size()); + for (unordered_map::iterator it=storedRuntime.begin(); it != storedRuntime.end(); it++) + runtimes.push_back(it->second); + storedRuntime.clear(); + sort(runtimes.begin(), runtimes.end(), runtimeComp); + for (int i=0; i < runtimes.size(); i++) { + runtime* R = &runtimes[i]; + *output << endl << endl << "The following runtime has occurred " << R->count << " time(s).\n"; + *output << R->text << endl; + if(R->proc.length()) + *output << R->proc << endl; + if(R->source.length()) + *output << R->source << endl; + if(R->usr.length()) + *output << R->usr << endl; + if(R->src.length()) + *output << R->src << endl; + if(R->loc.length()) + *output << R->loc << endl; + } + *output << endl << endl; //For spacing + + //and finally, hard deletes + if(totalHardDels > 0) { + *output << endl << "** Hard deletions **"; + vector hardDels; + hardDels.reserve(storedHardDel.size()); + for (unordered_map::iterator it=storedHardDel.begin(); it != storedHardDel.end(); it++) + hardDels.push_back(it->second); + storedHardDel.clear(); + sort(hardDels.begin(), hardDels.end(), hardDelComp); + for(int i=0; i < hardDels.size(); i++) { + harddel* D = &hardDels[i]; + *output << endl << D->type << " - " << D->count << " time(s).\n"; + } + } + if (!usestdio) { + outputFile->close(); + delete outputFile; + } + } else { + return false; + } + return true; +} + +int main(int argc, const char * argv[]) { + ios_base::sync_with_stdio(false); + ios::sync_with_stdio(false); + bool usestdio = false; + if (argc >= 2 && !strcmp(argv[1], "-s")) + usestdio = true; + + char exit; //Used to stop the program from immediately exiting + cerr << "Reading input.\n"; + if(readFromFile(usestdio)) { + cerr << "Input read successfully!\n"; + } else { + cerr << "Input failed to open, shutting down.\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } + return 1; + } + + + cerr << "Writing output.\n"; + if(writeToFile(usestdio)) { + cerr << "Output was successful!\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } + return 0; + } else { + cerr << "The output file could not be opened, shutting down.\n"; + if (!usestdio) { + cerr << "\nEnter any letter to quit.\n"; + exit = cin.get(); + } + return 1; + } + + return 0; +} diff --git a/tools/UnstandardnessTestForDM/readme.txt b/tools/UnstandardnessTestForDM/readme.txt index 3fb04ee4df..8d3c5168dc 100644 --- a/tools/UnstandardnessTestForDM/readme.txt +++ b/tools/UnstandardnessTestForDM/readme.txt @@ -1,4 +1,4 @@ -the compiled exe file for the Unstandardness text for DM program is in: -UnstandardnessTestForDM\bin\Debug\UnstandardnessTestForDM.exe - -You have to move it to the root folder (where the dme file is) and run it from there for it to work. +the compiled exe file for the Unstandardness text for DM program is in: +UnstandardnessTestForDM\bin\Debug\UnstandardnessTestForDM.exe + +You have to move it to the root folder (where the dme file is) and run it from there for it to work. diff --git a/tools/WebhookProcessor/secret.php b/tools/WebhookProcessor/secret.php index 9b8a27d490..9d1dc5a903 100644 --- a/tools/WebhookProcessor/secret.php +++ b/tools/WebhookProcessor/secret.php @@ -1,133 +1,133 @@ - Date: Sun, 20 Dec 2020 19:25:49 -0700 Subject: [PATCH 029/165] changes --- .../configuration/entries/respawns.dm | 18 ++++++++++++++++++ code/modules/mob/dead/new_player/new_player.dm | 4 +++- code/modules/mob/dead/observer/respawn.dm | 11 +++++++++++ config/respawns.txt | 9 +++++++++ 4 files changed, 41 insertions(+), 1 deletion(-) diff --git a/code/controllers/configuration/entries/respawns.dm b/code/controllers/configuration/entries/respawns.dm index d92f4ec394..69e48ed820 100644 --- a/code/controllers/configuration/entries/respawns.dm +++ b/code/controllers/configuration/entries/respawns.dm @@ -27,3 +27,21 @@ /// Observing penalizes for respawns, not just joining. /datum/config_entry/flag/respawn_penalty_includes_observe config_entry_value = FALSE + +/// Minutes from roundstart before someone can respawn +/datum/config_entry/flag/respawn_minimum_delay_roundstart + config_entry_value = 30.0 + integer = FALSE + +/// Gamemode config tags that are banned from respawning +/datum/config_entry/keyed_list/respawn_chaos_gamemodes + key_mode = KEY_MODE_TEXT + value_mode = VALUE_MODE_FLAG + +/datum/config_entry/keyed_list/respawn_chaos_gamemodes/ValidateListEntry(key_name, key_value) + . = ..() + return . && (key_name in config.modes) + +/datum/config_entry/keyed_list/respawn_chaos_gamemodes/preprocess_key(key) + . = ..() + return lowertext(key) diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 7acf6ad32c..72ec3d06f6 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -294,7 +294,9 @@ ready = PLAYER_NOT_READY return FALSE - var/this_is_like_playing_right = alert(src,"Are you sure you wish to observe? You will not be able to play this round!","Player Setup","Yes","No") + var/mintime = max(CONFIG_GET(number/respawn_delay), (SSticker.round_start_time + (CONFIG_GET(number/respawn_minimum_delay_roundstart) * 600)) - world.time, 0) + + var/this_is_like_playing_right = alert(src,"Are you sure you wish to observe? You will not be able to respawn for [round(mintime / 600, 0.1)] minutes!!","Player Setup","Yes","No") if(QDELETED(src) || !src.client || this_is_like_playing_right != "Yes") ready = PLAYER_NOT_READY diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index a31fdd4bf4..d882e8d474 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -122,6 +122,16 @@ to_chat(src, "You cannot respawn as you have enabled DNR.") return + var/roundstart_timeleft = world.time - (SSticker.round_start_time + (CONFIG_GET(number/respawn_minimum_delay_roundstart) * 600)) + if(roundstart_timeleft > 0) + to_chat(src, "It's been too short of a time since the round started! Please wait [CEILING(roundstart_timeleft / 600, 0.1)] more minutes.") + return + + var/list/modes = CONFIG_GET(keyed_list/respawn_chaos_gamemodes) + if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag])) + to_chat(src, "The current mode tag, [SSticker.mode.config_tag], is not eligible for respawn.") + return + var/timeleft = time_left_to_respawn() if(timeleft) to_chat(src, "It's been too short of a time since you died/observed! Please wait [round(timeleft / 600, 0.1)] more minutes.") @@ -149,6 +159,7 @@ Remember to take heed of rules regarding round knowledge - notably, that ALL past lives are forgotten. \ Any character you join as has NO knowledge of round events unless specified otherwise by an admin.") + message_admins("[key_name_admin(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") transfer_to_lobby() diff --git a/config/respawns.txt b/config/respawns.txt index 46a4bb0e07..337a691b07 100644 --- a/config/respawns.txt +++ b/config/respawns.txt @@ -18,3 +18,12 @@ ALLOW_NON_ASSISTANT_RESPAWN ## Observing is considered a respawn for the purposes of role lockouts. Defaults to disabled. When disabled, only RESPAWNING rather than returning from observe locks you out. # RESPAWN_PENALTY_INCLUDES_OBSERVE + +## Time in minutes from round start before respawn is enabled +RESPAWN_MINIMUM_DELAY_ROUNDSTART 30.0 + +## Gamemode (config tags!) banlist for respawn +RESPAWN_CHAOS_GAMEMODES WIZARD +RESPAWN_CHAOS_GAMEMODES NUCLEAR +RESPAWN_CHAOS_GAMEMODES CLONWOPS +RESPAWN_CHOAS_GAMEMODES REVOLUTION From eef2a323ed689c03d6510c77aae15c24ed721c0d Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 00:11:19 -0700 Subject: [PATCH 030/165] ok --- code/modules/mob/dead/observer/respawn.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index d882e8d474..dc825af57e 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -128,7 +128,7 @@ return var/list/modes = CONFIG_GET(keyed_list/respawn_chaos_gamemodes) - if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag])) + if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag)])) to_chat(src, "The current mode tag, [SSticker.mode.config_tag], is not eligible for respawn.") return From 97824f4030d5abb1763dad198b03c412cf7447fa Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 00:14:48 -0700 Subject: [PATCH 031/165] ok --- code/modules/mob/dead/observer/respawn.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index dc825af57e..bca4d6ab0d 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -128,7 +128,7 @@ return var/list/modes = CONFIG_GET(keyed_list/respawn_chaos_gamemodes) - if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag)])) + if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag)]) to_chat(src, "The current mode tag, [SSticker.mode.config_tag], is not eligible for respawn.") return From 7da6979b543f1cf0923f8c77db81854236b08e01 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 00:28:03 -0700 Subject: [PATCH 032/165] ok --- code/controllers/configuration/entries/respawns.dm | 2 +- code/modules/mob/dead/observer/respawn.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/configuration/entries/respawns.dm b/code/controllers/configuration/entries/respawns.dm index 69e48ed820..40c7d248a4 100644 --- a/code/controllers/configuration/entries/respawns.dm +++ b/code/controllers/configuration/entries/respawns.dm @@ -29,7 +29,7 @@ config_entry_value = FALSE /// Minutes from roundstart before someone can respawn -/datum/config_entry/flag/respawn_minimum_delay_roundstart +/datum/config_entry/number/respawn_minimum_delay_roundstart config_entry_value = 30.0 integer = FALSE diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index bca4d6ab0d..f966051ed3 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -122,12 +122,12 @@ to_chat(src, "You cannot respawn as you have enabled DNR.") return - var/roundstart_timeleft = world.time - (SSticker.round_start_time + (CONFIG_GET(number/respawn_minimum_delay_roundstart) * 600)) + var/roundstart_timeleft = (SSticker.round_start_time + (CONFIG_GET(number/respawn_minimum_delay_roundstart) * 600)) - world.time if(roundstart_timeleft > 0) to_chat(src, "It's been too short of a time since the round started! Please wait [CEILING(roundstart_timeleft / 600, 0.1)] more minutes.") return - var/list/modes = CONFIG_GET(keyed_list/respawn_chaos_gamemodes) + var/list/banned_modes = CONFIG_GET(keyed_list/respawn_chaos_gamemodes) if(SSticker.mode && banned_modes[lowertext(SSticker.mode.config_tag)]) to_chat(src, "The current mode tag, [SSticker.mode.config_tag], is not eligible for respawn.") return From d3e224d9c14d540e9d4845f844dda47e928b6af8 Mon Sep 17 00:00:00 2001 From: raspy-on-osu Date: Mon, 21 Dec 2020 04:54:19 -0500 Subject: [PATCH 033/165] init --- code/game/machinery/doors/windowdoor.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index bed006d0b5..7847c3757e 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -67,9 +67,9 @@ /obj/machinery/door/window/proc/open_and_close() open() if(src.check_access(null)) - sleep(50) + sleep(60) else //secure doors close faster - sleep(20) + sleep(40) close() /obj/machinery/door/window/Bumped(atom/movable/AM) From 3d897e8fc140c0bd283ecc95799941d78f8d5d73 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 21 Dec 2020 17:15:51 +0000 Subject: [PATCH 034/165] fixes tail entwining --- code/modules/mob/living/living.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 0c7855ee16..fcc1d734a3 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -264,9 +264,9 @@ return FALSE /mob/living/carbon/human/has_tail() - if(!dna || !dna.features) + if(!dna || !dna.species) return ..() - var/list/L = dna.features // caches list because i refuse to type it out and because performance + var/list/L = dna.species.mutant_bodyparts // caches list because i refuse to type it out and because performance return (L["mam_tail"] && (L["mam_tail"] != "None")) || (L["tail_human"] && (L["tail_human"] != "None")) || (L["tail_lizard"] && (L["tail_lizard"] != "None")) /mob/living/start_pulling(atom/movable/AM, state, force = pull_force, supress_message = FALSE) From 0e7a597a2bff5651e4b4dcaa82d6807566f63b69 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 10:27:28 -0700 Subject: [PATCH 035/165] alright --- code/controllers/subsystem/input.dm | 1 + code/game/objects/items/puzzle_pieces.dm | 3 +-- code/modules/keybindings/setup.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm index 9b292a219d..28505c70f8 100644 --- a/code/controllers/subsystem/input.dm +++ b/code/controllers/subsystem/input.dm @@ -93,6 +93,7 @@ SUBSYSTEM_DEF(input) user.full_macro_assert() /datum/controller/subsystem/input/fire() + set waitfor = FALSE var/list/clients = GLOB.clients // Let's sing the list cache song for(var/i in 1 to clients.len) var/client/C = clients[i] diff --git a/code/game/objects/items/puzzle_pieces.dm b/code/game/objects/items/puzzle_pieces.dm index 648ba27897..d0fd4dc3f6 100644 --- a/code/game/objects/items/puzzle_pieces.dm +++ b/code/game/objects/items/puzzle_pieces.dm @@ -137,8 +137,7 @@ AM.anchored = TRUE flick("laserbox_burn", AM) trigger() - sleep(15) - qdel(AM) + QDEL_IN(src, 15) // snowflake code until undertile elements /obj/item/pressure_plate/hologrid/hide() diff --git a/code/modules/keybindings/setup.dm b/code/modules/keybindings/setup.dm index 81c59d481e..b5f09c65ca 100644 --- a/code/modules/keybindings/setup.dm +++ b/code/modules/keybindings/setup.dm @@ -5,7 +5,7 @@ SHOULD_NOT_SLEEP(TRUE) /datum/proc/keyLoop(client/user) // Called once every frame - //SHOULD_NOT_SLEEP(TRUE) + SHOULD_NOT_SLEEP(TRUE) /client/verb/fix_macros() set name = "Fix Keybindings" From b71665882077fb6d5ed8a6c68aef37597c43e92f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 21 Dec 2020 11:30:16 -0600 Subject: [PATCH 036/165] Automatic changelog generation for PR #13819 [ci skip] --- html/changelogs/AutoChangeLog-pr-13819.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13819.yml diff --git a/html/changelogs/AutoChangeLog-pr-13819.yml b/html/changelogs/AutoChangeLog-pr-13819.yml new file mode 100644 index 0000000000..77b1ec9a3d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13819.yml @@ -0,0 +1,5 @@ +author: "Hatterhat" +delete-after: True +changes: + - bugfix: "The survival dagger light on the sprite now actually turns on and off." + - balance: "The survival dagger in the glaive kit that can also be bought by itself is now better at butchering things." From 2ca997e3398d9b75a0b563e08bb3e381be568461 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 21 Dec 2020 20:19:26 +0000 Subject: [PATCH 037/165] fix --- code/modules/surgery/bodyparts/_bodyparts.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index f706dd10d9..cd0ac28daf 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -699,6 +699,8 @@ else if(species_id in GLOB.greyscale_limb_types) //should they have greyscales? base_bp_icon = DEFAULT_BODYPART_ICON_ORGANIC + else + base_bp_icon = DEFAULT_BODYPART_ICON if(base_bp_icon != DEFAULT_BODYPART_ICON) color_src = mut_colors ? MUTCOLORS : ((H.dna.skin_tone_override && S.use_skintones == USE_SKINTONES_GRAYSCALE_CUSTOM) ? CUSTOM_SKINTONE : SKINTONE) From ca6df2999872be93af52305fe47eea8095532269 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 13:42:33 -0700 Subject: [PATCH 038/165] Update death.dm --- code/modules/mob/living/death.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index 24e91f6051..688b0cf63e 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -66,8 +66,8 @@ GLOB.alive_mob_list -= src if(!gibbed) GLOB.dead_mob_list += src - if(mind?.key) - var/datum/preferences/P = GLOB.preferences_datums[ckey(mind.key)] + if(ckey) + var/datum/preferences/P = GLOB.preferences_datums[ckey] if(P) P.respawn_time_of_death = world.time set_drugginess(0) From 1b11005e0958d21e874e52a15dbf28b7b799f54e Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 13:51:27 -0700 Subject: [PATCH 039/165] fix --- code/modules/cargo/supplypod.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/cargo/supplypod.dm b/code/modules/cargo/supplypod.dm index efac62c930..6169c4d3f0 100644 --- a/code/modules/cargo/supplypod.dm +++ b/code/modules/cargo/supplypod.dm @@ -74,6 +74,7 @@ bluespace = TRUE explosionSize = list(0,0,1,2) landingDelay = 25 //Longer than others + reverseOptionList = list("Mobs"=TRUE,"Objects"=FALSE,"Anchored"=FALSE,"Underfloor"=FALSE,"Wallmounted"=FALSE,"Floors"=FALSE,"Walls"=FALSE) /obj/structure/closet/supplypod/centcompod style = STYLE_CENTCOM From ee9cf20aec6507b6d914269b6d156f6e60cc60f2 Mon Sep 17 00:00:00 2001 From: Artur Date: Tue, 22 Dec 2020 00:25:59 +0200 Subject: [PATCH 040/165] Awaken --- code/modules/antagonists/bloodsucker/bloodsucker_powers.dm | 6 ++++++ code/modules/antagonists/bloodsucker/powers/go_home.dm | 1 + code/modules/antagonists/bloodsucker/powers/masquerade.dm | 1 + 3 files changed, 8 insertions(+) diff --git a/code/modules/antagonists/bloodsucker/bloodsucker_powers.dm b/code/modules/antagonists/bloodsucker/bloodsucker_powers.dm index 26c8bd5949..2fb7a2ccca 100644 --- a/code/modules/antagonists/bloodsucker/bloodsucker_powers.dm +++ b/code/modules/antagonists/bloodsucker/bloodsucker_powers.dm @@ -30,6 +30,7 @@ var/can_be_staked = FALSE // Only Feed can happen with a stake in you. var/cooldown_static = FALSE // Feed, Masquerade, and One-Shot powers don't improve their cooldown. //var/not_bloodsucker = FALSE // This goes to Vassals or Hunters, but NOT bloodsuckers. + var/must_be_concious = TRUE //Can't use this ability while unconcious. /datum/action/bloodsucker/New() if(bloodcost > 0) @@ -101,6 +102,11 @@ if(display_error) to_chat(owner, "Garlic in your blood is interfering with your powers!") return FALSE + if(must_be_concious) + if(owner.stat != CONSCIOUS) + if(display_error) + to_chat(owner, "You can't do this while you are unconcious!") + return FALSE // Incap? if(must_be_capacitated) var/mob/living/L = owner diff --git a/code/modules/antagonists/bloodsucker/powers/go_home.dm b/code/modules/antagonists/bloodsucker/powers/go_home.dm index c46a7fce6c..a8060ad07e 100644 --- a/code/modules/antagonists/bloodsucker/powers/go_home.dm +++ b/code/modules/antagonists/bloodsucker/powers/go_home.dm @@ -16,6 +16,7 @@ can_use_in_torpor = TRUE must_be_capacitated = TRUE can_be_immobilized = TRUE + must_be_concious = FALSE /datum/action/bloodsucker/gohome/CheckCanUse(display_error) . = ..() diff --git a/code/modules/antagonists/bloodsucker/powers/masquerade.dm b/code/modules/antagonists/bloodsucker/powers/masquerade.dm index d83f938e3f..f4ce531ef0 100644 --- a/code/modules/antagonists/bloodsucker/powers/masquerade.dm +++ b/code/modules/antagonists/bloodsucker/powers/masquerade.dm @@ -27,6 +27,7 @@ warn_constant_cost = TRUE can_use_in_torpor = TRUE // Masquerade is maybe the only one that can do this. It stops your healing. cooldown_static = TRUE + must_be_concious = FALSE // NOTE: Firing off vulgar powers disables your Masquerade! From 0646d3f2852611eab3ea7a0edaefbbbb6f621d4a Mon Sep 17 00:00:00 2001 From: kiwedespars <47008095+kiwedespars@users.noreply.github.com> Date: Mon, 21 Dec 2020 15:07:25 -0800 Subject: [PATCH 041/165] nerf... --- code/modules/antagonists/changeling/powers/mutations.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/changeling/powers/mutations.dm b/code/modules/antagonists/changeling/powers/mutations.dm index 90eaeb57ac..574ebf66a1 100644 --- a/code/modules/antagonists/changeling/powers/mutations.dm +++ b/code/modules/antagonists/changeling/powers/mutations.dm @@ -689,8 +689,8 @@ wound_enhancement = 6 var/fast_enhancement = 6 var/fast_wound_enhancement = 6 - var/slow_enhancement = 20 - var/slow_wound_enhancement = 20 + var/slow_enhancement = 12 + var/slow_wound_enhancement = 15 silent = TRUE inherited_trait = TRAIT_CHUNKYFINGERS // how do you expect to shoot anyone with bone covered hands secondary_trait = TRAIT_MAULER // just punch them idiot From 97e4aad75f4b40556cc07b60b7ff17da095ba10c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 17:14:22 -0700 Subject: [PATCH 042/165] changes --- .../mob/living/carbon/human/human_defines.dm | 53 +++++++++++++++---- .../modules/mob/living/living_active_parry.dm | 2 +- .../mob/living/living_blocking_parrying.dm | 2 + code/modules/mob/living/living_defines.dm | 4 ++ code/modules/mob/living/living_mobility.dm | 9 ---- code/modules/mob/living/living_signals.dm | 20 +++++++ tgstation.dme | 1 + 7 files changed, 72 insertions(+), 19 deletions(-) create mode 100644 code/modules/mob/living/living_signals.dm diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 89a4570e8d..81c518d29a 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -14,6 +14,7 @@ blocks_emissive = EMISSIVE_BLOCK_UNIQUE block_parry_data = /datum/block_parry_data/unarmed/human + default_block_parry_data = /datum/block_parry_data/unarmed/pugilist //Hair colour and style var/hair_color = "000" @@ -98,20 +99,54 @@ parry_failed_clickcd_duration = 0.4 parry_data = list( // yeah it's snowflake - "HUMAN_PARRY_STAGGER" = 3 SECONDS, - "HUMAN_PARRY_PUNCH" = TRUE, - "HUMAN_PARRY_MININUM_EFFICIENCY" = 0.9 + "UNARMED_PARRY_STAGGER" = 3 SECONDS, + "UNARMED_PARRY_PUNCH" = TRUE, + "UNARMED_PARRY_MININUM_EFFICIENCY" = 90 ) -/mob/living/carbon/human/on_active_parry(mob/living/owner, atom/object, damage, attack_text, attack_type, armour_penetration, mob/attacker, def_zone, list/block_return, parry_efficiency, parry_time) +/mob/living/on_active_parry(mob/living/owner, atom/object, damage, attack_text, attack_type, armour_penetration, mob/attacker, def_zone, list/block_return, parry_efficiency, parry_time) var/datum/block_parry_data/D = return_block_parry_datum(block_parry_data) + . = ..() if(!owner.Adjacent(attacker)) - return ..() - if(parry_efficiency < D.parry_data["HUMAN_PARRY_MINIMUM_EFFICIENCY"]) - return ..() + return + if(parry_efficiency < D.parry_data["UNARMED_PARRY_MINIMUM_EFFICIENCY"]) + return visible_message("[src] strikes back perfectly at [attacker], staggering them!") - if(D.parry_data["HUMAN_PARRY_PUNCH"]) + if(D.parry_data["UNARMED_PARRY_PUNCH"]) UnarmedAttack(attacker, TRUE, INTENT_HARM, ATTACK_IS_PARRY_COUNTERATTACK | ATTACK_IGNORE_ACTION | ATTACK_IGNORE_CLICKDELAY | NO_AUTO_CLICKDELAY_HANDLING) var/mob/living/L = attacker if(istype(L)) - L.Stagger(D.parry_data["HUMAN_PARRY_STAGGER"]) + L.Stagger(D.parry_data["UNARMED_PARRY_STAGGER"]) + +/// Unarmed parry data for pugilists +/datum/block_parry_data/unarmed/pugilist + parry_respect_clickdelay = FALSE + parry_stamina_cost = 4 + parry_attack_types = ATTACK_TYPE_UNARMED | ATTACK_TYPE_PROJECTILE | ATTACK_TYPE_TACKLE | ATTACK_TYPE_THROWN | ATTACK_TYPE_MELEE + parry_flags = PARRY_DEFAULT_HANDLE_FEEDBACK | PARRY_LOCK_ATTACKING + + parry_time_windup = 0 + parry_time_spindown = 0 + parry_time_active = 5 + + parry_time_perfect = 1.5 + parry_time_perfect_leeway = 1.5 + parry_imperfect_falloff_percent = 20 + parry_efficiency_perfect = 100 + parry_efficiency_perfect_override = list( + "[ATTACK_TYPE_PROJECTILE_TEXT]" = 60, + ) + + parry_efficiency_considered_successful = 0.01 + parry_efficiency_to_counterattack = 0.01 + parry_max_attacks = INFINITY + parry_failed_cooldown_duration = 3 SECONDS + parry_failed_stagger_duration = 0 + parry_cooldown = 0 + parry_failed_clickcd_duration = 0.8 + + parry_data = list( // yeah it's snowflake + "UNARMED_PARRY_STAGGER" = 3 SECONDS, + "UNARMED_PARRY_PUNCH" = TRUE, + "UNARMED_PARRY_MININUM_EFFICIENCY" = 90 + ) diff --git a/code/modules/mob/living/living_active_parry.dm b/code/modules/mob/living/living_active_parry.dm index 7353add745..16855d6f22 100644 --- a/code/modules/mob/living/living_active_parry.dm +++ b/code/modules/mob/living/living_active_parry.dm @@ -127,7 +127,7 @@ handle_parry_ending_effects(data, effect_text) parrying = NOT_PARRYING parry_start_time = 0 - parry_end_time_last = world.time + parry_end_time_last = world.time + (successful? 0 : data.parry_failed_cooldown_duration) successful_parries = null /** diff --git a/code/modules/mob/living/living_blocking_parrying.dm b/code/modules/mob/living/living_blocking_parrying.dm index 08ef674b33..e290956873 100644 --- a/code/modules/mob/living/living_blocking_parrying.dm +++ b/code/modules/mob/living/living_blocking_parrying.dm @@ -154,6 +154,8 @@ GLOBAL_LIST_EMPTY(block_parry_data) var/parry_failed_stagger_duration = 3.5 SECONDS /// Clickdelay duration post-parry if you fail to parry an attack var/parry_failed_clickcd_duration = 2 SECONDS + /// Parry cooldown post-parry if failed. This is ADDED to parry_cooldown!!! + var/parry_failed_cooldown_duration = 0 SECONDS /** * Quirky proc to get average of flags in list that are in attack_type because why is attack_type a flag. diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm index 5621fab9c1..d4ccc63b34 100644 --- a/code/modules/mob/living/living_defines.dm +++ b/code/modules/mob/living/living_defines.dm @@ -32,6 +32,10 @@ // Combat - Blocking/Parrying system /// Our block_parry_data for unarmed blocks/parries. Currently only used for parrying, as unarmed block isn't implemented yet. YOU MUST RUN [get_block_parry_data(this)] INSTEAD OF DIRECTLY ACCESSING! var/datum/block_parry_data/block_parry_data = /datum/block_parry_data // defaults to *something* because [combat_flags] dictates whether or not we can unarmed block/parry. + /// Default + var/datum/block_parry_data/default_block_parry_data = /datum/block_parry_data + /// If we're a pugilist + var/datum/block_parry_data/pugilist_block_parry_data = /datum/block_parry_data/unarmed/pugilist // Blocking /// The item the user is actively blocking with if any. var/obj/item/active_block_item diff --git a/code/modules/mob/living/living_mobility.dm b/code/modules/mob/living/living_mobility.dm index 62c23cca9b..2256a93fa1 100644 --- a/code/modules/mob/living/living_mobility.dm +++ b/code/modules/mob/living/living_mobility.dm @@ -1,12 +1,3 @@ -/// IN THE FUTURE, WE WILL PROBABLY REFACTOR TO LESSEN THE NEED FOR UPDATE_MOBILITY, BUT FOR NOW.. WE CAN START DOING THIS. -/// FOR BLOCKING MOVEMENT, USE TRAIT_MOBILITY_NOMOVE AS MUCH AS POSSIBLE. IT WILL MAKE REFACTORS IN THE FUTURE EASIER. -/mob/living/ComponentInitialize() - . = ..() - RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOMOVE), .proc/update_mobility) - RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOPICKUP), .proc/update_mobility) - RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOUSE), .proc/update_mobility) - RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOREST), .proc/update_mobility) - RegisterSignal(src, SIGNAL_TRAIT(TRAIT_LIVING_NO_DENSITY), .proc/update_density) //Stuff like mobility flag updates, resting updates, etc. diff --git a/code/modules/mob/living/living_signals.dm b/code/modules/mob/living/living_signals.dm new file mode 100644 index 0000000000..0eb83658d7 --- /dev/null +++ b/code/modules/mob/living/living_signals.dm @@ -0,0 +1,20 @@ +/// IN THE FUTURE, WE WILL PROBABLY REFACTOR TO LESSEN THE NEED FOR UPDATE_MOBILITY, BUT FOR NOW.. WE CAN START DOING THIS. +/// FOR BLOCKING MOVEMENT, USE TRAIT_MOBILITY_NOMOVE AS MUCH AS POSSIBLE. IT WILL MAKE REFACTORS IN THE FUTURE EASIER. +/mob/living/ComponentInitialize() + . = ..() + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOMOVE), .proc/update_mobility) + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOPICKUP), .proc/update_mobility) + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOUSE), .proc/update_mobility) + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_MOBILITY_NOREST), .proc/update_mobility) + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_LIVING_NO_DENSITY), .proc/update_density) + RegisterSignal(src, SIGNAL_TRAIT(TRAIT_PUGILIST), .proc/update_pugilism) + +/mob/living/proc/update_pugilism() + if(HAS_TRAIT(src, TRAIT_PUGILIST)) + combat_flags |= COMBAT_FLAG_UNARMED_PARRY + block_parry_data = pugilist_block_parry_data + else + var/initial_combat_flags = initial(combat_flags) + if(!(initial_combat_flags & COMBAT_FLAG_UNARMED_PARRY)) + combat_flags &= ~COMBAT_FLAG_UNARMED_PARRY + block_parry_data = default_block_parry_data diff --git a/tgstation.dme b/tgstation.dme index bac0ffbdd3..d5dc1f279c 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2471,6 +2471,7 @@ #include "code\modules\mob\living\living_defines.dm" #include "code\modules\mob\living\living_mobility.dm" #include "code\modules\mob\living\living_movement.dm" +#include "code\modules\mob\living\living_signals.dm" #include "code\modules\mob\living\living_sprint.dm" #include "code\modules\mob\living\login.dm" #include "code\modules\mob\living\logout.dm" From 5ff244a48c9d2fbee58b58462d6606dfe8512cb3 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 17:20:44 -0700 Subject: [PATCH 043/165] t --- code/modules/mob/living/carbon/human/human_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 81c518d29a..0c9919ffba 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -134,7 +134,7 @@ parry_imperfect_falloff_percent = 20 parry_efficiency_perfect = 100 parry_efficiency_perfect_override = list( - "[ATTACK_TYPE_PROJECTILE_TEXT]" = 60, + ATTACK_TYPE_PROJECTILE_TEXT = 60, ) parry_efficiency_considered_successful = 0.01 From ea554b88a4cbbebea6bf90068f1fed1c6a6bc9bd Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 17:31:28 -0700 Subject: [PATCH 044/165] ok --- code/modules/mob/living/carbon/human/human_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 0c9919ffba..2e8641b43e 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -140,7 +140,7 @@ parry_efficiency_considered_successful = 0.01 parry_efficiency_to_counterattack = 0.01 parry_max_attacks = INFINITY - parry_failed_cooldown_duration = 3 SECONDS + parry_failed_cooldown_duration = 1.5 SECONDS parry_failed_stagger_duration = 0 parry_cooldown = 0 parry_failed_clickcd_duration = 0.8 From 000e52515706c0c08cefe90fe0033e613a70b8ea Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:11:54 -0700 Subject: [PATCH 045/165] ok --- code/game/atoms.dm | 18 ------------------ code/modules/client/client_procs.dm | 19 +++++++++++++++++-- html/statbrowser.html | 2 +- 3 files changed, 18 insertions(+), 21 deletions(-) diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 9607dc4dce..7fbfe48f4e 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -1143,21 +1143,3 @@ */ /atom/proc/setClosed() return - -///Passes Stat Browser Panel clicks to the game and calls client click on an atom -/atom/Topic(href, list/href_list) - . = ..() - if(!usr?.client) - return - var/client/usr_client = usr.client - var/list/paramslist = list() - if(href_list["statpanel_item_shiftclick"]) - paramslist["shift"] = "1" - if(href_list["statpanel_item_ctrlclick"]) - paramslist["ctrl"] = "1" - if(href_list["statpanel_item_altclick"]) - paramslist["alt"] = "1" - if(href_list["statpanel_item_click"]) - // first of all make sure we valid - var/mouseparams = list2params(paramslist) - usr_client.Click(src, loc, null, mouseparams) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 267ee3a5e1..4d706c4907 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -101,6 +101,10 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( keyUp(keycode) return + if(href_list["statpanel_item_target"]) + handle_statpanel_click(href_list) + return + // Tgui Topic middleware if(tgui_Topic(href_list)) return @@ -141,6 +145,17 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( ..() //redirect to hsrc.Topic() +/client/proc/handle_statpanel_click(list/href_list) + var/atom/target = locate(href_list["statpanel_item_target"]) + var/list/paramslist = list() + if(href_list["statpanel_item_shiftclick"]) + paramslist["shift"] = "1" + if(href_list["statpanel_item_ctrlclick"]) + paramslist["ctrl"] = "1" + if(href_list["statpanel_item_altclick"]) + paramslist["alt"] = "1" + Click(target, target.loc, null, paramslist, FALSE, "statpanel") + /client/proc/is_content_unlocked() if(!prefs.unlock_content) to_chat(src, "Become a BYOND member to access member-perks and features, as well as support the engine that makes this game possible. Only 10 bucks for 3 months! Click Here to find out more.") @@ -798,7 +813,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( message_admins("Proxy Detection: [key_name_admin(src)] IP intel rated [res.intel*100]% likely to be a Proxy/VPN.") ip_intel = res.intel -/client/Click(atom/object, atom/location, control, params, ignore_spam = FALSE) +/client/Click(atom/object, atom/location, control, params, ignore_spam = FALSE, extra_info) if(last_click > world.time - world.tick_lag) return last_click = world.time @@ -851,7 +866,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( return if(prefs.log_clicks) - log_click(object, location, control, params, src) + log_click(object, location, control, params, src, extra_info? "clicked ([extra_info])" : null) if (prefs.hotkeys) // If hotkey mode is enabled, then clicking the map will automatically diff --git a/html/statbrowser.html b/html/statbrowser.html index 346a198746..e7d49ceebc 100644 --- a/html/statbrowser.html +++ b/html/statbrowser.html @@ -875,7 +875,7 @@ function draw_listedturf() { // rather than every onmousedown getting the "part" of the last entry. return function(e) { e.preventDefault(); - clickcatcher = "?src=" + part[1] + ";statpanel_item_click=1"; + clickcatcher = "?src=_statpanel_;statpanel_item_target=" + part[1] + ";statpanel_item_click=1"; if(e.shiftKey){ clickcatcher += ";statpanel_item_shiftclick=1"; } From 221a98d27b229f1a24079fdc6a92bc22583c9acc Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:25:00 -0700 Subject: [PATCH 046/165] how'd this ever work --- code/modules/client/client_procs.dm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 4d706c4907..c4cbb43bdf 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -147,14 +147,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( /client/proc/handle_statpanel_click(list/href_list) var/atom/target = locate(href_list["statpanel_item_target"]) - var/list/paramslist = list() - if(href_list["statpanel_item_shiftclick"]) - paramslist["shift"] = "1" - if(href_list["statpanel_item_ctrlclick"]) - paramslist["ctrl"] = "1" - if(href_list["statpanel_item_altclick"]) - paramslist["alt"] = "1" - Click(target, target.loc, null, paramslist, FALSE, "statpanel") + Click(target, target.loc, null, "shift=[href_list["statpanel_item_shiftclick"]?1:0]&ctrl=[href_list["statpanel_item_ctrlclick"]?1:0]&alt=[href_list["statpanel_item_altclick"]?1:0]", FALSE, "statpanel") /client/proc/is_content_unlocked() if(!prefs.unlock_content) From 9b83ae564a88836db0053fa388b805db34c2617e Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:31:55 -0700 Subject: [PATCH 047/165] e --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index c4cbb43bdf..c854358373 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -147,7 +147,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( /client/proc/handle_statpanel_click(list/href_list) var/atom/target = locate(href_list["statpanel_item_target"]) - Click(target, target.loc, null, "shift=[href_list["statpanel_item_shiftclick"]?1:0]&ctrl=[href_list["statpanel_item_ctrlclick"]?1:0]&alt=[href_list["statpanel_item_altclick"]?1:0]", FALSE, "statpanel") + Click(target, target.loc, null, "[href_list["statpanel_item_shiftclick"]?["shift=1;"]:null][href_list["statpanel_item_ctrlclick"]?["ctrl=1;"]:null]&alt=[href_list["statpanel_item_altclick"]?["alt=1;"]:null]", FALSE, "statpanel") /client/proc/is_content_unlocked() if(!prefs.unlock_content) From 13f9bbef01c53b2f2c6b2ebb62f038fd34d1a7b0 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:36:12 -0700 Subject: [PATCH 048/165] paramlist --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index c854358373..53ae0f5574 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -147,7 +147,7 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( /client/proc/handle_statpanel_click(list/href_list) var/atom/target = locate(href_list["statpanel_item_target"]) - Click(target, target.loc, null, "[href_list["statpanel_item_shiftclick"]?["shift=1;"]:null][href_list["statpanel_item_ctrlclick"]?["ctrl=1;"]:null]&alt=[href_list["statpanel_item_altclick"]?["alt=1;"]:null]", FALSE, "statpanel") + Click(target, target.loc, null, "[href_list["statpanel_item_shiftclick"]?"shift=1;":null][href_list["statpanel_item_ctrlclick"]?"ctrl=1;":null]&alt=[href_list["statpanel_item_altclick"]?"alt=1;":null]", FALSE, "statpanel") /client/proc/is_content_unlocked() if(!prefs.unlock_content) From 911e4f7008f2a1f28bda4f0d9d411d25cb1ac0ca Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:39:19 -0700 Subject: [PATCH 049/165] Update movement.dm --- code/modules/keybindings/keybind/movement.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/keybindings/keybind/movement.dm b/code/modules/keybindings/keybind/movement.dm index d3a0e98def..296b127cb4 100644 --- a/code/modules/keybindings/keybind/movement.dm +++ b/code/modules/keybindings/keybind/movement.dm @@ -124,7 +124,8 @@ return TRUE /datum/keybinding/living/hold_sprint - hotkey_keys = list("Shift") + hotkey_keys = list() + classic_keys = list() name = "hold_sprint" full_name = "Sprint (hold down)" description = "Hold down to sprint" @@ -144,7 +145,8 @@ return TRUE /datum/keybinding/living/toggle_sprint - hotkey_keys = list() + hotkey_keys = list("Shift") + classic_keys = list("Shift") name = "toggle_sprint" full_name = "Sprint (toggle)" description = "Press to toggle sprint" From 310d4d573b46f6cbf93c3767d446b00e57b9dee1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:46:00 -0700 Subject: [PATCH 050/165] Update death.dm --- code/modules/mob/living/carbon/death.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/death.dm b/code/modules/mob/living/carbon/death.dm index c3e849efa6..ee2f945b65 100644 --- a/code/modules/mob/living/carbon/death.dm +++ b/code/modules/mob/living/carbon/death.dm @@ -5,7 +5,7 @@ silent = FALSE losebreath = 0 - if(!gibbed) + if(!gibbed && !HAS_TRAIT(src, TRAIT_DEATHCOMA)) emote("deathgasp") . = ..() From 9ad59c00c269b4c54c87a7d4a7a6c414692cd67f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:46:59 -0700 Subject: [PATCH 051/165] Update tips.txt --- strings/tips.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strings/tips.txt b/strings/tips.txt index 2039b30359..5336f767a5 100644 --- a/strings/tips.txt +++ b/strings/tips.txt @@ -237,7 +237,7 @@ As a Changeling, you can absorb someone by strangling them and using the Absorb As a Changeling, absorbing someone will give you their full memory. This can include things such as a Traitor's uplink, thus absorbing one will allow you to access the Traitor uplink and buy toys for your Changeling self to abuse. As a Changeling, absorbing another Changeling will permanently boost your chemical reserve, allow you to pick more abilities, and make the victim unable to revive. Be careful when exposing your identity to other Changelings, as they may be out of those wonderful benefits. As a Changeling, BZ gas will dramatically slow down or even halt your natural chemical regeneration, be sure to avoid it at all costs as some lunatics may try and flood portions of the station to deal with you. -As a Changeling, death is not the end for you! You can revive after two minutes from being dead by triggering your stasis ability, and then waiting for the prompt to resurrect yourself to show up. +As a Changeling, death is not the end for you! You can revive after 40 seconds from being dead by triggering your stasis ability, and then waiting for the prompt to resurrect yourself to show up. As a Changeling, your Regenerate Limbs power will quickly heal all of your wounds, but they'll still leave scars. Changelings can use Fleshmend to get rid of scars, or you can ingest Carpotoxin to get rid of them like a normal person. As a Cultist, do not cause too much chaos before your objective is completed. If the shuttle gets called too soon, you may not have enough time to win. As a Cultist, your team starts off very weak, but if necessary can quickly convert everything they have into raw power. Make sure you have the numbers and equipment to support going loud, or the cult will fall flat on its face. @@ -300,4 +300,4 @@ Laser pointers can be upgraded by replacing its micro laser with a better one fr Being out of combat mode makes makes you deal less damage to people and objects when attacking. This stacks with the penalty incurred by resting. Resting makes you deal less damage to people and objects when attacking. This stacks with the penalty incurred by being out of combat mode. You do not regenerate as much stamina while in combat mode. Resting (being on the ground) makes you regenerate stamina faster. -Remember to be in combat mode while in combat, as otherwise you will be penalized by taking more incoming damage and dealing less damage to your adversary. +Keybinds can be reassigned in character setup on the keybindings tab. This is extremely useful, especially if you know how to use independent binds. From d5ea33a22458313778254e9c3121de4b05a18f29 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:48:53 -0700 Subject: [PATCH 052/165] Update sillytips.txt --- strings/sillytips.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/strings/sillytips.txt b/strings/sillytips.txt index e6710de95e..8e28284534 100644 --- a/strings/sillytips.txt +++ b/strings/sillytips.txt @@ -23,7 +23,6 @@ Plenty of things that aren't traditionally considered weapons can still be used DEATH IS IMMINENT! This game is older than most of the people playing it. Do not go gentle into that good night. -Flashbangs can weaken blob tiles, allowing for you and the crew to easily destroy them. Just the tip? You can grab someone by clicking on them with the grab intent, then upgrade the grab by clicking on them once more. An aggressive grab will momentarily stun someone, allow you to place Mekhi on a table by clicking on it, or throw them by toggling on throwing. Some people are unable to read text on a game where half of it is based on text. @@ -42,8 +41,7 @@ Mhelp is basically useless, and never used correctly. Being a Mentor just means Toxins Bombs are not the only way to get RnD points. However, nobody will ever do any other method to get sci points... Plasma men are a powerful race with many perks! No really, I swear! So what if they need an "ERP Plasma room" to fuck, who cares! As a Cargo Tech make sure to always buy a tesla to sell back to CC. They love those those. Trust me! -Help. -Maints. +;HELP MAINT Admins always regret meme options in their polls. Putting cat ears on securitrons makes them table people and nya. Mekhi isn't a cat, but he still goes on the table, just roll with it. As a Changeling, you can live without a head as they are merely vestigal to you, now, finally, you can be a Dullahan without it being Halloween. From c341c2448c7bcdddc1fda34aa8f77456514c225f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:50:57 -0700 Subject: [PATCH 053/165] Delete admin_nicknames.txt --- strings/admin_nicknames.txt | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 strings/admin_nicknames.txt diff --git a/strings/admin_nicknames.txt b/strings/admin_nicknames.txt deleted file mode 100644 index 76198b6c05..0000000000 --- a/strings/admin_nicknames.txt +++ /dev/null @@ -1,2 +0,0 @@ -Badmin -Spanmin \ No newline at end of file From 458f0e4491fcebd699ba6907f849f3f8b1fb9887 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:51:52 -0700 Subject: [PATCH 054/165] Update deadsay.dm --- code/modules/admin/verbs/deadsay.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/modules/admin/verbs/deadsay.dm b/code/modules/admin/verbs/deadsay.dm index e3937e19b6..1cddbe9509 100644 --- a/code/modules/admin/verbs/deadsay.dm +++ b/code/modules/admin/verbs/deadsay.dm @@ -23,13 +23,6 @@ var/rendered = "DEAD: [uppertext(holder.rank)]([src.holder.fakekey ? pick(nicknames) : src.key]) says, \"[emoji_parse(msg)]\"" - // var/rank_name = holder.rank - // var/admin_name = key - // if(holder.fakekey) - // rank_name = pick(strings("admin_nicknames.json", "ranks", "config")) please use this soon. - // admin_name = pick(strings("admin_nicknames.json", "names", "config")) - // var/rendered = "DEAD: [rank_name]([admin_name]) says, \"[emoji_parse(msg)]\"" - for (var/mob/M in GLOB.player_list) if(isnewplayer(M)) continue From 5715ea97cebf4edadc0e19d6c7640bdbb7f580ca Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:52:44 -0700 Subject: [PATCH 055/165] Update holder2.dm --- code/modules/admin/holder2.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/admin/holder2.dm b/code/modules/admin/holder2.dm index 09f9664295..c3a2f69a5a 100644 --- a/code/modules/admin/holder2.dm +++ b/code/modules/admin/holder2.dm @@ -147,6 +147,8 @@ GLOBAL_PROTECT(href_token) return 0 /datum/admins/vv_edit_var(var_name, var_value) + if(var_name == NAMEOF(src, fakekey)) + return ..() return FALSE //nice try trialmin /* From 2463aa49127347cc340295cda5a032480a5513bb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 21 Dec 2020 22:57:57 -0600 Subject: [PATCH 056/165] Automatic changelog generation for PR #13823 [ci skip] --- html/changelogs/AutoChangeLog-pr-13823.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13823.yml diff --git a/html/changelogs/AutoChangeLog-pr-13823.yml b/html/changelogs/AutoChangeLog-pr-13823.yml new file mode 100644 index 0000000000..35d70339f7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13823.yml @@ -0,0 +1,4 @@ +author: "MrJWhit" +delete-after: True +changes: + - tweak: "Christmas starts on the 18th now" From 0a276f43fdb0085035d933717d6bcda38aeec451 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 21 Dec 2020 23:13:39 -0600 Subject: [PATCH 057/165] Automatic changelog generation for PR #13773 [ci skip] --- html/changelogs/AutoChangeLog-pr-13773.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13773.yml diff --git a/html/changelogs/AutoChangeLog-pr-13773.yml b/html/changelogs/AutoChangeLog-pr-13773.yml new file mode 100644 index 0000000000..498ac42561 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13773.yml @@ -0,0 +1,6 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - tweak: "Zeolites now use gold rather then uranium for catalyst" + - tweak: "Zeolites are not as hard to make ph wise" + - tweak: "Making Zeolites heats up the beaker less allowing for better control" From 7dfaacc5636df0160eab84117b5d486455912466 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 21 Dec 2020 23:17:44 -0600 Subject: [PATCH 058/165] Automatic changelog generation for PR #13815 [ci skip] --- html/changelogs/AutoChangeLog-pr-13815.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13815.yml diff --git a/html/changelogs/AutoChangeLog-pr-13815.yml b/html/changelogs/AutoChangeLog-pr-13815.yml new file mode 100644 index 0000000000..630ca9d7f7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13815.yml @@ -0,0 +1,4 @@ +author: "Yakumo Chen" +delete-after: True +changes: + - balance: "Slime Jelly is no longer obtainable from slimepeople. Go ask Xenobio" From d72617e7d7fef3d24d1d43b35369a399340a59d4 Mon Sep 17 00:00:00 2001 From: Artur Date: Tue, 22 Dec 2020 12:35:21 +0200 Subject: [PATCH 059/165] Fixes mint machine --- code/modules/mining/mint.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mining/mint.dm b/code/modules/mining/mint.dm index 57a79553c3..2a8e0f2516 100644 --- a/code/modules/mining/mint.dm +++ b/code/modules/mining/mint.dm @@ -81,11 +81,10 @@ STOP_PROCESSING(SSmachines, src) icon_state = "coinpress0" -/obj/machinery/mineral/mint/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, \ - datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) - ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open) +/obj/machinery/mineral/mint/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, ui_key, "Mint", name, ui_x, ui_y, master_ui, state) + ui = new(user, src, "Mint", name) ui.open() /obj/machinery/mineral/mint/ui_data() From c55d668f8e6bffa0a8d001a018793d2cba4449ed Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 09:16:11 -0600 Subject: [PATCH 060/165] Automatic changelog generation for PR #13825 [ci skip] --- html/changelogs/AutoChangeLog-pr-13825.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13825.yml diff --git a/html/changelogs/AutoChangeLog-pr-13825.yml b/html/changelogs/AutoChangeLog-pr-13825.yml new file mode 100644 index 0000000000..ae82c1cd8e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13825.yml @@ -0,0 +1,4 @@ +author: "raspy-on-osu" +delete-after: True +changes: + - tweak: "windoor open length" From 745656241ddd6420da91e0e99bb1c3c88d13e028 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:32:12 -0600 Subject: [PATCH 061/165] Automatic changelog generation for PR #13832 [ci skip] --- html/changelogs/AutoChangeLog-pr-13832.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13832.yml diff --git a/html/changelogs/AutoChangeLog-pr-13832.yml b/html/changelogs/AutoChangeLog-pr-13832.yml new file mode 100644 index 0000000000..756edb7657 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13832.yml @@ -0,0 +1,4 @@ +author: "Arturlang" +delete-after: True +changes: + - bugfix: "Bloodsuckers tresspass ability can no longer work while they are not awake." From e4669280c5d6aed1a344072bfe7c4bc724bc0e18 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:32:29 -0600 Subject: [PATCH 062/165] Automatic changelog generation for PR #13828 [ci skip] --- html/changelogs/AutoChangeLog-pr-13828.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13828.yml diff --git a/html/changelogs/AutoChangeLog-pr-13828.yml b/html/changelogs/AutoChangeLog-pr-13828.yml new file mode 100644 index 0000000000..282b8a01e0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13828.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - bugfix: "you can now only entwine tails with people who have a tail" From d46341bf815cda99f89d1ee5385d0723de5dc183 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:32:44 -0600 Subject: [PATCH 063/165] Automatic changelog generation for PR #13822 [ci skip] --- html/changelogs/AutoChangeLog-pr-13822.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13822.yml diff --git a/html/changelogs/AutoChangeLog-pr-13822.yml b/html/changelogs/AutoChangeLog-pr-13822.yml new file mode 100644 index 0000000000..743bdb500b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13822.yml @@ -0,0 +1,4 @@ +author: "DeltaFire15" +delete-after: True +changes: + - bugfix: "Bloodcult stunhands now work against clockies like they were supposed to instead of hardstunning." From 474fff91eb2022e0b1ff44e0337738a53a47cf6b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:40:36 -0600 Subject: [PATCH 064/165] Automatic changelog generation for PR #13772 [ci skip] --- html/changelogs/AutoChangeLog-pr-13772.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13772.yml diff --git a/html/changelogs/AutoChangeLog-pr-13772.yml b/html/changelogs/AutoChangeLog-pr-13772.yml new file mode 100644 index 0000000000..109360cace --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13772.yml @@ -0,0 +1,5 @@ +author: "silicons" +delete-after: True +changes: + - rscadd: "players can now respawn/return to lobby as a ghost after a 15 minute (default) delay and rejoin on another character with some/many restrictions" + - rscadd: "cryo now preserves everything" From 6b4fc5bde78fd97591ca0c47a7d9a323968f7ae3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:41:22 -0600 Subject: [PATCH 065/165] Automatic changelog generation for PR #13833 [ci skip] --- html/changelogs/AutoChangeLog-pr-13833.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13833.yml diff --git a/html/changelogs/AutoChangeLog-pr-13833.yml b/html/changelogs/AutoChangeLog-pr-13833.yml new file mode 100644 index 0000000000..8312c7a5a3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13833.yml @@ -0,0 +1,4 @@ +author: "kiwedespars" +delete-after: True +changes: + - balance: "balanced bone gauntlets." From fa5490d4b9752e8182c9b581d510ded9b1db0a3c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:42:23 -0600 Subject: [PATCH 066/165] Automatic changelog generation for PR #13835 [ci skip] --- html/changelogs/AutoChangeLog-pr-13835.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13835.yml diff --git a/html/changelogs/AutoChangeLog-pr-13835.yml b/html/changelogs/AutoChangeLog-pr-13835.yml new file mode 100644 index 0000000000..0ac90921c3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13835.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - rscadd: "pugilists can now parry" From c1796db295a875e95fa61282837c05a39dd3ccac Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Dec 2020 09:47:26 -0700 Subject: [PATCH 067/165] Update dullahan.dm --- code/modules/mob/living/carbon/human/species_types/dullahan.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/dullahan.dm b/code/modules/mob/living/carbon/human/species_types/dullahan.dm index 7faa08b52c..0418292fea 100644 --- a/code/modules/mob/living/carbon/human/species_types/dullahan.dm +++ b/code/modules/mob/living/carbon/human/species_types/dullahan.dm @@ -27,7 +27,7 @@ /datum/species/dullahan/check_roundstart_eligible() if(SSevents.holidays && SSevents.holidays[HALLOWEEN]) return TRUE - return FALSE + return ..() /datum/species/dullahan/on_species_gain(mob/living/carbon/human/H, datum/species/old_species) . = ..() From a8f8b06cea32c6a228b85e51603970c11c956f97 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 10:54:22 -0600 Subject: [PATCH 068/165] Automatic changelog generation for PR #13844 [ci skip] --- html/changelogs/AutoChangeLog-pr-13844.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13844.yml diff --git a/html/changelogs/AutoChangeLog-pr-13844.yml b/html/changelogs/AutoChangeLog-pr-13844.yml new file mode 100644 index 0000000000..cd1f7a25d4 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13844.yml @@ -0,0 +1,4 @@ +author: "Arturlang" +delete-after: True +changes: + - bugfix: "Fixes the mint machine's UI" From e319eab5d85e8a4cdcc9bff5fa33db289e06924f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 22 Dec 2020 11:11:05 -0600 Subject: [PATCH 069/165] Automatic changelog generation for PR #13837 [ci skip] --- html/changelogs/AutoChangeLog-pr-13837.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13837.yml diff --git a/html/changelogs/AutoChangeLog-pr-13837.yml b/html/changelogs/AutoChangeLog-pr-13837.yml new file mode 100644 index 0000000000..eda0b77a83 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13837.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "anyone new to the server is lucky enough to have their sprint default to toggle instead of hold" From 48cbe2ce4663829ff36e124436aff9227cc70c8d Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Tue, 22 Dec 2020 19:15:52 +0100 Subject: [PATCH 070/165] snap --- code/datums/status_effects/buffs.dm | 13 ++++++++++--- .../antagonists/bloodsucker/bloodsucker_life.dm | 11 ++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index ef3979d822..f4a53d5c72 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -438,12 +438,19 @@ return else linked_alert.icon_state = "fleshmend" - owner.adjustBruteLoss(-10, FALSE) - owner.adjustFireLoss(-5, FALSE) owner.adjustOxyLoss(-10) if(!iscarbon(owner)) + owner.adjustBruteLoss(-10, FALSE) + owner.adjustFireLoss(-5, FALSE) return var/mob/living/carbon/C = owner + var/list/damaged_parts = C.get_damaged_bodyparts(TRUE,TRUE, status = list(BODYPART_ORGANIC, BODYPART_HYBRID, BODYPART_NANITES)) + if(damaged_parts.len) + for(var/obj/item/bodypart/part in damaged_parts) + part.heal_damage(10/damaged_parts.len, 5/damaged_parts.len, only_organic = FALSE, updating_health = FALSE) + C.updatehealth() + C.update_damage_overlays() + QDEL_LIST(C.all_scars) /obj/screen/alert/status_effect/fleshmend @@ -599,7 +606,7 @@ //Heal brain damage and toxyloss, alongside trauma owner.adjustOrganLoss(ORGAN_SLOT_BRAIN, -8) - owner.adjustToxLoss(-6, forced = TRUE) + owner.adjustToxLoss(-6, forced = TRUE, toxins_type = TOX_OMNI) M.cure_trauma_type(resilience = TRAUMA_RESILIENCE_BASIC) //Purges 50 rads per tick if(owner.radiation > 0) diff --git a/code/modules/antagonists/bloodsucker/bloodsucker_life.dm b/code/modules/antagonists/bloodsucker/bloodsucker_life.dm index 4117fc2b36..3e358cd795 100644 --- a/code/modules/antagonists/bloodsucker/bloodsucker_life.dm +++ b/code/modules/antagonists/bloodsucker/bloodsucker_life.dm @@ -120,9 +120,14 @@ if(bruteheal + fireheal + toxinheal > 0) // Just a check? Don't heal/spend, and return. if(mult == 0) return TRUE + // We have damage. Let's heal (one time) - C.adjustBruteLoss(-bruteheal * mult, forced = TRUE)// Heal BRUTE / BURN in random portions throughout the body. - C.adjustFireLoss(-fireheal * mult, forced = TRUE) + var/list/damaged_parts = C.get_damaged_bodyparts(TRUE,TRUE, status = list(BODYPART_ORGANIC, BODYPART_HYBRID, BODYPART_NANITES)) + if(damaged_parts.len) + for(var/obj/item/bodypart/part in damaged_parts) // Heal BRUTE / BURN equally distibuted over all damaged bodyparts. + part.heal_damage((bruteheal * mult)/damaged_parts.len, (fireheal * mult)/damaged_parts.len, only_organic = FALSE, updating_health = FALSE) + C.updatehealth() + C.update_damage_overlays() C.adjustToxLoss(-toxinheal * mult * 2, forced = TRUE) //Toxin healing because vamps arent immune //C.heal_overall_damage(bruteheal * mult, fireheal * mult) // REMOVED: We need to FORCE this, because otherwise, vamps won't heal EVER. Swapped to above. AddBloodVolume((bruteheal * -0.5 + fireheal * -1 + toxinheal * -0.2) / mult * costMult) // Costs blood to heal @@ -276,7 +281,7 @@ /datum/antagonist/bloodsucker/proc/FinalDeath() //Dont bother if we are already supposed to be dead if(FinalDeath) - return + return FinalDeath = TRUE //We are now supposed to die. Lets not spam it. if(!iscarbon(owner.current)) //Check for non carbons. owner.current.gib() From 2faf0d3fd18d9374f6491fed58a8acfec553aa26 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Dec 2020 13:42:03 -0700 Subject: [PATCH 071/165] ok --- code/game/say.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/say.dm b/code/game/say.dm index 61dd9c0879..3bc14ed245 100644 --- a/code/game/say.dm +++ b/code/game/say.dm @@ -98,11 +98,11 @@ GLOBAL_LIST_INIT(freqtospan, list( /// Converts specific characters, like +, |, and _ to formatted output. /atom/movable/proc/say_emphasis(input) - var/static/regex/italics = regex(@"\|(\S[\w\W]*?\S)\|", "g") + var/static/regex/italics = regex(@"\|((?=\S)[\w\W]*?(?<=\S))\|", "g") input = italics.Replace_char(input, "$1") - var/static/regex/bold = regex(@"\+(\S[\w\W]*?\S)\+", "g") + var/static/regex/bold = regex(@"\+((?=\S)[\w\W]*?(?<=\S))\+", "g") input = bold.Replace_char(input, "$1") - var/static/regex/underline = regex(@"_(\S[\w\W]*?\S)_", "g") + var/static/regex/underline = regex(@"_((?=\S)[\w\W]*?(?<=\S))_", "g") input = underline.Replace_char(input, "$1") return input From 0f16f866eb789a901d1cddd1f9c6b943903594ca Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Dec 2020 17:43:41 -0700 Subject: [PATCH 072/165] Update arachnid.dm --- code/modules/mob/living/carbon/human/species_types/arachnid.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/arachnid.dm b/code/modules/mob/living/carbon/human/species_types/arachnid.dm index 4a8c872400..46f30dd863 100644 --- a/code/modules/mob/living/carbon/human/species_types/arachnid.dm +++ b/code/modules/mob/living/carbon/human/species_types/arachnid.dm @@ -139,6 +139,9 @@ if(E.web_ready == FALSE) to_chat(H, "You need to wait awhile to regenerate web fluid.") return + if(!isliving(A) && A.anchored) + to_chat(H, "[A] is bolted to the floor!") + return if(!do_after(H, 10 SECONDS, 1, A)) to_chat(H, "Your web spinning was interrupted!") return From 11722f6f5ec67a627e3d9389c8f0028d599946a7 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Dec 2020 17:47:53 -0700 Subject: [PATCH 073/165] Update arachnid.dm --- code/modules/mob/living/carbon/human/species_types/arachnid.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/arachnid.dm b/code/modules/mob/living/carbon/human/species_types/arachnid.dm index 46f30dd863..68d2cbbff6 100644 --- a/code/modules/mob/living/carbon/human/species_types/arachnid.dm +++ b/code/modules/mob/living/carbon/human/species_types/arachnid.dm @@ -142,6 +142,9 @@ if(!isliving(A) && A.anchored) to_chat(H, "[A] is bolted to the floor!") return + if(istype(A, /obj/structure/arachnid)) + to_chat(H, "No double wrapping.") + return if(!do_after(H, 10 SECONDS, 1, A)) to_chat(H, "Your web spinning was interrupted!") return From 4d4d0e9ec3aafa3862822e568c503b7ca38aacad Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Wed, 23 Dec 2020 02:50:15 +0100 Subject: [PATCH 074/165] a fix fix --- code/game/objects/items/tools/weldingtool.dm | 27 ++++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index c8eb96005c..7336d8aae8 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -24,13 +24,14 @@ var/self_fueling = FALSE //Do we refill ourselves or not var/nextrefueltick = 0 // How long it takes before we get a new fuel unit + var/refueling_interval = 10 //Every how many processing ticks does this refuel? (1 = every processing tick) custom_materials = list(/datum/material/iron=70, /datum/material/glass=30) var/welding = 0 //Whether or not the welding tool is off(0), on(1) or currently welding(2) var/status = TRUE //Whether the welder is secured or unsecured (able to attach rods to it to make a flamethrower) var/max_fuel = 20 //The max amount of fuel the welder can hold var/change_icons = 1 - var/can_off_process = 0 + var/can_off_process = FALSE var/light_intensity = 2 //how powerful the emitted light is when used. var/progress_flash_divisor = 10 var/burned_fuel_for = 0 //when fuel was last removed @@ -66,6 +67,14 @@ . += "[initial(icon_state)]-on" /obj/item/weldingtool/process() + //This handles refueling. Its looking at how much fuel the tool has and comparing that to how much it holds + //This then looks if the refuel tick has come based on world time. + //Then looks if we refuel ourselves or not. + + if(self_fueling && get_fuel() < max_fuel && nextrefueltick <= world.time) + nextrefueltick = world.time + refueling_interval + reagents.add_reagent(/datum/reagent/fuel, 1) + switch(welding) if(0) force = 3 @@ -86,14 +95,6 @@ //This is to start fires. process() is only called if the welder is on. open_flame() - //This handles refueling. Its looking at how much fuel the tool has and comparing that to how much it holds - //This then looks if the refuel tick has come based on world time. - //Then looks if we refuel ourselves or not. - - if(get_fuel() < max_fuel && nextrefueltick < world.time && self_fueling) - nextrefueltick = world.time + 10 - reagents.add_reagent(/datum/reagent/fuel, 1) - /obj/item/weldingtool/suicide_act(mob/user) user.visible_message("[user] welds [user.p_their()] every orifice closed! It looks like [user.p_theyre()] trying to commit suicide!") return (FIRELOSS) @@ -367,7 +368,7 @@ custom_materials = list(/datum/material/iron=70, /datum/material/glass=120) change_icons = 0 self_fueling = TRUE - can_off_process = 1 + can_off_process = TRUE light_intensity = 1 toolspeed = 0.5 @@ -384,16 +385,20 @@ icon = 'icons/obj/abductor.dmi' icon_state = "welder" self_fueling = TRUE + can_off_process = TRUE + refueling_interval = 1 toolspeed = 0.1 light_intensity = 0 change_icons = 0 /obj/item/weldingtool/advanced name = "advanced welding tool" - desc = "A modern welding tool combined with an alien welding tool, it never runs out of fuel and works almost as fast." + desc = "A modern welding tool combined with an alien welding tool, it almost never runs out of fuel and works nearly as fast." icon = 'icons/obj/advancedtools.dmi' icon_state = "welder" self_fueling = TRUE + can_off_process = TRUE + refueling_interval = 2 toolspeed = 0.2 light_intensity = 0 change_icons = 0 From 35896e92ecf038fec910b64e7923f7525e726345 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Tue, 22 Dec 2020 21:50:22 -0400 Subject: [PATCH 075/165] Paramedic office added and operating room remodeled --- _maps/map_files/BoxStation/BoxStation.dmm | 2311 ++++++++++------- .../crates_lockers/closets/secure/medical.dm | 19 + icons/obj/closet.dmi | Bin 39711 -> 40446 bytes master | 0 portable-chem-dispenser | 0 5 files changed, 1351 insertions(+), 979 deletions(-) create mode 100644 master create mode 100644 portable-chem-dispenser diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 87178c32f3..829bca571b 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -4821,7 +4821,7 @@ pixel_x = -32 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "aiQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -5088,7 +5088,7 @@ pixel_x = -32 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "ajw" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -9400,7 +9400,7 @@ /obj/item/storage/box/masks, /obj/structure/table, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "asM" = ( /obj/structure/table, /obj/item/crowbar, @@ -9409,8 +9409,11 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = 30 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "asN" = ( /obj/machinery/airalarm{ dir = 4; @@ -15795,7 +15798,7 @@ /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aJL" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; @@ -16090,7 +16093,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aKD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -16214,7 +16217,7 @@ "aKT" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aKU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, @@ -16229,7 +16232,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aKW" = ( /obj/machinery/light_switch{ pixel_y = 28 @@ -16697,13 +16700,13 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aMl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aMm" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -16811,7 +16814,7 @@ "aMD" = ( /obj/machinery/icecream_vat, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aME" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -16823,7 +16826,7 @@ /area/hydroponics) "aMF" = ( /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aMG" = ( /obj/structure/closet/crate/hydroponics, /obj/item/shovel/spade, @@ -17117,7 +17120,7 @@ name = "Pete" }, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aNL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, @@ -17128,7 +17131,7 @@ dir = 8 }, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aNN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -17149,7 +17152,7 @@ }, /obj/machinery/vending/wardrobe/chef_wardrobe, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aNP" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -17537,7 +17540,7 @@ "aOI" = ( /obj/structure/kitchenspike, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aOJ" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -17559,14 +17562,14 @@ dir = 8 }, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aON" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aOO" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; @@ -17603,7 +17606,7 @@ "aOT" = ( /obj/machinery/gibber, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "aOU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -19221,11 +19224,11 @@ "aTs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, -/area/security/vacantoffice) +/area/vacant_room/office) "aTt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/security/vacantoffice) +/area/vacant_room/office) "aTu" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -19536,11 +19539,11 @@ dir = 8 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -19641,7 +19644,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUz" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm{ @@ -19654,7 +19657,7 @@ /obj/structure/table/wood, /obj/item/flashlight/lamp, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUB" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/wood, @@ -19732,19 +19735,19 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUO" = ( /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUQ" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUR" = ( /obj/structure/table/wood, /obj/item/pen/red, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUS" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -19770,7 +19773,7 @@ /obj/structure/table/wood, /obj/item/flashlight/lamp/green, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aUX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -20322,7 +20325,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aWg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -20339,7 +20342,7 @@ dir = 8 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aWj" = ( /obj/structure/grille, /obj/structure/window{ @@ -20370,7 +20373,7 @@ pixel_x = -28 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aWn" = ( /obj/structure/closet/wardrobe/black, /obj/item/clothing/shoes/jackboots, @@ -20405,19 +20408,19 @@ dir = 8 }, /turf/open/floor/carpet, -/area/security/vacantoffice) +/area/vacant_room/office) "aWs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, -/area/security/vacantoffice) +/area/vacant_room/office) "aWt" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aWu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -21112,7 +21115,7 @@ /area/security/detectives_office) "aXL" = ( /turf/open/floor/carpet, -/area/security/vacantoffice) +/area/vacant_room/office) "aXM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21132,7 +21135,7 @@ }, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aXP" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, @@ -21196,7 +21199,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aXY" = ( /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21204,13 +21207,13 @@ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aXZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, -/area/security/vacantoffice) +/area/vacant_room/office) "aYb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -21249,7 +21252,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aYe" = ( /obj/machinery/light_switch{ pixel_y = 28 @@ -21715,7 +21718,7 @@ /obj/item/folder/blue, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "aZo" = ( /obj/structure/sink{ dir = 4; @@ -22238,7 +22241,7 @@ /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "baI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -22251,7 +22254,7 @@ pixel_y = -29 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "baK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22597,7 +22600,7 @@ /area/hallway/secondary/exit) "bbI" = ( /obj/machinery/power/apc{ - areastring = "/area/security/vacantoffice"; + areastring = "/area/vacant_room/office"; dir = 8; name = "Vacant Office APC"; pixel_x = -24 @@ -23041,14 +23044,10 @@ /turf/open/floor/carpet, /area/bridge/meeting_room) "bdb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side, /area/hallway/primary/starboard) "bdc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/corner, /area/hallway/primary/starboard) "bdd" = ( @@ -23117,13 +23116,13 @@ /area/crew_quarters/heads/captain) "bdl" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, /obj/structure/cable{ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bdm" = ( @@ -23164,11 +23163,20 @@ /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bdr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) "bds" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 4"; @@ -23346,13 +23354,9 @@ /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/locker) "bdN" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) "bdO" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -23665,8 +23669,13 @@ }, /area/hallway/primary/starboard) "bez" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/starboard"; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) @@ -23881,7 +23890,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "beY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, @@ -24107,11 +24116,11 @@ "bfG" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bfH" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bfI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -24141,18 +24150,13 @@ /turf/open/floor/plasteel, /area/quartermaster/sorting) "bfO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bfP" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/starboard"; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Paramedic's Office"; + req_access_txt = "5;6;12;64" }, -/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/starboard) +/area/medical/paramedic) "bfQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -24337,22 +24341,22 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/cable{ + icon_state = "0-2" + }, /obj/machinery/power/apc{ areastring = "/area/science/robotics/mechbay"; dir = 4; name = "Mech Bay APC"; pixel_x = 26 }, -/obj/structure/cable{ - icon_state = "0-2" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "bgp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bgq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -24528,7 +24532,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bgS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -24641,7 +24645,7 @@ "bhe" = ( /obj/structure/chair, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bhg" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -24715,25 +24719,9 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "bhm" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bhn" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bho" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bhp" = ( /obj/machinery/power/apc{ areastring = "/area/medical/morgue"; dir = 1; @@ -24745,18 +24733,61 @@ }, /turf/open/floor/plasteel/dark, /area/medical/morgue) -"bhq" = ( +"bhn" = ( /obj/machinery/light/small{ - dir = 4 + dir = 8 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bho" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 }, /turf/open/floor/plasteel/dark, /area/medical/morgue) -"bhr" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage" +"bhp" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/table/glass, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) +/obj/machinery/power/apc{ + areastring = "/area/medical/paramedic"; + dir = 8; + name = "Paramedic's Office APC"; + pixel_x = -26 + }, +/obj/item/flashlight/lamp{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/pen/blue{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"bhq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/cig_packs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"bhr" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen/backroom) "bhs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, @@ -24847,7 +24878,7 @@ /area/science/robotics/lab) "bhA" = ( /turf/closed/wall, -/area/science/research) +/area/science) "bhB" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ @@ -24855,7 +24886,7 @@ req_access_txt = "47" }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bhC" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd"; @@ -24863,7 +24894,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/science/lab) +/area/science/research) "bhD" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/southright{ @@ -24875,7 +24906,7 @@ name = "research lab shutters" }, /turf/open/floor/plating, -/area/science/lab) +/area/science/research) "bhE" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ @@ -24885,7 +24916,7 @@ /obj/item/stack/sheet/metal/fifty, /obj/item/clothing/glasses/welding, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bhF" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -24900,7 +24931,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bhG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, @@ -25014,13 +25045,13 @@ "bhU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bhV" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bhW" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -25067,7 +25098,7 @@ pixel_x = 29 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bic" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -25228,7 +25259,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "biu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, @@ -25283,22 +25314,37 @@ /turf/open/floor/plating, /area/quartermaster/storage) "biB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, -/area/medical/morgue) +/area/medical/paramedic) "biC" = ( -/turf/open/floor/plating, -/area/storage/emergency/starboard) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen/backroom) "biD" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"biE" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/paramedic, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"biE" = ( +/obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /turf/open/floor/plating, /area/storage/emergency/starboard) @@ -25424,7 +25470,7 @@ dir = 9 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "biS" = ( /obj/machinery/camera{ c_tag = "Research Division Access" @@ -25437,7 +25483,7 @@ dir = 5 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "biT" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -25455,7 +25501,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "biV" = ( /obj/structure/chair/stool, /obj/effect/landmark/start/scientist, @@ -25466,10 +25512,10 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "biW" = ( /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "biX" = ( /obj/machinery/camera{ c_tag = "Research and Development"; @@ -25487,7 +25533,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "biY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -25860,7 +25906,7 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bjT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/turf_decal/tile/blue, @@ -25868,14 +25914,14 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bjU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bjV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -25885,7 +25931,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bjX" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -25919,38 +25965,38 @@ dir = 10 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bka" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bkb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"bkd" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/paramedic, /obj/machinery/camera{ c_tag = "Medbay Morgue"; dir = 8; network = list("ss13","medbay") }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, /turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bkc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"bkd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"bkf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency/starboard) +/area/medical/paramedic) "bkh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, @@ -25971,7 +26017,7 @@ pixel_x = 24 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bkj" = ( /obj/structure/closet/emcloset, /obj/machinery/airalarm{ @@ -26036,7 +26082,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bkr" = ( /obj/machinery/shower{ dir = 8 @@ -26048,7 +26094,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bks" = ( /obj/machinery/requests_console{ department = "Science"; @@ -26058,7 +26104,7 @@ receive_ore_updates = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bkt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -26076,7 +26122,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bkw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -26226,11 +26272,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-4" + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bkR" = ( @@ -26243,9 +26294,7 @@ /obj/machinery/light_switch{ pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bkS" = ( @@ -26267,21 +26316,11 @@ /turf/open/floor/plating, /area/maintenance/central) "bkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/white/corner{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) +/area/hallway/primary/starboard) "bkV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -26345,6 +26384,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "blb" = ( @@ -26394,21 +26437,11 @@ /turf/open/floor/plasteel/white, /area/medical/chemistry) "blg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) "blh" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ @@ -26440,7 +26473,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bll" = ( /obj/structure/table/reinforced, /obj/item/folder/white, @@ -26466,26 +26499,12 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "blo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/storage/emergency/starboard"; - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) "blp" = ( /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/medical"; @@ -26520,8 +26539,13 @@ /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "blr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 6; + network = list("ss13","medbay") }, /turf/open/floor/plasteel/dark, /area/medical/morgue) @@ -26674,31 +26698,31 @@ dir = 6 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "blI" = ( /obj/machinery/rnd/destructive_analyzer, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "blJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/machinery/rnd/production/protolathe/department/science, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "blK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "blL" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "blM" = ( /obj/effect/turf_decal/bot, /obj/effect/landmark/start/cyborg, @@ -26765,7 +26789,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "blY" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ @@ -26780,7 +26804,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bma" = ( /obj/structure/table/glass, /obj/item/stock_parts/manipulator, @@ -26799,7 +26823,7 @@ pixel_x = 24 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bmb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -27065,7 +27089,7 @@ pixel_x = -24 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bmK" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/white, @@ -27136,13 +27160,11 @@ /turf/open/floor/plasteel, /area/quartermaster/office) "bmR" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = 5; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) "bmS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, @@ -27170,15 +27192,15 @@ /turf/open/floor/plasteel/dark, /area/medical/morgue) "bmW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, /turf/closed/wall, /area/medical/morgue) "bmX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/genetics) +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) "bmY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -27221,7 +27243,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bng" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -27230,13 +27252,13 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bnh" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bni" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -27284,7 +27306,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bnl" = ( /obj/item/stack/sheet/glass, /obj/structure/table/glass, @@ -27301,7 +27323,7 @@ }, /obj/item/stock_parts/scanning_module, /obj/machinery/power/apc{ - areastring = "/area/science/lab"; + areastring = "/area/science/research"; dir = 4; name = "Research Lab APC"; pixel_x = 26 @@ -27310,38 +27332,38 @@ icon_state = "0-8" }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bnm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, -/area/science/research) +/area/science) "bnn" = ( /obj/machinery/computer/rdconsole/core{ dir = 4 }, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "bno" = ( /obj/item/reagent_containers/glass/beaker/sulphuric, /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "bnp" = ( /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "bnq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, -/area/science/lab) +/area/science/research) "bnr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/plasticflaps/opaque, /turf/open/floor/plating, -/area/science/lab) +/area/science/research) "bns" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -27855,7 +27877,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "box" = ( /turf/closed/wall, /area/science/robotics/lab) @@ -27868,7 +27890,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "boz" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ @@ -27877,16 +27899,16 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "boA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "boB" = ( /turf/closed/wall, -/area/science/lab) +/area/science/research) "boC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, @@ -27969,7 +27991,7 @@ /area/science/robotics/lab) "boM" = ( /turf/open/floor/plasteel/white/corner, -/area/science/research) +/area/science) "boN" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -27979,18 +28001,18 @@ "boO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side, -/area/science/research) +/area/science) "boP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "boQ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, /obj/item/stock_parts/cell/high/plus, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "boR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -28173,7 +28195,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bpp" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -28184,7 +28206,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "bpq" = ( /obj/machinery/light_switch{ pixel_y = -23 @@ -28193,7 +28215,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bpr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -28203,7 +28225,7 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/lab) +/area/science/research) "bps" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -28462,7 +28484,7 @@ /turf/open/floor/plasteel/white/corner{ dir = 8 }, -/area/science/research) +/area/science) "bpY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28477,7 +28499,7 @@ /obj/item/disk/design_disk, /obj/item/disk/design_disk, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bqa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28511,7 +28533,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bqg" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 1 @@ -28556,7 +28578,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/lab) +/area/science/research) "bql" = ( /obj/machinery/conveyor{ dir = 4; @@ -28849,6 +28871,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, +/obj/structure/cable{ + icon_state = "2-4" + }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bqY" = ( @@ -28961,7 +28986,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "brn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28971,7 +28996,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bro" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28982,7 +29007,7 @@ /turf/open/floor/plasteel/white/side{ dir = 10 }, -/area/science/research) +/area/science) "brp" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -28992,7 +29017,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "brq" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/button/door{ @@ -29033,7 +29058,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bru" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -29080,7 +29105,7 @@ }, /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/science/lab) +/area/science/research) "bry" = ( /obj/machinery/door/airlock/maintenance{ name = "Experimentation Lab Maintenance"; @@ -29500,17 +29525,17 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bsA" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bsC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bsD" = ( /obj/structure/cable{ icon_state = "1-4" @@ -29519,7 +29544,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bsE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -29666,7 +29691,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bsY" = ( /obj/structure/chair/office/dark{ dir = 4 @@ -29682,7 +29707,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bta" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29694,7 +29719,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29706,7 +29731,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -29727,7 +29752,7 @@ /turf/open/floor/plasteel/white/side{ dir = 6 }, -/area/science/research) +/area/science) "btf" = ( /obj/machinery/requests_console{ department = "Medbay"; @@ -29738,10 +29763,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"btg" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) "bth" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -29750,7 +29771,7 @@ icon_state = "plant-16" }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bti" = ( /obj/structure/closet/wardrobe/grey, /obj/item/clothing/head/beret/black, @@ -29796,7 +29817,7 @@ dir = 4 }, /turf/closed/wall/r_wall, -/area/science/research) +/area/science) "bto" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -29896,7 +29917,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btx" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ @@ -29908,7 +29929,7 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "bty" = ( /obj/structure/chair{ dir = 8 @@ -29931,7 +29952,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btB" = ( /obj/machinery/computer/bounty{ dir = 4 @@ -30064,7 +30085,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -30072,7 +30093,7 @@ /turf/open/floor/plasteel/white/side{ dir = 10 }, -/area/science/research) +/area/science) "btR" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -30086,7 +30107,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30101,7 +30122,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "btV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30115,7 +30136,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "btX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30240,7 +30261,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/sleeper) +/area/medical/medbay/central) "bul" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -30266,7 +30287,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bup" = ( /obj/machinery/light, /obj/structure/cable{ @@ -30276,7 +30297,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "buq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30304,7 +30325,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "but" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30457,7 +30478,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "buI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -30544,7 +30565,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "buU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30562,7 +30583,7 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "buV" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -30620,7 +30641,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bvc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30633,13 +30654,13 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bvd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, -/area/medical/sleeper) +/area/medical/surgery) "bve" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30654,7 +30675,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bvf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -30663,7 +30684,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bvg" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -30673,23 +30694,16 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/research) -"bvh" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/sleeper) +/area/science) "bvi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/medical/sleeper) -"bvj" = ( -/turf/closed/wall, -/area/medical/sleeper) +/area/medical/surgery) "bvk" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvl" = ( /obj/machinery/door/airlock/medical/glass{ name = "Surgery Observation" @@ -30697,11 +30711,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bvm" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bvn" = ( /obj/machinery/button/door{ desc = "A remote control switch for the genetics doors."; @@ -30789,7 +30803,7 @@ /area/medical/genetics) "bvx" = ( /turf/closed/wall/r_wall, -/area/science/research) +/area/science) "bvy" = ( /obj/machinery/camera{ c_tag = "Genetics Research"; @@ -30850,7 +30864,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bvE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -30858,7 +30872,7 @@ /turf/open/floor/plasteel/white/side{ dir = 6 }, -/area/science/research) +/area/science) "bvF" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; @@ -30895,7 +30909,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bvI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -31194,11 +31208,11 @@ c_tag = "Surgery Observation"; network = list("ss13","medbay") }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bwx" = ( /obj/machinery/door/window/eastleft{ name = "Medical Delivery"; @@ -31217,18 +31231,20 @@ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bwD" = ( /obj/machinery/sleeper{ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bwE" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bwF" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/beaker/cryoxadone{ @@ -31240,20 +31256,20 @@ pixel_y = 1 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bwG" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, -/area/medical/sleeper) +/area/medical/medbay/central) "bwH" = ( /obj/structure/table, /obj/machinery/cell_charger, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bwI" = ( /obj/machinery/atmospherics/components/unary/cryo_cell, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bwJ" = ( /obj/structure/table/glass, /obj/machinery/camera{ @@ -31263,7 +31279,7 @@ /obj/item/reagent_containers/glass/beaker/cryoxadone, /obj/item/reagent_containers/glass/beaker/cryoxadone, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bwK" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -31331,7 +31347,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bwQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31444,31 +31460,27 @@ /area/security/checkpoint/supply) "bwZ" = ( /obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bxa" = ( /obj/structure/chair, /obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bxb" = ( /obj/structure/chair, /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 + dir = 4 }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bxc" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bxd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31480,7 +31492,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31493,7 +31505,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bxf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31507,7 +31519,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bxg" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -31728,7 +31740,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bxG" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; @@ -31797,13 +31809,13 @@ pixel_x = -28 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bxO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bxP" = ( /obj/structure/cable{ icon_state = "2-8" @@ -31818,34 +31830,34 @@ /area/crew_quarters/heads/hor) "bxQ" = ( /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxR" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxS" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxT" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxU" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxV" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bxW" = ( /obj/machinery/door/airlock/command/glass{ name = "Research Director"; @@ -32374,37 +32386,41 @@ dir = 4 }, /obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/medical/sleeper) +/area/medical/surgery) "byZ" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/medical/sleeper) +/area/medical/surgery) "bza" = ( /obj/structure/chair, /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bzb" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/sleeper) +/turf/closed/wall, +/area/medical/surgery) "bzc" = ( /obj/machinery/door/airlock/medical/glass{ name = "Recovery Room" }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bzd" = ( /obj/structure/table, /obj/item/stack/packageWrap, @@ -32427,14 +32443,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bzg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -32446,19 +32455,19 @@ dir = 6 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bzi" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bzj" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 1 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bzk" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32614,14 +32623,14 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bzB" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bzC" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -32652,7 +32661,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bzF" = ( /obj/machinery/firealarm{ dir = 8; @@ -32670,17 +32679,18 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bzH" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side, -/area/medical/sleeper) +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/surgery) "bzI" = ( /obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/surgicaldrill, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/operating, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/surgery) "bzJ" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -32691,14 +32701,9 @@ /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/heads/hor) "bzK" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/medical/surgery) "bzL" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/white, @@ -32756,12 +32761,14 @@ /turf/open/floor/plasteel, /area/quartermaster/qm) "bzS" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 +/obj/machinery/light/small{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/surgery) "bzT" = ( /obj/structure/chair/office/dark, /obj/effect/landmark/start/quartermaster, @@ -32774,15 +32781,15 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bzV" = ( /obj/machinery/vending/wardrobe/medi_wardrobe, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bzW" = ( /obj/structure/closet/l3closet, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bzX" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -32800,7 +32807,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bAa" = ( /obj/machinery/door/firedoor/heavy, /obj/structure/cable{ @@ -32808,7 +32815,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bAb" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -32899,8 +32906,11 @@ /area/hallway/primary/central) "bAl" = ( /obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/dark, -/area/medical/sleeper) +/area/medical/surgery) "bAm" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -32961,11 +32971,11 @@ network = list("ss13","medbay") }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAr" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; @@ -32978,18 +32988,18 @@ }, /obj/machinery/light, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAt" = ( /obj/structure/table/reinforced, /obj/item/wrench/medical, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAu" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAv" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; @@ -32997,7 +33007,7 @@ }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/medbay/central) "bAw" = ( /turf/open/floor/plating, /area/maintenance/aft) @@ -33221,29 +33231,21 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/janitor) -"bAW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) "bAX" = ( /obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/structure/curtain{ + pixel_y = -32 }, /turf/open/floor/plasteel/white/side{ dir = 4 }, -/area/medical/sleeper) +/area/medical/surgery) "bAY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/obj/structure/curtain{ + pixel_y = -32 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bAZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33255,24 +33257,19 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "bBb" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) "bBc" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/razor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/curtain{ + pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/optable, /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/sleeper) +/area/medical/surgery) "bBd" = ( /obj/structure/table, /obj/structure/bedsheetbin{ @@ -33280,22 +33277,19 @@ }, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/mask/muzzle, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bBe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bBf" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ @@ -33552,7 +33546,7 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bBE" = ( /obj/structure/cable{ icon_state = "1-8" @@ -33562,7 +33556,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bBF" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/item/storage/firstaid/toxin, @@ -34000,44 +33994,46 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/closed/wall, +/area/medical/surgery) "bCC" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/machinery/bloodbankgen, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 6; + network = list("ss13","medbay") }, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/open/floor/plasteel, +/area/medical/medbay/central) "bCD" = ( /obj/structure/table, -/obj/item/retractor, +/obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel/white/side, -/area/medical/sleeper) +/area/medical/surgery) "bCE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bCF" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/machinery/power/apc{ + areastring = "/area/medical/surgery"; + dir = 8; + name = "Treatment Center APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bCG" = ( /obj/structure/table, /obj/item/folder/white, @@ -34045,28 +34041,27 @@ /obj/item/soap/nanotrasen, /obj/item/gun/syringe/dart, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bCJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bCK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCL" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/camera{ @@ -34074,19 +34069,19 @@ network = list("ss13","medbay") }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCM" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/airalarm{ pixel_y = 24 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCN" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/bin, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCO" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ @@ -34096,17 +34091,7 @@ /obj/item/storage/box/rxglasses, /obj/item/hand_labeler, /turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bCQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/sleeper) +/area/medical/medbay/central) "bCR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34121,19 +34106,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/iv_drip, /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/vehicle/ridden/wheelchair{ + dir = 8 }, -/obj/machinery/bloodbankgen, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bCU" = ( /obj/item/radio/intercom{ frequency = 1485; @@ -34221,7 +34202,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bDe" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -34293,7 +34274,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bDm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -34303,13 +34284,13 @@ dir = 10 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bDn" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bDo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -34357,16 +34338,6 @@ }, /turf/closed/wall, /area/maintenance/port/aft) -"bDu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) "bDv" = ( /obj/structure/table, /obj/item/flashlight{ @@ -34412,43 +34383,41 @@ /area/storage/tech) "bDA" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - areastring = "/area/medical/sleeper"; - dir = 4; - name = "Treatment Center APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/open/floor/plasteel, +/area/medical/medbay/central) "bDB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-4" + }, /turf/open/floor/plasteel/white/side{ dir = 4 }, -/area/medical/sleeper) +/area/medical/surgery) "bDC" = ( -/obj/machinery/computer/operating{ - dir = 1 +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bDD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bDE" = ( /obj/machinery/vending/wallmed{ pixel_x = 28 @@ -34458,9 +34427,14 @@ dir = 8; network = list("ss13","medbay") }, -/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/vehicle/ridden/wheelchair{ + dir = 8 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bDF" = ( /obj/machinery/door/poddoor/preopen{ id = "medpriv4"; @@ -34555,9 +34529,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft) -"bDR" = ( -/turf/open/floor/plasteel/white, -/area/medical/sleeper) "bDS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -34573,7 +34544,7 @@ "bDT" = ( /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bDU" = ( /obj/machinery/door/airlock/command/glass{ name = "Chief Medical Officer"; @@ -34609,7 +34580,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bDY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -34618,18 +34589,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/science/storage) -"bDZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) "bEa" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bEb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -34656,7 +34621,7 @@ req_access_txt = "5" }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bEe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34676,7 +34641,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bEg" = ( /obj/structure/cable{ icon_state = "4-8" @@ -34781,7 +34746,7 @@ /area/science/storage) "bEq" = ( /obj/machinery/power/apc{ - areastring = "/area/science/research"; + areastring = "/area/science"; dir = 8; name = "Misc Research APC"; pixel_x = -25 @@ -34792,7 +34757,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bEr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -34800,14 +34765,14 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bEs" = ( /turf/closed/wall, /area/science/mixing) "bEt" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bEu" = ( /obj/structure/closet/bombcloset, /obj/machinery/light{ @@ -34860,7 +34825,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bEA" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/light{ @@ -34973,7 +34938,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bEO" = ( /obj/structure/sign/warning/securearea{ pixel_x = -32 @@ -34985,7 +34950,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bEP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35178,13 +35143,11 @@ /turf/open/floor/plating, /area/maintenance/aft) "bFm" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/closed/wall, +/area/medical/medbay/central) "bFn" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -35196,15 +35159,40 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/small{ + dir = 1 }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bFp" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/APlus, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) "bFq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/yellow, @@ -35226,27 +35214,26 @@ /area/maintenance/aft) "bFt" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/turf/open/floor/plasteel, +/area/medical/medbay/central) "bFu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/medical/sleeper) +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "bFv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bFw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35258,19 +35245,24 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFx" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/machinery/limbgrower, +/turf/open/floor/plasteel, +/area/medical/medbay/central) "bFy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFz" = ( /obj/machinery/airalarm{ dir = 1; @@ -35279,10 +35271,13 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/medical/sleeper) +/area/medical/surgery) "bFA" = ( /obj/structure/sink{ dir = 4; @@ -35295,11 +35290,17 @@ pixel_x = 30 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFB" = ( -/obj/structure/closet/secure_closet/medical2, +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -23 + }, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/surgery) "bFC" = ( /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/cigar{ @@ -35338,8 +35339,11 @@ /area/crew_quarters/heads/cmo) "bFF" = ( /obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFG" = ( /obj/structure/chair{ dir = 1 @@ -35379,17 +35383,18 @@ /turf/open/floor/engine, /area/science/storage) "bFJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, /obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, +/obj/structure/chair{ + dir = 1 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFK" = ( /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bFL" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -35462,18 +35467,18 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bFR" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bFS" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bFT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35753,26 +35758,20 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/science/mixing) -"bGH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) +/area/science) "bGI" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft) "bGJ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, /turf/open/floor/plating, /area/maintenance/aft) @@ -35787,14 +35786,14 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bGL" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bGM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -35845,9 +35844,8 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/closed/wall, +/area/medical/medbay/central) "bGR" = ( /obj/structure/table, /obj/item/storage/belt/medical{ @@ -35862,7 +35860,7 @@ /obj/item/clothing/neck/stethoscope, /obj/item/gun/syringe/dart, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bGT" = ( /obj/structure/table, /obj/item/folder/white, @@ -35898,9 +35896,11 @@ /area/medical/medbay/central) "bGW" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/closed/wall, +/area/medical/medbay/central) "bGX" = ( /obj/machinery/light{ dir = 8 @@ -35951,7 +35951,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bHd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35982,7 +35982,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bHh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -36047,7 +36047,9 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/aft) "bHq" = ( @@ -36076,7 +36078,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bHt" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -36192,7 +36194,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bHL" = ( /obj/machinery/camera{ c_tag = "Research Division South"; @@ -36202,13 +36204,13 @@ /turf/open/floor/plasteel/white/side{ dir = 9 }, -/area/science/research) +/area/science) "bHM" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bHN" = ( /obj/machinery/requests_console{ department = "Tech storage"; @@ -36266,6 +36268,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/landmark/event_spawn, /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/aft) @@ -36281,11 +36284,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft) -"bHW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/aft) "bHX" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -36317,29 +36315,29 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bIc" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/medical/sleeper) +/area/medical/surgery) "bId" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, /obj/machinery/camera{ c_tag = "Surgery Operating"; dir = 1; network = list("ss13","medbay"); pixel_x = 22 }, -/obj/machinery/light, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "bIe" = ( /obj/structure/disposalpipe/segment, /obj/machinery/status_display/evac{ @@ -36424,7 +36422,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIj" = ( /obj/structure/table, /obj/machinery/light, @@ -36436,7 +36434,7 @@ /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIk" = ( /obj/structure/table, /obj/item/storage/firstaid/fire{ @@ -36454,7 +36452,7 @@ req_access_txt = "5" }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIl" = ( /obj/structure/table, /obj/item/storage/firstaid/toxin{ @@ -36472,12 +36470,12 @@ req_access_txt = "5" }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIm" = ( /obj/machinery/light, /obj/machinery/rnd/production/techfab/department/medical, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIn" = ( /obj/structure/table, /obj/item/storage/firstaid/brute{ @@ -36496,7 +36494,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "bIo" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -36630,7 +36628,7 @@ /turf/open/floor/plasteel/white/side{ dir = 5 }, -/area/science/research) +/area/science) "bIE" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -36640,7 +36638,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bIF" = ( /obj/structure/cable{ icon_state = "1-2" @@ -36908,7 +36906,7 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/science/research) +/area/science) "bJp" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -36941,7 +36939,7 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/science/research) +/area/science) "bJs" = ( /obj/structure/cable{ icon_state = "4-8" @@ -36980,8 +36978,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, /turf/open/floor/plating, /area/maintenance/aft) @@ -37014,8 +37012,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/aft) @@ -37035,12 +37034,14 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bJA" = ( -/obj/effect/landmark/blobstart, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall, +/area/medical/medbay/central) "bJB" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel, @@ -37050,13 +37051,13 @@ dir = 4 }, /turf/closed/wall/r_wall, -/area/medical/sleeper) +/area/medical/medbay/central) "bJD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, -/area/medical/sleeper) +/area/medical/medbay/central) "bJE" = ( /turf/closed/wall/r_wall, /area/medical/medbay/central) @@ -37163,7 +37164,7 @@ "bJT" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "bJU" = ( /obj/machinery/vending/wardrobe/science_wardrobe, /turf/open/floor/plasteel/white, @@ -37257,13 +37258,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bKc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bKd" = ( /obj/machinery/camera{ c_tag = "Toxins Launch Room Access"; @@ -37274,7 +37275,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/mixing) +/area/science) "bKe" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -37760,7 +37761,7 @@ "bLh" = ( /obj/structure/sign/warning/fire, /turf/closed/wall, -/area/science/research) +/area/science) "bLi" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -32 @@ -37991,10 +37992,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft) -"bLP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) "bLQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/closed/wall/r_wall, @@ -38216,23 +38213,23 @@ "bMs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/science/research) +/area/science) "bMt" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "bMu" = ( /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "bMv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/closed/wall/r_wall, -/area/science/mixing) +/area/science/mixing/chamber) "bMw" = ( /obj/machinery/sparker/toxmix{ pixel_x = 25 @@ -38241,7 +38238,7 @@ dir = 4 }, /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "bMx" = ( /obj/machinery/airlock_sensor/incinerator_toxmix{ pixel_y = 24 @@ -38251,7 +38248,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/engine, -/area/science/mixing) +/area/science/mixing/chamber) "bMy" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 4; @@ -38359,7 +38356,9 @@ /obj/machinery/firealarm{ pixel_y = 24 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, /turf/open/floor/plasteel, /area/engine/atmos) "bMQ" = ( @@ -38570,19 +38569,19 @@ /area/medical/virology) "bNt" = ( /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "bNu" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, /turf/open/floor/engine, -/area/science/mixing) +/area/science/mixing/chamber) "bNv" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, /turf/open/floor/engine, -/area/science/mixing) +/area/science/mixing/chamber) "bNw" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, /turf/open/floor/engine, -/area/science/mixing) +/area/science/mixing/chamber) "bNx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -38968,7 +38967,7 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/science/research) +/area/science) "bOB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -38998,7 +38997,7 @@ dir = 4 }, /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "bOF" = ( /obj/structure/sign/warning/fire{ pixel_y = -32 @@ -39008,7 +39007,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/engine, -/area/science/mixing) +/area/science/mixing/chamber) "bOG" = ( /obj/machinery/light, /obj/machinery/atmospherics/components/binary/valve{ @@ -41716,6 +41715,9 @@ /obj/item/clothing/gloves/color/black, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/open/floor/plasteel, /area/engine/atmos) "bVX" = ( @@ -44808,7 +44810,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "cdZ" = ( /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/plasteel/dark/telecomms, @@ -45157,7 +45159,7 @@ }, /obj/machinery/holopad, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "ceY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -46308,7 +46310,7 @@ "chY" = ( /obj/machinery/shieldgen, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "cia" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -46658,7 +46660,7 @@ "ciW" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "ciX" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -46673,14 +46675,14 @@ /obj/item/lightreplacer, /obj/item/lightreplacer, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "ciY" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; name = "secure storage" }, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "ciZ" = ( /turf/open/floor/plating, /area/engine/engineering) @@ -46988,7 +46990,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "cjN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -47275,11 +47277,11 @@ "ckB" = ( /obj/machinery/field/generator, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "ckC" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, -/area/engine/engineering) +/area/engine/storage) "ckD" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -48825,10 +48827,16 @@ /turf/open/floor/plasteel, /area/hallway/primary/fore) "cpG" = ( -/obj/structure/table/optable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/surgery) "cpI" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -50579,7 +50587,7 @@ start_active = 1 }, /turf/open/space, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat) "cvG" = ( /obj/machinery/porta_turret/ai{ dir = 4; @@ -50626,7 +50634,7 @@ start_active = 1 }, /turf/open/space, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat) "cvL" = ( /obj/structure/sign/warning/securearea{ pixel_x = 32 @@ -51315,7 +51323,7 @@ /area/maintenance/disposal/incinerator) "czK" = ( /turf/closed/wall, -/area/security/vacantoffice) +/area/vacant_room/office) "czN" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -51638,7 +51646,7 @@ start_active = 1 }, /turf/open/space, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat) "cAV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -51673,7 +51681,7 @@ start_active = 1 }, /turf/open/space, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat) "cAY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -51733,7 +51741,7 @@ start_active = 1 }, /turf/open/space, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat) "cBg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/effect/landmark/event_spawn, @@ -51776,6 +51784,10 @@ /area/hallway/secondary/exit) "cBm" = ( /obj/effect/landmark/event_spawn, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/light, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "cBn" = ( @@ -51847,7 +51859,7 @@ }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/white, -/area/science/research) +/area/science) "cBy" = ( /obj/machinery/door/airlock{ name = "Custodial Closet"; @@ -51890,20 +51902,19 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/aft) "cBE" = ( /obj/effect/landmark/event_spawn, /obj/machinery/air_sensor/atmos/toxins_mixing_tank, /turf/open/floor/engine/vacuum, -/area/science/mixing) +/area/science/mixing/chamber) "cBF" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ @@ -52060,29 +52071,9 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "cCp" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/APlus, -/obj/item/reagent_containers/blood/random, +/obj/structure/closet/secure_closet/medical2, /turf/open/floor/plasteel, -/area/medical/sleeper) +/area/medical/surgery) "cCq" = ( /obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria, @@ -53371,6 +53362,18 @@ /obj/machinery/meter, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"dcX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "ddI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -53457,6 +53460,12 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) +"dkM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "dly" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -53467,6 +53476,19 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) +"dnW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "dqb" = ( /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) @@ -53723,6 +53745,18 @@ dir = 4 }, /area/crew_quarters/fitness/pool) +"ecp" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "edj" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -53767,6 +53801,21 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) +"eiB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "eiZ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/purple/visible{ @@ -54052,6 +54101,10 @@ "eQb" = ( /turf/open/floor/carpet, /area/crew_quarters/dorms) +"eRr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) "eRz" = ( /obj/structure/lattice, /obj/structure/grille, @@ -54061,6 +54114,12 @@ /obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor/carpet, /area/crew_quarters/dorms) +"eUy" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) "eUW" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/dark/visible{ @@ -54111,6 +54170,10 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"eZa" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "fbp" = ( /obj/structure/tank_dispenser, /obj/effect/turf_decal/bot, @@ -54361,6 +54424,9 @@ }, /turf/open/floor/plasteel, /area/security/range) +"fsQ" = ( +/turf/open/floor/plating, +/area/engine/storage) "fty" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible, @@ -54379,6 +54445,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"fvk" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/medbay/central) "fvY" = ( /obj/machinery/computer/cryopod{ pixel_y = 26 @@ -54534,6 +54604,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) +"fNN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "fOA" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; @@ -54604,6 +54682,11 @@ }, /turf/open/floor/plasteel, /area/security/processing) +"gaF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/paramedic) "gbd" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -54636,9 +54719,16 @@ /turf/open/floor/plating, /area/security/prison) "gbT" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/power/apc{ + areastring = "/area/storage/emergency/starboard"; + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "gcF" = ( @@ -54672,6 +54762,15 @@ }, /turf/open/floor/carpet, /area/crew_quarters/cryopod) +"gfQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) "ghD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, @@ -55014,12 +55113,16 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "gZG" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/sleeper) +/area/medical/surgery) "haM" = ( /obj/item/radio/intercom{ name = "Station Intercom (General)"; @@ -55311,6 +55414,15 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness) +"hYd" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "ibK" = ( /turf/open/floor/plasteel, /area/security/processing) @@ -55338,6 +55450,9 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"ihR" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) "iiW" = ( /turf/open/floor/wood, /area/maintenance/bar) @@ -55428,9 +55543,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) -"ipA" = ( -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) "iql" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -55487,6 +55599,13 @@ /obj/effect/turf_decal/tile/green, /turf/open/floor/plasteel, /area/hallway/primary/starboard) +"ivJ" = ( +/obj/structure/curtain{ + pixel_y = -32 + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) "ixd" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/beer, @@ -55601,7 +55720,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) "iPX" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -55626,6 +55745,10 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) +"iRV" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) "iTq" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -55641,6 +55764,21 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) +"iUp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"iVH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/surgery) "iVJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -55731,6 +55869,16 @@ }, /turf/closed/wall, /area/maintenance/port/fore) +"jbK" = ( +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) "jdj" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -55739,10 +55887,29 @@ }, /turf/open/space, /area/space) +"jdE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "jex" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/sleeper) +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) "jez" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -55771,6 +55938,10 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/engine/engineering) +"jiT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) "jjC" = ( /obj/structure/table/wood, /obj/item/toy/cards/deck, @@ -56598,6 +56769,10 @@ /obj/structure/disposalpipe/junction/flip, /turf/open/floor/plasteel, /area/hallway/primary/central) +"kQa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/paramedic) "kQe" = ( /obj/structure/table/wood/poker, /obj/item/storage/fancy/cigarettes/dromedaryco, @@ -56608,13 +56783,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "kQk" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating, +/turf/closed/wall, /area/maintenance/department/medical/morgue) "kQz" = ( /obj/structure/cable{ @@ -56650,6 +56819,16 @@ /obj/machinery/chem_master/condimaster, /turf/open/floor/plating, /area/maintenance/fore) +"kVj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "kWp" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -56689,6 +56868,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/range) +"laN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency/starboard) "leE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -57223,6 +57406,14 @@ /obj/effect/decal/cleanable/blood/gibs/slime/limb, /turf/open/floor/plasteel/dark, /area/maintenance/starboard/aft) +"mFo" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) "mGw" = ( /obj/machinery/door/airlock/security{ name = "Labor Shuttle"; @@ -57584,6 +57775,9 @@ }, /turf/open/floor/plating, /area/construction) +"nyi" = ( +/turf/closed/wall, +/area/medical/paramedic) "nzB" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 @@ -57611,6 +57805,9 @@ }, /turf/open/floor/plating, /area/security/processing) +"nEu" = ( +/turf/closed/wall, +/area/medical/surgery) "nFj" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/dark/visible{ @@ -57967,6 +58164,18 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) +"ouf" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "ouQ" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -58110,6 +58319,10 @@ }, /turf/open/floor/mineral/titanium/blue, /area/crew_quarters/dorms) +"oJV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "oKh" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -58139,6 +58352,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/maintenance/starboard/aft) +"oQY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay/central) "oSl" = ( /obj/machinery/door/airlock/security{ name = "Firing Range"; @@ -58204,6 +58423,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"pbC" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) "pcK" = ( /mob/living/simple_animal/bot/cleanbot{ name = "C.L.E.A.N." @@ -58250,6 +58473,9 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/fore) +"pkg" = ( +/turf/open/floor/plating, +/area/storage/emergency/starboard) "pkq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -58507,7 +58733,7 @@ pixel_x = 30 }, /turf/open/floor/plasteel/white, -/area/medical/sleeper) +/area/medical/medbay/central) "pHO" = ( /obj/effect/turf_decal/tile/blue, /obj/structure/sign/poster/contraband/fun_police{ @@ -58533,6 +58759,9 @@ }, /turf/open/floor/wood, /area/library) +"pKV" = ( +/turf/closed/wall/r_wall, +/area/science/research) "pLn" = ( /obj/machinery/conveyor/inverted{ dir = 5; @@ -58726,6 +58955,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) +"qkC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "qll" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -58743,6 +58979,10 @@ /obj/structure/table, /turf/open/floor/plasteel, /area/security/prison) +"qnC" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) "qqs" = ( /obj/structure/mirror{ pixel_y = 32 @@ -58908,6 +59148,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/captain) +"qSf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "qSF" = ( /obj/item/seeds/bee_balm/honey_balm, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -58926,7 +59173,7 @@ icon_state = "plant-22" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "qVP" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -59380,6 +59627,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) +"rUe" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) "rVy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -59407,6 +59658,23 @@ dir = 1 }, /area/engine/atmos) +"rWg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "rWw" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -59738,6 +60006,11 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness) +"sKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/aft) "sLa" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -59986,6 +60259,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"ttd" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "ttL" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -60009,6 +60288,13 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel, /area/crew_quarters/dorms) +"twE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "tyX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -60058,7 +60344,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "tEK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -60072,6 +60358,15 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) +"tEL" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) "tHh" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/red, @@ -60098,6 +60393,13 @@ dir = 1 }, /area/hallway/secondary/entry) +"tIE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) "tJi" = ( /obj/machinery/airalarm{ dir = 4; @@ -60162,7 +60464,13 @@ "tMl" = ( /obj/effect/turf_decal/loading_area, /turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/area/crew_quarters/kitchen/backroom) +"tNl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "tNF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -60542,6 +60850,13 @@ /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/fore) +"uBr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) "uCo" = ( /obj/structure/chair{ dir = 1 @@ -60587,6 +60902,13 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) +"uFV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/medbay/central) "uFZ" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ @@ -60812,7 +61134,7 @@ pixel_y = -22 }, /turf/open/floor/wood, -/area/security/vacantoffice) +/area/vacant_room/office) "veS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -60968,6 +61290,13 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) +"vxz" = ( +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) "vxX" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -61284,7 +61613,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "wcB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -61506,6 +61835,13 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"wJA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "wKe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -61784,6 +62120,20 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) +"xmD" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Paramedic's Office"; + req_access_txt = "5;6;12;64" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "xmS" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -61928,6 +62278,9 @@ /obj/machinery/vending/wardrobe/curator_wardrobe, /turf/open/floor/carpet, /area/library) +"xES" = ( +/turf/closed/wall/r_wall, +/area/engine/storage) "xFM" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -87579,14 +87932,14 @@ cdc cdZ bVI cay -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw +xES +xES +xES +xES +xES +xES +xES +xES cfL coH cBO @@ -87836,14 +88189,14 @@ bWB cec bVI kNv -ccw +xES chY ciX cjM ckB ckB ckB -ccw +xES cnY coH cgR @@ -88093,14 +88446,14 @@ cde ceb bVI cay -ccw +xES chY -ciZ +fsQ ciW ckB ckB ckC -ccw +xES cnX coH cps @@ -88350,14 +88703,14 @@ cdf ced bVI cay -ccw -ciZ -ciZ -ciZ +xES +fsQ +fsQ +fsQ ckC ckC ckC -ccw +xES coa coJ clJ @@ -88607,14 +88960,14 @@ bWB bWB bVI cay -ccw -ccw +xES +xES ciY ciY -ccw -ccw -ccw -ccw +xES +xES +xES +xES cnZ coH cgI @@ -93979,7 +94332,7 @@ aXf bCv bDP bCv -bAw +pbC bHV bJw bKC @@ -94236,11 +94589,11 @@ bBy bzs bDO bFl -bGH +bWe bHU bJv -bKB -bLK +mFo +bBb bVW bOd iql @@ -94494,10 +94847,10 @@ bCz bDQ bFn bGJ -bHX +sKL bJy -bKE -bLP +iUp +bLK bMP bIG bJB @@ -94748,10 +95101,10 @@ aJq bHt bBz bzs -bzs +bof bFm bGI -bHW +bof cBD bKD bLO @@ -95005,10 +95358,10 @@ bwu kPj bBB eBX -bzs +bof bFp -bGJ -bHX +uFV +fvk bJA bKG bLK @@ -95262,9 +95615,9 @@ aJq bAj aJq aKG -bzs +bof bFo -bDu +bDA bFt bGQ bHp @@ -95519,7 +95872,7 @@ byX aXh bmE bCA -bzs +bof bCC bDA bFx @@ -95771,15 +96124,15 @@ asT asV bof bwv -bvj -bvj -bvj -bvj -bvj -bvj +nEu +nEu +nEu +nEu +nEu +nEu bCB -bCP -bvj +iVH +nEu bvd bKH bLK @@ -96028,7 +96381,7 @@ asU asX bof bwx -bvj +nEu bwB bxa byZ @@ -96289,8 +96642,8 @@ bvi bww bwZ byY -bzH -bAW +bCD +ivJ bCE bFv bFz @@ -96546,8 +96899,8 @@ bvl bwE bxc bzb -bzK -bBb +nEu +nEu cpG bDC bId @@ -96799,16 +97152,16 @@ bqS brY bwz asG -bvj +nEu bza bxb -bvh -bCD +bdN +iRV bAY bCH -bDR +gfQ bIc -bvd +bzK bKH bLK bMW @@ -97056,10 +97409,10 @@ bqV bEe bhh bBL -bvj +nEu asM bAl -bvh +bzH bzS bBc bCJ @@ -97311,17 +97664,17 @@ bfF bfF bqU bsq -bvj -bvj -bvj -bvj -bvj -bvj -bvj -bvd +bof +bof +nEu +nEu +nEu +nEu +nEu +nEu bFu jex -bvj +nEu bvd bKH bLK @@ -97560,7 +97913,7 @@ bet bfH aiP wbE -bhh +ihR wbE bmJ bof @@ -97568,18 +97921,18 @@ bpu bqP bsy bEe -bvh +rUe ajv bxN bze asL -bvh +rUe bCG bBd bFw bDD bFJ -bvd +oQY bKH bzs bRK @@ -97819,24 +98172,24 @@ bhe bit bjS tCd -bli +eRr boe bli bpN bqX -bEe -btg -bDR -bDR -bDR -bDR +dcX +fNN +twE +twE +twE +twE bzc -bDR -bDZ +twE +bpP bCK bFy bFF -bvd +oQY bKH bzs fjU @@ -98073,7 +98426,7 @@ aYV bet bfG bhe -bhh +ihR bjU blk blk @@ -98082,18 +98435,18 @@ biu bpO bqY bss -btg +bfJ buk bvm bDT buk -bvh +rUe bzU bBe bCS bDE bFK -bvd +oQY bKH bzs fjU @@ -98330,7 +98683,7 @@ aYV bet bfG bhe -bhh +ihR bjV blj bmK @@ -98339,17 +98692,17 @@ bog bhh bsx bsr -bvh +rUe bwD -bDR -bDR +bhh +bhh bAq -bvj -bCQ +bof +bog bDW -bCP -bvj -bvj +bKR +bof +bof bJC bKH bzs @@ -98586,8 +98939,8 @@ aYV bdo beu bvk -biu -biu +jiT +jiT bjT blm bmL @@ -98596,15 +98949,15 @@ bpw ium bsx btX -bvj +bof bwG bxR bxR -bvj -bvj +bof +bof bzW -bDZ -bCT +bqQ +bCR bGR bIj bJC @@ -98842,9 +99195,9 @@ aJC aYV aYV bet -bfJ -bhh -bhh +qnC +ihR +ihR bgQ bll bhh @@ -98853,16 +99206,16 @@ bpv bhh bsx btV -bvh +rUe bwF bxQ bxQ bAr -bvj +bof bzV -bDZ -bzf -bDR +bqQ +boo +bhh bIi bJC bKH @@ -99101,25 +99454,25 @@ aYV bet bfH qTV -bhh -bhg +ihR +uBr bln bmM boj bof bhh -bsx +qkC btV -bvj +bof bwI bxT bxQ bAt -bvj +bof bCM -bDZ -bDR -bDR +bqQ +eZa +bhh bIl bJC bKH @@ -99367,16 +99720,16 @@ bof bKL brf btV -bvh +rUe bwH bxS bzh bAs -bvj +bof bCL bxO -bDR -bDR +bhh +bhh bIk bJC bKH @@ -99624,16 +99977,16 @@ apI bwz brg btZ -bvj +bof bwI bxV bzj bAv -bvj +bof bCO -bDR -bDR -bDR +bhh +bhh +bhh bIn bJC bUZ @@ -99881,12 +100234,12 @@ bpx bpP brf bhh -bvh +rUe bwJ bxU bzi bAu -bvj +bof bCN bEa pHl @@ -100110,11 +100463,11 @@ aaf alP aGL aIe -aJI -aJI -aJI -aJI -aJI +bhr +bhr +bhr +bhr +bhr aJI aRC aSK @@ -100138,13 +100491,13 @@ bnH bqQ bsx bhh -bvj -bvj +bof +bof bxR bxR -bvj -bvj -bCQ +bof +bof +bog bEd bof bof @@ -100367,7 +100720,7 @@ aaa alP aGN aIh -aJI +bhr aKT aMD aNM @@ -100646,7 +100999,7 @@ bhn biz biz biz -bmR +biz bfL bol bqQ @@ -100881,7 +101234,7 @@ aaa alP aGL aHY -aQj +biC iNn aMk aNK @@ -100900,9 +101253,9 @@ bdp cBm bfL bhm -bhm -bhm -bhm +tNl +ttd +dkM bkP bmV boc @@ -101153,13 +101506,13 @@ aVz qus bbz aYV -bdp +blg bdc -bfL +hYd beY -bhm -bhm -bhm +oJV +qSf +wJA bkR bfL boo @@ -101395,9 +101748,9 @@ vpY alP aGJ avI -aJI -aJI -aJI +bhr +bhr +bhr aNO aOT aJI @@ -101410,13 +101763,13 @@ aYM aJI bbA aYV -bdr +bdp bdb -bdN +bfL blr bho -bho -bho +ecp +eiB bkQ bmW bom @@ -101654,9 +102007,9 @@ aGJ avI aJL aKX -aJI -aJI -aJI +bhr +bhr +bhr aJI aRH aVz @@ -101665,15 +102018,15 @@ aVH aXn aYN aJI -bbz -aYV +bkU aYV +bdp bey bfL -bhm -biz -biz -biz +bfL +bfL +xmD +bfL bla bmY boq @@ -101924,15 +102277,15 @@ aJI aJI aJI bcq +blo bcq -bcq -bfL +nyi bhp biB -biB -biB -bkU -bmX +ouf +nyi +cTO +bmZ bpE bpE bpE @@ -102181,14 +102534,14 @@ aiJ bal bam aYV -aYV -aYV -bfL +bmR +bmX +gaF bhq -bhm +rWg bkb -bhm -bla +nyi +cTO bmZ bpH bra @@ -102440,12 +102793,12 @@ bbB aYV aYV aYV -bfL -bfL -bfL -bfL -bfL -blg +kQa +tIE +dnW +jdE +nyi +cTO bmZ bpG bqZ @@ -102698,10 +103051,10 @@ aYV aYV aYV bfO -bfS +kVj biD bkd -bfS +nyi cTO bmZ bpJ @@ -102953,13 +103306,13 @@ cBg bam aYV aYV -aYV -aYV -bhr -biC -bkc +beE bfS -blo +bfS +bfS +kQk +kQk +cTO bmZ bpI brb @@ -103211,11 +103564,11 @@ ssB aYV aYV aYV -beE -bfS +eUy +pkg biE -bkf -bfS +kQk +tEL cTO bmZ bpL @@ -103468,11 +103821,11 @@ ikm aYV aYV bez -bfP -bfS -bfS -bfS bfS +vxz +laN +kQk +jbK cTO bmZ bpK @@ -103725,12 +104078,12 @@ ikm aYV bci beB -bfS -bfS kQk -ipA +kQk +kQk +kQk gbT -cTO +bdr bmZ bon bon @@ -108866,11 +109219,11 @@ aYV aXq aYV bga -bgc -bgc -bgc -bgc -bgc +pKV +pKV +pKV +pKV +pKV boB boB boB @@ -109893,8 +110246,8 @@ aCR kYk bdx vHT -bgc -bgc +pKV +pKV biX bhV bka @@ -110150,7 +110503,7 @@ aCR bcy bdw beG -bgc +pKV bhE biW bkv @@ -110407,7 +110760,7 @@ bbG aTk bdy beI -bgc +pKV bhF biW bib @@ -110664,15 +111017,15 @@ aPq aPq bdy beH -bgc -bgc -bgc -bgc -bgc -bgc -bgc +pKV +pKV +pKV +pKV +pKV +pKV +pKV bpp -bgc +pKV brr bsE bvK diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm index a7ffef1a0c..babb047c8d 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm @@ -47,6 +47,25 @@ new /obj/item/clothing/glasses/hud/health(src) return +/obj/structure/closet/secure_closet/paramedic + name = "paramedic's locker" + req_access = list(ACCESS_MEDICAL) + icon_state = "paramed_secure" + +/obj/structure/closet/secure_closet/paramedic/PopulateContents() + ..() + new /obj/item/clothing/suit/toggle/labcoat/paramedic(src) + new /obj/item/clothing/under/rank/medical/paramedic(src) + new /obj/item/clothing/under/rank/medical/paramedic/skirt(src) + new /obj/item/radio/headset/headset_med(src) + new /obj/item/defibrillator/loaded(src) + new /obj/item/clothing/gloves/color/latex/nitrile(src) + new /obj/item/storage/belt/medical(src) + new /obj/item/clothing/glasses/hud/health(src) + new /obj/item/pinpointer/crew(src) + new /obj/item/sensor_device(src) + return + /obj/structure/closet/secure_closet/CMO name = "\proper chief medical officer's locker" req_access = list(ACCESS_CMO) diff --git a/icons/obj/closet.dmi b/icons/obj/closet.dmi index b71b021d80a50ab52c5be891fa2ac5022d2bf58b..3653635c56ef87a7946410140e3547cd3bb8808e 100644 GIT binary patch literal 40446 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 RWd{L2>MB~wm5P?n{|j_ON+JLN literal 39711 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 diff --git a/master b/master new file mode 100644 index 0000000000..e69de29bb2 diff --git a/portable-chem-dispenser b/portable-chem-dispenser new file mode 100644 index 0000000000..e69de29bb2 From 70d6fc69ea92f6310d3c9ef046fca2a7737254df Mon Sep 17 00:00:00 2001 From: Chiirno Date: Tue, 22 Dec 2020 21:53:49 -0400 Subject: [PATCH 076/165] removed previous branches --- master | 0 portable-chem-dispenser | 0 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 master delete mode 100644 portable-chem-dispenser diff --git a/master b/master deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/portable-chem-dispenser b/portable-chem-dispenser deleted file mode 100644 index e69de29bb2..0000000000 From 8a5cdddb67066ae682645cb271a41da4c2ec02e3 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Wed, 23 Dec 2020 02:57:01 +0100 Subject: [PATCH 077/165] actually increases brass welder refueling speed --- code/game/objects/items/tools/weldingtool.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 7336d8aae8..182470ddab 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -376,6 +376,7 @@ name = "brass welding tool" desc = "A brass welder that seems to constantly refuel itself. It is faintly warm to the touch." resistance_flags = FIRE_PROOF | ACID_PROOF + refueling_interval = 5 icon_state = "clockwelder" item_state = "brasswelder" From 7da2f871d0c5d2581308272edbb83e03534ec1fd Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Wed, 23 Dec 2020 03:02:42 +0100 Subject: [PATCH 078/165] corrects comment --- code/game/objects/items/tools/weldingtool.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 182470ddab..92b222aed7 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -23,7 +23,7 @@ resistance_flags = FIRE_PROOF var/self_fueling = FALSE //Do we refill ourselves or not - var/nextrefueltick = 0 // How long it takes before we get a new fuel unit + var/nextrefueltick = 0 //When is the next tick we refuel? var/refueling_interval = 10 //Every how many processing ticks does this refuel? (1 = every processing tick) custom_materials = list(/datum/material/iron=70, /datum/material/glass=30) From eaa50708707c5aff8460ae10a739d627e32ede88 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Dec 2020 20:36:06 -0700 Subject: [PATCH 079/165] Update _job.dm --- code/modules/jobs/job_types/_job.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index bb55ad45ca..9b816a9f90 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -126,7 +126,7 @@ /datum/job/proc/special_check_latejoin(client/C) var/joined = LAZYLEN(C.prefs?.characters_joined_as) if(C.prefs?.respawn_restrictions_active && (joined || CONFIG_GET(flag/respawn_penalty_includes_observe))) - if(!CONFIG_GET(flag/allow_non_assistant_respawn) && always_can_respawn_as) + if(!CONFIG_GET(flag/allow_non_assistant_respawn) && !always_can_respawn_as) return FALSE if(!CONFIG_GET(flag/allow_combat_role_respawn) && considered_combat_role) return FALSE From a267e61cbd0283615ffbb8485a10a74ece1147d6 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 00:56:28 -0400 Subject: [PATCH 080/165] solidified paramed morgue airlock, moved surgery fridge, and rearranged some of the wall mountings. --- _maps/map_files/BoxStation/BoxStation.dmm | 53 +++++++++++++---------- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 829bca571b..8fa6b50c92 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -35222,7 +35222,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/smartfridge/organ/preloaded, /turf/closed/wall, /area/medical/surgery) "bFv" = ( @@ -35244,6 +35243,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFx" = ( @@ -35292,13 +35294,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFB" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -23 - }, +/obj/structure/closet/secure_closet/medical2, /turf/open/floor/plasteel, /area/medical/surgery) "bFC" = ( @@ -35383,9 +35379,6 @@ /turf/open/floor/engine, /area/science/storage) "bFJ" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, /obj/structure/chair{ dir = 1 }, @@ -36321,21 +36314,25 @@ /obj/item/bedsheet/medical, /obj/machinery/iv_drip, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel/white/side{ - dir = 1 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -23 }, -/area/medical/surgery) -"bId" = ( /obj/machinery/camera{ c_tag = "Surgery Operating"; dir = 1; network = list("ss13","medbay"); pixel_x = 22 }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"bId" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/machinery/iv_drip, +/obj/machinery/light, /turf/open/floor/plasteel/white, /area/medical/surgery) "bIe" = ( @@ -48835,6 +48832,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -23 + }, /turf/open/floor/plasteel/white, /area/medical/surgery) "cpI" = ( @@ -52071,7 +52072,9 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "cCp" = ( -/obj/structure/closet/secure_closet/medical2, +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, /turf/open/floor/plasteel, /area/medical/surgery) "cCq" = ( @@ -53487,6 +53490,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "dqb" = ( @@ -61721,6 +61725,10 @@ }, /turf/open/floor/carpet, /area/crew_quarters/cryopod) +"woX" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "wph" = ( /obj/docking_port/stationary{ area_type = /area/construction/mining/aux_base; @@ -62121,17 +62129,16 @@ /turf/open/floor/wood, /area/crew_quarters/theatre) "xmD" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Paramedic's Office"; - req_access_txt = "5;6;12;64" - }, /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/machinery/door/airlock/medical{ + name = Paramedic's Office; + req_access_txt = "5;6;12;64" + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "xmS" = ( @@ -97674,7 +97681,7 @@ nEu nEu bFu jex -nEu +woX bvd bKH bLK From 739574731f8030151ed99895a65792bf9887b591 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 01:46:12 -0400 Subject: [PATCH 081/165] removed the second air alarm in surgery --- _maps/map_files/BoxStation/BoxStation.dmm | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 8fa6b50c92..e5e36d6135 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -48832,10 +48832,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -23 - }, /turf/open/floor/plasteel/white, /area/medical/surgery) "cpI" = ( @@ -61384,6 +61380,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"vDo" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "vEi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -61725,10 +61725,6 @@ }, /turf/open/floor/carpet, /area/crew_quarters/cryopod) -"woX" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) "wph" = ( /obj/docking_port/stationary{ area_type = /area/construction/mining/aux_base; @@ -97681,7 +97677,7 @@ nEu nEu bFu jex -woX +vDo bvd bKH bLK From bbbe99e99d6413745163016449e719fae1ebd0a4 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 01:59:07 -0400 Subject: [PATCH 082/165] switched the air cannister and the heater in Starboard Emergency Storage --- _maps/map_files/BoxStation/BoxStation.dmm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index e5e36d6135..c206bf0c94 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -56869,7 +56869,7 @@ /turf/open/floor/plasteel, /area/security/range) "laN" = ( -/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/space_heater, /turf/open/floor/plating, /area/storage/emergency/starboard) "leE" = ( @@ -58387,6 +58387,10 @@ /obj/machinery/disposal/bin, /turf/open/floor/plasteel/white, /area/science/circuit) +"oUR" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "oVo" = ( /obj/structure/pool/ladder, /turf/open/pool, @@ -61291,10 +61295,10 @@ }, /area/maintenance/starboard/aft) "vxz" = ( -/obj/machinery/space_heater, /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/storage/emergency/starboard) "vxX" = ( @@ -61380,10 +61384,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"vDo" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) "vEi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -97677,7 +97677,7 @@ nEu nEu bFu jex -vDo +oUR bvd bKH bLK From 08b40e34832356f624cb71d5591fd951eb6bcc3d Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 02:11:42 -0400 Subject: [PATCH 083/165] added quotation marks to an airlocks name --- _maps/map_files/BoxStation/BoxStation.dmm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index c206bf0c94..7eacc2d0de 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -52206,6 +52206,10 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) +"cDz" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "cDB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58387,10 +58391,6 @@ /obj/machinery/disposal/bin, /turf/open/floor/plasteel/white, /area/science/circuit) -"oUR" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) "oVo" = ( /obj/structure/pool/ladder, /turf/open/pool, @@ -62132,7 +62132,7 @@ dir = 4 }, /obj/machinery/door/airlock/medical{ - name = Paramedic's Office; + name = "Paramedic's Office"; req_access_txt = "5;6;12;64" }, /turf/open/floor/plasteel/dark, @@ -97677,7 +97677,7 @@ nEu nEu bFu jex -oUR +cDz bvd bKH bLK From 3dc96ce0d287c13423acbbf8fc61d5810d7e0cb1 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 03:54:58 -0400 Subject: [PATCH 084/165] moved consoles around so they are adjacent to the surgery tables --- _maps/map_files/BoxStation/BoxStation.dmm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 7eacc2d0de..387edb5a5f 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -32688,7 +32688,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/computer/operating, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel, /area/medical/surgery) "bzJ" = ( @@ -32765,8 +32766,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/computer/operating, /turf/open/floor/plasteel, /area/medical/surgery) "bzT" = ( @@ -34009,8 +34009,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "bCD" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/computer/operating, /turf/open/floor/plasteel/white/side, /area/medical/surgery) "bCE" = ( @@ -52206,10 +52205,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"cDz" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) "cDB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55750,7 +55745,8 @@ /turf/open/floor/plasteel, /area/hallway/primary/fore) "iRV" = ( -/obj/machinery/computer/operating, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel/white/side, /area/medical/surgery) "iTq" = ( @@ -58036,6 +58032,10 @@ /obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/bar) +"ofj" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) "ofU" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -97677,7 +97677,7 @@ nEu nEu bFu jex -cDz +ofj bvd bKH bLK From bff30f587b5d0a6b9441fd83577037af0f4628a9 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 23 Dec 2020 09:16:16 -0700 Subject: [PATCH 085/165] sigh --- code/game/objects/structures/crates_lockers/closets.dm | 7 +++++-- code/modules/cargo/supplypod.dm | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 46eb82342a..52082637a3 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -446,8 +446,11 @@ var/mob/living/L = O if(!issilicon(L)) L.DefaultCombatKnockdown(40) - O.forceMove(T) - close() + if(istype(src, /obj/structure/closet/supplypod/extractionpod)) + O.forceMove(src) + else + O.forceMove(T) + close() else O.forceMove(T) return 1 diff --git a/code/modules/cargo/supplypod.dm b/code/modules/cargo/supplypod.dm index 6169c4d3f0..efac62c930 100644 --- a/code/modules/cargo/supplypod.dm +++ b/code/modules/cargo/supplypod.dm @@ -74,7 +74,6 @@ bluespace = TRUE explosionSize = list(0,0,1,2) landingDelay = 25 //Longer than others - reverseOptionList = list("Mobs"=TRUE,"Objects"=FALSE,"Anchored"=FALSE,"Underfloor"=FALSE,"Wallmounted"=FALSE,"Floors"=FALSE,"Walls"=FALSE) /obj/structure/closet/supplypod/centcompod style = STYLE_CENTCOM From f9f328a9ea3bbf04c58df3ab898d7086127c34b3 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Wed, 23 Dec 2020 20:12:06 +0100 Subject: [PATCH 086/165] we love this code --- .../mob/living/carbon/human/species_types/arachnid.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/arachnid.dm b/code/modules/mob/living/carbon/human/species_types/arachnid.dm index 68d2cbbff6..a44177ced1 100644 --- a/code/modules/mob/living/carbon/human/species_types/arachnid.dm +++ b/code/modules/mob/living/carbon/human/species_types/arachnid.dm @@ -139,12 +139,18 @@ if(E.web_ready == FALSE) to_chat(H, "You need to wait awhile to regenerate web fluid.") return + if(!H.Adjacent(A)) //No. + return if(!isliving(A) && A.anchored) to_chat(H, "[A] is bolted to the floor!") return if(istype(A, /obj/structure/arachnid)) to_chat(H, "No double wrapping.") return + if(istype(A, /obj/effect)) + to_chat(H, "You cannot wrap this.") + return + H.visible_message("[H] starts to wrap [A] into a cocoon!","You start to wrap [A] into a cocoon.") if(!do_after(H, 10 SECONDS, 1, A)) to_chat(H, "Your web spinning was interrupted!") return From 4d854103279ba47ec33e57b5166fc799c381fa7b Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 21:14:46 -0400 Subject: [PATCH 087/165] bleached surgical storage, shrunk office and expanded emergency storage. Minor rearrangements of wallmounts wires and misc objects. --- _maps/map_files/BoxStation/BoxStation.dmm | 239 +++++++++++----------- 1 file changed, 116 insertions(+), 123 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 387edb5a5f..a2b96d0d86 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -24150,12 +24150,8 @@ /turf/open/floor/plasteel, /area/quartermaster/sorting) "bfO" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Paramedic's Office"; - req_access_txt = "5;6;12;64" - }, -/turf/open/floor/plasteel, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/medical/paramedic) "bfQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -24741,18 +24737,16 @@ /turf/open/floor/plasteel/dark, /area/medical/morgue) "bho" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, -/obj/structure/bodycontainer/morgue{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bhp" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/table/glass, /obj/structure/cable{ icon_state = "0-2" }, @@ -24762,27 +24756,18 @@ name = "Paramedic's Office APC"; pixel_x = -26 }, -/obj/item/flashlight/lamp{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/pen/blue{ - pixel_x = -6; - pixel_y = -2 +/obj/machinery/computer/crew{ + dir = 4 }, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "bhq" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/cig_packs, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, +/obj/effect/landmark/start/paramedic, +/obj/structure/chair/stool, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "bhr" = ( @@ -25317,15 +25302,15 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/computer/crew{ +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/cigbutt{ + pixel_x = 10; + pixel_y = 17 }, /turf/open/floor/plasteel/dark, /area/medical/paramedic) @@ -25334,15 +25319,9 @@ /turf/closed/wall, /area/crew_quarters/kitchen/backroom) "biD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/paramedic, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency/starboard) "biE" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, @@ -25977,24 +25956,22 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/wallmed{ - pixel_y = -28 +/obj/structure/table/glass, +/obj/item/flashlight/lamp{ + pixel_x = -2; + pixel_y = 11 }, +/obj/item/folder/white, +/obj/item/pen, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "bkd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/paramedic, /obj/machinery/camera{ c_tag = "Medbay Morgue"; dir = 8; network = list("ss13","medbay") }, +/obj/machinery/suit_storage_unit/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "bkh" = ( @@ -26272,9 +26249,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" - }, /obj/structure/cable{ icon_state = "4-8" }, @@ -26282,6 +26256,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -24 + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bkR" = ( @@ -26295,6 +26273,9 @@ pixel_y = -25 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bkS" = ( @@ -34006,7 +33987,7 @@ dir = 6; network = list("ss13","medbay") }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bCD" = ( /obj/machinery/computer/operating, @@ -34385,7 +34366,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bDB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35162,7 +35143,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFp" = ( /obj/structure/closet/crate/freezer, @@ -35190,7 +35171,7 @@ dir = 8; sortType = 6 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35215,7 +35196,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/closet/crate/freezer/surplus_limbs, /obj/item/reagent_containers/glass/beaker/synthflesh, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35250,7 +35231,7 @@ "bFx" = ( /obj/structure/disposalpipe/segment, /obj/machinery/limbgrower, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "bFy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -53475,17 +53456,15 @@ /turf/open/floor/plasteel/dark, /area/hallway/primary/central) "dnW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "dqb" = ( @@ -53745,14 +53724,13 @@ }, /area/crew_quarters/fitness/pool) "ecp" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bodycontainer/morgue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/item/bedsheet/medical{ + pixel_x = 3; + pixel_y = 9 }, /turf/open/floor/plasteel/dark, /area/medical/morgue) @@ -53801,18 +53779,15 @@ /turf/open/floor/plasteel/dark, /area/hallway/primary/central) "eiB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, /obj/machinery/light/small{ dir = 4 }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "eiZ" = ( @@ -54682,8 +54657,8 @@ /turf/open/floor/plasteel, /area/security/processing) "gaF" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/paramedic) "gbd" = ( @@ -55186,6 +55161,12 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/fore) +"hiB" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "hiV" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -55888,12 +55869,16 @@ /turf/open/space, /area/space) "jdE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ +/obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 + dir = 1 }, +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "jex" = ( @@ -56770,7 +56755,11 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "kQa" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Paramedic's Office"; + req_access_txt = "5;6;12;64" + }, /turf/open/floor/plating, /area/medical/paramedic) "kQe" = ( @@ -56820,15 +56809,24 @@ /turf/open/floor/plating, /area/maintenance/fore) "kVj" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Paramedic's Office"; + req_access_txt = "5;6;12;64" }, /turf/open/floor/plasteel/dark, -/area/medical/paramedic) +/area/medical/morgue) "kWp" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -58172,12 +58170,7 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, +/obj/structure/closet/secure_closet/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "ouQ" = ( @@ -58325,6 +58318,9 @@ /area/crew_quarters/dorms) "oJV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "oKh" = ( @@ -59155,7 +59151,10 @@ "qSf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" }, /turf/open/floor/plasteel/dark, /area/medical/morgue) @@ -59673,10 +59672,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/structure/chair/office/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "rWw" = ( @@ -60398,10 +60396,16 @@ }, /area/hallway/secondary/entry) "tIE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "tJi" = ( @@ -60911,7 +60915,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/medical/medbay/central) "uFZ" = ( /obj/structure/closet/emcloset, @@ -61298,7 +61302,6 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/storage/emergency/starboard) "vxX" = ( @@ -61844,6 +61847,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "wKe" = ( @@ -62124,19 +62130,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"xmD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Paramedic's Office"; - req_access_txt = "5;6;12;64" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) "xmS" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -101002,7 +100995,7 @@ bhn biz biz biz -biz +hiB bfL bol bqQ @@ -102027,8 +102020,8 @@ bdp bey bfL bfL +kVj bfL -xmD bfL bla bmY @@ -102282,7 +102275,7 @@ aJI bcq blo bcq -nyi +bfO bhp biB ouf @@ -103053,9 +103046,9 @@ bbB aYV aYV aYV -bfO -kVj -biD +nyi +nyi +nyi bkd nyi cTO @@ -103311,7 +103304,7 @@ aYV aYV beE bfS -bfS +biD bfS kQk kQk From cb4780739a0326417ec577657685656520ac2ceb Mon Sep 17 00:00:00 2001 From: Chiirno Date: Wed, 23 Dec 2020 22:44:33 -0400 Subject: [PATCH 088/165] added one more paramed spawn in office, for a total of three --- _maps/map_files/BoxStation/BoxStation.dmm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index a2b96d0d86..01bb0a3f3f 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -25312,6 +25312,7 @@ pixel_x = 10; pixel_y = 17 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/dark, /area/medical/paramedic) "biC" = ( @@ -55161,12 +55162,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/fore) -"hiB" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) "hiV" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -55299,6 +55294,12 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) +"hMs" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) "hOv" = ( /obj/structure/table/wood/fancy, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -100995,7 +100996,7 @@ bhn biz biz biz -hiB +hMs bfL bol bqQ From 7ae843301fbac5bcbfddf2749a2cb38d29bc5903 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 24 Dec 2020 10:47:16 -0600 Subject: [PATCH 089/165] Automatic changelog generation for PR #13845 [ci skip] --- html/changelogs/AutoChangeLog-pr-13845.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13845.yml diff --git a/html/changelogs/AutoChangeLog-pr-13845.yml b/html/changelogs/AutoChangeLog-pr-13845.yml new file mode 100644 index 0000000000..d10485ae9f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13845.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "dullahans enabled" From 2de3356530628852987316aa97f9473e7a3c094f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 24 Dec 2020 11:07:18 -0600 Subject: [PATCH 090/165] Automatic changelog generation for PR #13830 [ci skip] --- html/changelogs/AutoChangeLog-pr-13830.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13830.yml diff --git a/html/changelogs/AutoChangeLog-pr-13830.yml b/html/changelogs/AutoChangeLog-pr-13830.yml new file mode 100644 index 0000000000..c126670246 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13830.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - bugfix: "apids render now" From aa7c871b597ee00d063254ff3d16229262afa932 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Thu, 24 Dec 2020 18:15:04 -0600 Subject: [PATCH 091/165] yea --- code/modules/clothing/gloves/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index f9f587ae5b..af55c6b9d7 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -20,6 +20,7 @@ body_parts_covered = ARMS cold_protection = ARMS strip_delay = 300 //you can't just yank them off + obj_flags = UNIQUE_RENAME /// did you ever get around to wearing these or no var/wornonce = FALSE ///Extra damage through the punch. From f2b16b82fce2602144e872364560122646b6bdc0 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 24 Dec 2020 21:26:25 -0700 Subject: [PATCH 092/165] Update cell.dm --- code/modules/power/cell.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index a4daeb6a33..a0509fbd41 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -86,6 +86,8 @@ // recharge the cell /obj/item/stock_parts/cell/proc/give(amount) + if(amount < 0) + return if(rigged && amount > 0) explode() return 0 From 488bf18106f1a6a986060020f145eced3b7772f5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 24 Dec 2020 21:31:02 -0700 Subject: [PATCH 093/165] Update apc.dm --- code/modules/power/apc.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index ca2c259bb5..762e9fe39c 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -1082,11 +1082,12 @@ if("lockdown") var/celluse = rand(20,35) celluse = celluse /100 + if(!cell.use(cell.maxcharge*celluse)) + return for (var/obj/machinery/door/D in GLOB.airlocks) if (get_area(D) == area) INVOKE_ASYNC(D,/obj/machinery/door.proc/hostile_lockdown,usr, FALSE) addtimer(CALLBACK(D,/obj/machinery/door.proc/disable_lockdown, FALSE), 30 SECONDS) - cell.charge -= cell.maxcharge*celluse var/obj/item/implant/hijack/H = usr.getImplant(/obj/item/implant/hijack) H.stealthcooldown = world.time + 3 MINUTES if("occupy") From c8c68acac4ce631012b87f4ba8b09908190902d2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 25 Dec 2020 11:29:02 -0600 Subject: [PATCH 094/165] Automatic changelog generation for PR #13850 [ci skip] --- html/changelogs/AutoChangeLog-pr-13850.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13850.yml diff --git a/html/changelogs/AutoChangeLog-pr-13850.yml b/html/changelogs/AutoChangeLog-pr-13850.yml new file mode 100644 index 0000000000..64c47ade40 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13850.yml @@ -0,0 +1,5 @@ +author: "DeltaFire15" +delete-after: True +changes: + - bugfix: "Self-fueling weldingtools recharge fuel properly again." + - bugfix: "Brass welders now actually recharge faster than experimental ones." From 8c8be2b92e8a64c705cb8f5c0dfb00804ba4669f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 25 Dec 2020 21:45:07 +0000 Subject: [PATCH 095/165] tackle and puddle --- code/datums/components/tackle.dm | 9 +++++++++ .../mob/living/carbon/human/innate_abilities/blobform.dm | 2 -- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/code/datums/components/tackle.dm b/code/datums/components/tackle.dm index a5f9271f4b..e88945b6e2 100644 --- a/code/datums/components/tackle.dm +++ b/code/datums/components/tackle.dm @@ -89,6 +89,11 @@ to_chat(user, "You can't tackle while tased!") return + left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) + right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) + if(left && right_paralysis) + to_chat(user, "You can't tackle without the use of your arms!") + user.face_atom(A) var/list/modifiers = params2list(params) @@ -280,6 +285,10 @@ attack_mod -= 2 if(HAS_TRAIT(sacker, TRAIT_GIANT)) attack_mod += 2 + left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) + right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) + if(left_paralysis || right_paralysis) + attack_mod -= 2 if(ishuman(target)) var/mob/living/carbon/human/S = sacker diff --git a/code/modules/mob/living/carbon/human/innate_abilities/blobform.dm b/code/modules/mob/living/carbon/human/innate_abilities/blobform.dm index 5d2693915d..ed3c7e21d4 100644 --- a/code/modules/mob/living/carbon/human/innate_abilities/blobform.dm +++ b/code/modules/mob/living/carbon/human/innate_abilities/blobform.dm @@ -62,7 +62,6 @@ H.add_movespeed_modifier(/datum/movespeed_modifier/slime_puddle) - H.layer -= 1 //go one layer down so people go over you ENABLE_BITFIELD(H.pass_flags, PASSMOB) //this actually lets people pass over you squeak = H.AddComponent(/datum/component/squeak, custom_sounds = list('sound/effects/blobattack.ogg')) //blorble noise when people step on you @@ -103,7 +102,6 @@ REMOVE_TRAIT(H, TRAIT_HUMAN_NO_RENDER, SLIMEPUDDLE_TRAIT) H.update_disabled_bodyparts(silent = TRUE) H.remove_movespeed_modifier(/datum/movespeed_modifier/slime_puddle) - H.layer += 1 //go one layer back above! DISABLE_BITFIELD(H.pass_flags, PASSMOB) is_puddle = FALSE if(squeak) From 879ea9c6c851327d0a0442ee27c192f73855ab99 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 25 Dec 2020 14:23:16 -0800 Subject: [PATCH 096/165] ok --- code/modules/projectiles/projectile.dm | 5 +++++ .../projectile/bullets/ferromagnetic.dm | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index fd442bb7a6..fb9e6ff6c6 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -100,6 +100,10 @@ var/impact_light_intensity = 3 var/impact_light_range = 2 var/impact_light_color_override + // Normal lighting effects + var/fired_light_intensity = 1 + var/fired_light_range = 0 + var/fired_light_color = rgb(255, 255, 255) //Homing var/homing = FALSE @@ -506,6 +510,7 @@ transform = M trajectory_ignore_forcemove = TRUE forceMove(starting) + set_light(fired_light_range, fired_light_intensity, fired_light_color) trajectory_ignore_forcemove = FALSE if(isnull(pixel_increment_amount)) pixel_increment_amount = SSprojectiles.global_pixel_increment_amount diff --git a/code/modules/projectiles/projectile/bullets/ferromagnetic.dm b/code/modules/projectiles/projectile/bullets/ferromagnetic.dm index 78deff601f..03482e2a9d 100644 --- a/code/modules/projectiles/projectile/bullets/ferromagnetic.dm +++ b/code/modules/projectiles/projectile/bullets/ferromagnetic.dm @@ -2,22 +2,22 @@ icon_state = "magjectile" damage = 20 armour_penetration = 20 - light_range = 3 + fired_light_range = 3 pixels_per_second = TILES_TO_PIXELS(16.667) range = 35 - light_color = LIGHT_COLOR_RED + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/magnetic/disabler icon_state = "magjectile-nl" //nl stands for non-lethal damage = 2 armour_penetration = 10 stamina = 20 - light_color = LIGHT_COLOR_BLUE + fired_light_color = LIGHT_COLOR_BLUE /obj/item/projectile/bullet/magnetic/weak damage = 15 armour_penetration = 10 - light_range = 2 + fired_light_range = 2 range = 25 /obj/item/projectile/bullet/magnetic/weak/disabler @@ -30,8 +30,8 @@ stamina = 10 movement_type = FLYING | UNSTOPPABLE range = 6 - light_range = 1 - light_color = LIGHT_COLOR_RED + fired_light_range = 1 + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/incendiary/mag_inferno icon_state = "magjectile-large" @@ -40,8 +40,8 @@ movement_type = FLYING | UNSTOPPABLE range = 20 pixels_per_second = TILES_TO_PIXELS(12.5) - light_range = 4 - light_color = LIGHT_COLOR_RED + fired_light_range = 4 + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/incendiary/mag_inferno/on_hit(atom/target, blocked = FALSE) ..() From c527086ab039d46e4d85326555bbdcf43c286393 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 25 Dec 2020 16:59:46 -0600 Subject: [PATCH 097/165] Automatic changelog generation for PR #13870 [ci skip] --- html/changelogs/AutoChangeLog-pr-13870.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13870.yml diff --git a/html/changelogs/AutoChangeLog-pr-13870.yml b/html/changelogs/AutoChangeLog-pr-13870.yml new file mode 100644 index 0000000000..820c524224 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13870.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "Magrifle ammo no longer glows." From 05e5c80dce093acca97d8ecabd863bd04db50896 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 26 Dec 2020 00:17:29 +0000 Subject: [PATCH 098/165] runtime --- code/datums/components/tackle.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/components/tackle.dm b/code/datums/components/tackle.dm index e88945b6e2..5f55e5463a 100644 --- a/code/datums/components/tackle.dm +++ b/code/datums/components/tackle.dm @@ -89,8 +89,8 @@ to_chat(user, "You can't tackle while tased!") return - left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) - right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) + var/left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) + var/right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) if(left && right_paralysis) to_chat(user, "You can't tackle without the use of your arms!") @@ -285,8 +285,8 @@ attack_mod -= 2 if(HAS_TRAIT(sacker, TRAIT_GIANT)) attack_mod += 2 - left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) - right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) + var/left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) + var/right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) if(left_paralysis || right_paralysis) attack_mod -= 2 From 147f148c789a274c0294dc4484aadaf69cb9d744 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 19:05:13 -0700 Subject: [PATCH 099/165] Nyctophobia quirk: Effect now triggers in 0.2 seconds instead of instantly --- code/datums/traits/negative.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index fe27cc2baf..0cae5222bf 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -137,8 +137,12 @@ GLOBAL_LIST_EMPTY(family_heirlooms) var/lums = T.get_lumcount() if(lums <= 0.2) if(quirk_holder.m_intent == MOVE_INTENT_RUN) - to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") - quirk_holder.toggle_move_intent() + sleep(2) //0.2 seconds of being in the dark + T = get_turf(quirk_holder) + lums = T.get_lumcount() + if(lums <= 0.2) //check again + to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") + quirk_holder.toggle_move_intent() SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "nyctophobia", /datum/mood_event/nyctophobia) else SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "nyctophobia") From 1d296e2816ae176b4c15b7ebc6eb4a896204eaaa Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 20:18:02 -0700 Subject: [PATCH 100/165] addtimer proc instead of sleep --- code/datums/traits/negative.dm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index 0cae5222bf..3cbf4b3cd2 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -137,16 +137,18 @@ GLOBAL_LIST_EMPTY(family_heirlooms) var/lums = T.get_lumcount() if(lums <= 0.2) if(quirk_holder.m_intent == MOVE_INTENT_RUN) - sleep(2) //0.2 seconds of being in the dark - T = get_turf(quirk_holder) - lums = T.get_lumcount() - if(lums <= 0.2) //check again - to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") - quirk_holder.toggle_move_intent() + addtimer(CALLBACK(src, .proc/recheck),2) //0.2 seconds of being in the dark SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "nyctophobia", /datum/mood_event/nyctophobia) else SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "nyctophobia") +/datum/quirk/nyctophobia/proc/recheck() + var/turf/T = get_turf(quirk_holder) + var/lums = T.get_lumcount() + if(lums <= 0.2) //check again, did they remain in the dark for 0.2 seconds? + to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") + quirk_holder.toggle_move_intent() + /datum/quirk/lightless name = "Light Sensitivity" desc = "Bright lights irritate you. Your eyes start to water, your skin feels itchy against the photon radiation, and your hair gets dry and frizzy. Maybe it's a medical condition. If only Nanotrasen was more considerate of your needs..." From cac5e6dad643247f2c778789ff23c3e36c9fc5bf Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 20:59:10 -0700 Subject: [PATCH 101/165] A Pubby Christmas --- _maps/map_files/PubbyStation/PubbyStation.dmm | 134913 +-------------- 1 file changed, 6988 insertions(+), 127925 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index b053c5176c..19d17bd138 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,127928 +1,6991 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/cyborg, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aac" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aad" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"aae" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaf" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aag" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aah" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aai" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaj" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aak" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aal" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aam" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aan" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aao" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aap" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aar" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/tank/internals/plasma, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aas" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aat" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_y = -32 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aau" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/sign/poster/official/hydro_ad{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aav" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aaw" = ( -/obj/structure/sign/poster/official/hydro_ad, -/turf/closed/wall, -/area/hydroponics) -"aax" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"aay" = ( -/obj/structure/sign/poster/official/medical_green_cross, -/turf/closed/wall, -/area/medical/medbay/central) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aaA" = ( -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"aaB" = ( -/obj/structure/closet/masks, -/obj/item/reagent_containers/food/snacks/deadmouse, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"aaC" = ( -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"aaD" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/clothing/mask/balaclava, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaE" = ( -/obj/machinery/light/small, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaF" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) -"aaG" = ( -/obj/structure/closet, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaH" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"aaK" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#706891" - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaL" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"aaM" = ( -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"aaN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaO" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"aaP" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"aaQ" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaR" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Pool" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/walk{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaW" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaX" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaY" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"aaZ" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"aba" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abb" = ( -/obj/machinery/camera{ - c_tag = "Fitness Room" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding/corner, -/area/crew_quarters/fitness/pool) -"abd" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abe" = ( -/obj/machinery/vending/kink, -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abf" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/department/science) -"abg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abj" = ( -/obj/machinery/pool/controller, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"abk" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abl" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abn" = ( -/obj/machinery/pool/filter{ - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abo" = ( -/obj/structure/pool/ladder{ - dir = 2; - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abq" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abr" = ( -/obj/machinery/pool/drain, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abs" = ( -/obj/structure/pool/Lboard, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abt" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"abu" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"abw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) -"abx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/athletic_mixed, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"aby" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"abz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abC" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abD" = ( -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness/pool"; - name = "Pool APC"; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abF" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"abG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"abH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abI" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"abJ" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"abK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abN" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"abO" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"abP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abS" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abT" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abV" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abY" = ( -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acd" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ace" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acf" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber North"; - dir = 1; - network = list("minisat") - }, -/obj/machinery/light, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"ach" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"aci" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/ai_monitored/turret_protected/ai) -"acj" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -27 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"ack" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber Center"; - network = list("minisat") - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acl" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/ai"; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acm" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Port"; - dir = 8; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"acn" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber West"; - dir = 4; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aco" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai"; - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acr" = ( -/obj/machinery/ai_slipper{ - uses = 8 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acs" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "AI Satellite turret control"; - pixel_x = -5; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"act" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acu" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber East"; - dir = 8; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acv" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Starboard"; - dir = 4; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"acw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acy" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -9 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -31 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -9 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 28; - pixel_y = -28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acB" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acC" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acD" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber South"; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 20 - }, -/obj/machinery/status_display/ai{ - pixel_y = 37 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acE" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/AIsatextAS) -"acG" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/ai_monitored/turret_protected/ai) -"acJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - uses = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acM" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space, -/area/space/nearstation) -"acO" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"acP" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"acQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"acR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acU" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"acV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"acW" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acX" = ( -/obj/machinery/computer/monitor, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acY" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ada" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"adb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"adc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"add" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ade" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/mmi, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/computer/rdconsole/robotics, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adg" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adi" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adk" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - dir = 8; - name = "MiniSat Antechamber APC"; - pixel_x = -24 - }, -/obj/machinery/recharger, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adl" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adn" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ado" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/item/paper_bin, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adq" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"ads" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adt" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Port Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adx" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ady" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adz" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber Observation"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adD" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Waste Out" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Starboard Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adH" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"adM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation"; - req_one_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adR" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"adS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adV" = ( -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"adW" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Port Fore"; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"adX" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"adY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"adZ" = ( -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAS) -"aea" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Starboard Fore"; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aec" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aed" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"aee" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aef" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/porta_turret/ai{ - installation = /obj/item/gun/energy/e_gun - }, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/aisat_interior) -"aeh" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"aei" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aej" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/porta_turret/ai{ - installation = /obj/item/gun/energy/e_gun - }, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/aisat_interior) -"aek" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"ael" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aem" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aen" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) -"aeo" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/potato, -/obj/item/seeds/carrot, -/obj/item/seeds/corn, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aep" = ( -/obj/item/cultivator, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeq" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/seeds/glowshroom, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Permabrig Central"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aer" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aes" = ( -/obj/structure/easel, -/obj/item/canvas/nineteenXnineteen, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aet" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeu" = ( -/obj/machinery/biogenerator, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aev" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aew" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aex" = ( -/obj/structure/lattice, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Port Aft"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"aey" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aez" = ( -/obj/structure/lattice, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Starboard Aft"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeC" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/grass, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeD" = ( -/obj/item/plant_analyzer, -/obj/item/shovel/spade, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeE" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/sunflower, -/obj/item/seeds/poppy, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeF" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeG" = ( -/obj/item/storage/crayons, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"aeO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway"; - req_one_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aeP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"aeQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeT" = ( -/obj/structure/bookcase, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeU" = ( -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeW" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aeX" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aeY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; - dir = 8; - name = "MiniSat Port Maintenance APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Port Aft"; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afe" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aff" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afg" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Starboard Aft"; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afm" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; - dir = 4; - name = "MiniSat Starboard Maintenance APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afn" = ( -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afo" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afp" = ( -/obj/item/storage/dice, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afq" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aft" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afu" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afv" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afy" = ( -/obj/effect/landmark/start/cyborg, -/obj/item/beacon, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afE" = ( -/obj/item/toy/cards/deck, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afF" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afG" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afI" = ( -/obj/machinery/computer/arcade{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afJ" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space/nearstation) -"afK" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afL" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afM" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afN" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"afO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"afS" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afT" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool{ - layer = 5 - }, -/obj/item/extinguisher{ - layer = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afU" = ( -/turf/closed/wall, -/area/security/execution/transfer) -"afX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"afZ" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aga" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Unisex Showers" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agd" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"age" = ( -/obj/machinery/teleport/station, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agf" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agg" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agh" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agi" = ( -/obj/machinery/door/poddoor{ - id = "executionspaceblast" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agl" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs, -/obj/item/razor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agn" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ago" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agp" = ( -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agr" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ags" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agu" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agw" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Solutions Room"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agx" = ( -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agy" = ( -/turf/closed/wall, -/area/security/prison) -"agz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell2"; - name = "cell blast door" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt2"; - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/security/prison) -"agB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "permacell1"; - name = "cell blast door" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt1"; - name = "Cell 1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agC" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restroom" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agE" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agI" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Permabrig Cell 2"; - network = list("ss13","prison") - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/toy/plush/slimeplushie, -/turf/open/floor/plasteel, -/area/security/prison) -"agK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/prison) -"agL" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Permabrig Cell 1"; - network = list("ss13","prison") - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/toy/plush/lizardplushie, -/turf/open/floor/plasteel, -/area/security/prison) -"agM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"agN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/prison) -"agO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agP" = ( -/turf/closed/wall, -/area/security/main) -"agQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"agR" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"agT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Solutions Room"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agW" = ( -/obj/machinery/flasher{ - id = "PCell 2"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"agY" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/prison) -"agZ" = ( -/obj/machinery/flasher{ - id = "PCell 1"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aha" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"ahb" = ( -/obj/structure/toilet/secret/prison{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"ahd" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ahi" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"ahj" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/clothing/suit/straight_jacket, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahk" = ( -/obj/machinery/button/flasher{ - id = "executionflash"; - pixel_x = 6; - pixel_y = 27 - }, -/obj/machinery/button/door{ - id = "executionspaceblast"; - name = "Vent to Space"; - pixel_x = -6; - pixel_y = 32; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/ignition{ - id = "secigniter"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahl" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/prison) -"aho" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/prison) -"ahp" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 1"; - req_access_txt = "2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahq" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space/nearstation) -"aht" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ahu" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"ahx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahz" = ( -/obj/machinery/button/door{ - id = "executionfireblast"; - name = "Transfer Area Lockdown"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 24; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"ahB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 2"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "permacell2"; - name = "Cell 2 Lockdown"; - pixel_x = 4; - pixel_y = 34; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"ahF" = ( -/obj/machinery/camera{ - c_tag = "Brig Prison Hallway"; - network = list("ss13","prison") - }, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 1"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "permacell1"; - name = "Cell 1 Lockdown"; - pixel_x = 4; - pixel_y = 34; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahH" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahJ" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Prison Wing APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahK" = ( -/obj/structure/table, -/obj/item/melee/chainofcommand, -/obj/item/melee/baton, -/turf/open/floor/plasteel, -/area/security/prison) -"ahL" = ( -/turf/closed/wall/r_wall, -/area/security/armory) -"ahM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/turf/open/space/basic, -/area/space/nearstation) -"ahS" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahT" = ( -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"ahV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahW" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Prisoner Transfer Centre"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aia" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aib" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aic" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aid" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aie" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aif" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aig" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"aih" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/restraints/handcuffs, -/obj/item/razor, -/turf/open/floor/plasteel, -/area/security/prison) -"aii" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aij" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/item/poster/random_contraband, -/obj/item/clothing/suit/armor/navyblue/russian, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aik" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ail" = ( -/obj/vehicle/ridden/secway, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aim" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ain" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aio" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aip" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aiq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"air" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ais" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ait" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiu" = ( -/turf/closed/wall, -/area/maintenance/department/security/brig) -"aiv" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"aiw" = ( -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"aix" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiA" = ( -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"aiB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiD" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aiJ" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiK" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/electropack, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiL" = ( -/obj/structure/table, -/obj/item/storage/box/flashbangs{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/lockbox/loyalty{ - layer = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiM" = ( -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiN" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiO" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/machinery/power/apc/highcap/five_k{ - dir = 4; - name = "Armory APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/main) -"aiQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/main) -"aiR" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hos) -"aiS" = ( -/turf/closed/wall, -/area/maintenance/department/crew_quarters/dorms) -"aiT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aiU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/barsign, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aiV" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiW" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiX" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiY" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiZ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aja" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ajb" = ( -/obj/structure/closet/secure_closet/injection, -/obj/machinery/power/apc{ - dir = 4; - name = "Prisoner Transfer Centre"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ajc" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ajd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/prison) -"aje" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"ajf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/prison) -"ajg" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aji" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajj" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajk" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/main) -"ajl" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajm" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box{ - pixel_y = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajn" = ( -/obj/structure/table, -/obj/structure/sign/plaques/golden{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajo" = ( -/obj/machinery/vending/coffee, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajp" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajq" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/main) -"ajr" = ( -/obj/item/reagent_containers/food/snacks/donut/chaos, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"ajs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"ajt" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aju" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"ajv" = ( -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajy" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajz" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajA" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space, -/area/space/nearstation) -"ajB" = ( -/obj/item/storage/box/mousetraps, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajD" = ( -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajE" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajF" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajG" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajH" = ( -/turf/closed/wall, -/area/security/processing/cremation) -"ajI" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Crematorium"; - req_access_txt = "2;27" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"ajJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajM" = ( -/turf/closed/wall, -/area/security/brig) -"ajN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/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/brig) -"ajP" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajR" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/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/dark, -/area/security/armory) -"ajS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajT" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajU" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Office APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajV" = ( -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"ajW" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"ajX" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajY" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aka" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/plaques/kiddie{ - desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; - name = "\improper 'Diploma' frame"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akc" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#706891" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akd" = ( -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/deputy, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"ake" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/machinery/button/door{ - id = "hos_spess_shutters"; - name = "Space shutters"; - pixel_x = 24; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akf" = ( -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"akg" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akh" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor5" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akj" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ako" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akr" = ( -/obj/machinery/washing_machine, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -31 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aks" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akt" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/button/door{ - id = "mainthideout"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aku" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1; - node1_concentration = 0.2; - node2_concentration = 0.8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akw" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/obj/machinery/meter, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akx" = ( -/obj/structure/bodycontainer/crematorium, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"aky" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"akz" = ( -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Crematorium APC"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"akA" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"akB" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akC" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/table/glass, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akD" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/iv_drip, -/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/white, -/area/security/brig) -"akF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"akI" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Room"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/brig) -"akJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akK" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akL" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/rack, -/obj/item/key/security, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akP" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"akR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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/main) -"akT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"akU" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akV" = ( -/obj/item/storage/secure/safe{ - pixel_x = -22; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"ala" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"alb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/space, -/area/space/nearstation) -"alc" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigars, -/obj/item/stack/spacecash/c20, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ale" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alf" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alg" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ali" = ( -/obj/machinery/door/airlock/abandoned{ - id_tag = "mainthideout"; - name = "Hideout" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alj" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"all" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"aln" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Crematorium"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"alq" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alt" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Brig Infirmary" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alu" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aly" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alz" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/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, -/area/security/brig) -"alA" = ( -/obj/machinery/flasher/portable, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"alB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/firealarm{ - 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/main) -"alC" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/pen, -/obj/item/folder/red{ - layer = 2.9; - pixel_x = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"alD" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel, -/area/security/main) -"alE" = ( -/turf/open/floor/plasteel, -/area/security/main) -"alF" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel, -/area/security/main) -"alG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"alH" = ( -/turf/open/floor/plasteel/dark, -/area/security/main) -"alI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"alJ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alL" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alM" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"alO" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"alP" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"alQ" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"alR" = ( -/obj/effect/landmark/blobstart, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"alS" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"alT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Supply to Security" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alX" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alZ" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Brig Infirmary"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ama" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amc" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ame" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amf" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 4; - name = "Brig APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amg" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"amh" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"ami" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"amj" = ( -/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/security/warden) -"amk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aml" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"amm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Office"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -31 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amo" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amp" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amq" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ams" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"amt" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security"; - req_access_txt = "58" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"amu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/dark, -/area/crew_quarters/heads/hos) -"amv" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amx" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amy" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amz" = ( -/obj/machinery/computer/security/hos{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amA" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amB" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amC" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amD" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/department/crew_quarters/dorms) -"amG" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/crew_quarters/dorms) -"amH" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"amI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_one_access_txt = "2;27" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"amJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/security/processing/cremation) -"amK" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"amL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"amM" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amO" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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/security/brig) -"amP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amS" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Control APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amT" = ( -/obj/machinery/computer/prisoner/management, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amU" = ( -/obj/machinery/computer/security, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Control Room" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amV" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amX" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amZ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ana" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anc" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/main) -"and" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"ane" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"anf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ang" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"ani" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"anj" = ( -/obj/structure/table/wood, -/obj/item/phone, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"ank" = ( -/obj/machinery/computer/card/minor/hos{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"anl" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space/basic, -/area/space/nearstation) -"anm" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Pete's Speakeasy" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"anq" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ans" = ( -/obj/item/wirecutters, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ant" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/security/processing/cremation) -"anw" = ( -/obj/structure/plasticflaps/opaque, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"anx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"any" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"anC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anI" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anJ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"anL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anM" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"anN" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"anO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/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, -/area/security/main) -"anP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"anQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"anR" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anS" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anV" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "Head of Security's Office APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"anX" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"anY" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"aob" = ( -/obj/structure/closet/emcloset, -/obj/item/camera, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aod" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aof" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aog" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aok" = ( -/obj/machinery/computer/security/labor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aol" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aon" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"aoo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aop" = ( -/obj/structure/bed/dogbed, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/mob/living/simple_animal/pet/dog/pug{ - name = "McGriff" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoq" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aor" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aos" = ( -/obj/machinery/door/airlock/security{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aot" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aou" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aov" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aow" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aox" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aoy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aoz" = ( -/turf/closed/wall, -/area/maintenance/fore) -"aoB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aoH" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/solar/port) -"aoI" = ( -/obj/structure/lattice, -/turf/open/space, -/area/solar/port) -"aoJ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/solar/port) -"aoK" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aoL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Gulag Teleporter"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/item/razor{ - pixel_x = -6 - }, -/obj/item/paper/guides/jobs/security/labor_camp, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aoP" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aoQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoR" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoS" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Entrance Lockdown"; - pixel_x = 5; - pixel_y = -2 - }, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Permabrig Lockdown"; - pixel_x = 5; - pixel_y = 8; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoT" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/warden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoX" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/laser_pointer/red, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoY" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoZ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"apa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/main) -"apb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apc" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ape" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/main) -"apg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Security Access"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aph" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"api" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apk" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apl" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apn" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"apo" = ( -/obj/structure/transit_tube/diagonal/crossing, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"app" = ( -/obj/machinery/camera{ - c_tag = "Bridge Starboard Exterior"; - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"apr" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"apu" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"apv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"apw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/camera_film, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"apz" = ( -/obj/item/target/clown, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"apB" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"apE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"apF" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"apG" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"apH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"apJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"apK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southleft{ - name = "Reception Desk"; - req_access_txt = "63" - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"apM" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"apQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/fore) -"apS" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"apT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"apU" = ( -/obj/effect/turf_decal/bot_white/left, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apV" = ( -/obj/effect/turf_decal/bot_white, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apW" = ( -/obj/effect/turf_decal/bot_white/right, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apX" = ( -/turf/closed/wall, -/area/crew_quarters/dorms) -"aqa" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/solar/port) -"aqc" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqd" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqe" = ( -/obj/item/target/alien, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqi" = ( -/obj/structure/closet, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/red, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqq" = ( -/obj/machinery/camera{ - c_tag = "Brig Cells" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqs" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqv" = ( -/obj/machinery/camera{ - c_tag = "Brig Entrance" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqA" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 8; - pixel_x = 30 - }, -/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/brig) -"aqB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqC" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqD" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqF" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"aqG" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aqH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqI" = ( -/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 = "bridgespace"; - name = "bridge external shutters" - }, -/turf/open/floor/plating, -/area/bridge) -"aqJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqK" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqL" = ( -/obj/machinery/computer/bank_machine, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aqM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqP" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aqQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqR" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqS" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqT" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqU" = ( -/obj/machinery/washing_machine, -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqV" = ( -/obj/machinery/washing_machine, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqY" = ( -/obj/docking_port/stationary{ - dwidth = 2; - height = 6; - id = "monastery_shuttle_station"; - name = "Station"; - roundstart_template = /datum/map_template/shuttle/escape_pod/large; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"ara" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port) -"arc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ard" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ari" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_y = -25; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ark" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"arl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"arm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aro" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arr" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ars" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"art" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aru" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arw" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arx" = ( -/obj/item/flashlight/lamp, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ary" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arz" = ( -/obj/machinery/camera{ - c_tag = "Brig Interrogation"; - dir = 8; - network = list("interrogation") - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arA" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"arB" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Bridge MiniSat Access"; - dir = 4 - }, -/turf/open/floor/plating, -/area/bridge) -"arC" = ( -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bridge) -"arD" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/bridge) -"arE" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bridge) -"arF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"arG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"arH" = ( -/obj/machinery/modular_computer/console/preset/command, -/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/bridge) -"arI" = ( -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arJ" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arK" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arL" = ( -/obj/machinery/computer/card, -/obj/machinery/camera{ - c_tag = "Bridge - Central" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arM" = ( -/obj/machinery/computer/communications, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arN" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arO" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arP" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arQ" = ( -/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/dark, -/area/bridge) -"arR" = ( -/obj/machinery/computer/prisoner/management, -/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/dark, -/area/bridge) -"arS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"arU" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"arW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/ore_silo, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arX" = ( -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4 - }, -/obj/structure/table, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/paper/pamphlet, -/turf/open/floor/plasteel, -/area/gateway) -"arY" = ( -/obj/machinery/computer/gateway_control, -/turf/open/floor/plasteel, -/area/gateway) -"arZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"asa" = ( -/obj/structure/table, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/item/radio/off, -/turf/open/floor/plasteel, -/area/gateway) -"asb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"asc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"asd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ase" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"asf" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"asg" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/bedsheetbin/color, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ash" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"asi" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"asj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aso" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"asr" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"asu" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asy" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asA" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asB" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/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, -/area/security/brig) -"asG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"asH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asI" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asJ" = ( -/obj/item/folder/red, -/obj/item/taperecorder, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/bridge) -"asN" = ( -/turf/open/floor/plasteel, -/area/bridge) -"asO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/bridge) -"asP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"asQ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 10 - }, -/obj/machinery/button/door{ - id = "bridgespace"; - name = "Bridge Space Lockdown"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asR" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asS" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"asT" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/button/door{ - id = "bridgespace"; - name = "Bridge Space Lockdown"; - pixel_x = 24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asU" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"asV" = ( -/obj/structure/closet/crate/goldcrate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"asW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asZ" = ( -/obj/structure/closet/crate/silvercrate, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"ata" = ( -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"atb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"atc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"atd" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"atf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/dorms) -"atg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ath" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Laundry Room"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ati" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"atj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"atk" = ( -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"atl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"atn" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"atp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/maintenance/department/security/brig) -"atq" = ( -/turf/open/floor/circuit/green, -/area/maintenance/department/security/brig) -"atv" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/security/brig) -"atw" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atx" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) -"aty" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"atA" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atC" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) -"atE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atF" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"atG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atH" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/fore) -"atL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/bridge) -"atM" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"atN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/bridge) -"atO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"atP" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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/dark, -/area/bridge) -"atQ" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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/dark, -/area/bridge) -"atR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atU" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atX" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atY" = ( -/turf/closed/wall, -/area/bridge) -"atZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"aua" = ( -/obj/structure/closet/secure_closet/freezer/money, -/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/clothing/head/bearpelt, -/obj/item/skub, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aub" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aud" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("vault") - }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aue" = ( -/obj/structure/safe, -/obj/item/bikehorn/golden, -/obj/item/ammo_box/a357, -/obj/item/tank/internals/plasma/full, -/obj/item/disk/nuclear/fake, -/obj/item/stack/ore/diamond, -/obj/item/gun/energy/disabler, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aug" = ( -/obj/machinery/button/door{ - id = "stationawaygate"; - name = "Gateway Access Shutter Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/crate/internals, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/gateway) -"auh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aui" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"auk" = ( -/obj/machinery/door/airlock{ - name = "Laundry Room" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aul" = ( -/obj/machinery/computer/shuttle/monastery_shuttle, -/obj/structure/sign/warning/pods{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"aum" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aur" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"aus" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aut" = ( -/obj/item/clothing/head/collectable/police, -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/department/security/brig) -"auu" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/department/security/brig) -"aux" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"auB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/paper_bin, -/obj/item/pen{ - layer = 3.1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auE" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 36; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "63" - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auG" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auH" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"auI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"auJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/bridge) -"auN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auR" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auT" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auU" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/bridge) -"auV" = ( -/turf/open/floor/plating, -/area/bridge) -"auW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"auX" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"auY" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - req_access_txt = "53" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auZ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"ava" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Access"; - req_access_txt = "62" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "stationawaygate"; - name = "Gateway Access Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avc" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/gateway) -"avd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm3Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"ave" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm3Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avg" = ( -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Dormitories Fore" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avk" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 30 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"avn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"avp" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/box; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"avq" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock"; - dir = 8 - }, -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avs" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/item/bedsheet/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avu" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/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/security/brig) -"avv" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/obj/item/bedsheet/green, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avw" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avx" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/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/security/brig) -"avy" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/item/bedsheet/orange, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avA" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avD" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avF" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/curtain, -/obj/item/soap/deluxe, -/obj/item/bikehorn/rubberducky, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avI" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avK" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avL" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fore) -"avM" = ( -/obj/machinery/door/airlock/command{ - name = "Balcony"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"avN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avO" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Bridge MiniSat Access Foyer"; - dir = 1 - }, -/obj/machinery/light/small, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avQ" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avV" = ( -/obj/structure/table/glass, -/obj/item/storage/box/ids{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/PDAs, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avW" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avX" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avY" = ( -/obj/structure/table/glass, -/obj/item/aicard, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avZ" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/item/laser_pointer/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awb" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Bridge External Access"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"awd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"awe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awh" = ( -/obj/machinery/camera{ - c_tag = "Vault Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awn" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"awo" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/dorms) -"awp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/dorms) -"awq" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"awr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aws" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aww" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"awB" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"awC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness/recreation"; - dir = 1; - name = "Fitness Room APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"awD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"awE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"awH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awI" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awJ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awL" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awM" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/item/radio, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awP" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/reagent_containers/food/snacks/donut, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/structure/table/reinforced, -/obj/item/folder/red{ - layer = 2.9 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awQ" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awR" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awS" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"awT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Captain's Office Access"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"awU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awY" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axb" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axe" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) -"axi" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"axj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"axm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/central) -"axn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"axp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axq" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"axv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"axw" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"axC" = ( -/turf/closed/wall, -/area/maintenance/solars/port) -"axE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axG" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axJ" = ( -/obj/structure/sign/departments/security{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axN" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axP" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters" - }, -/obj/item/clothing/suit/armor/riot/knight/blue, -/obj/item/clothing/head/helmet/knight/blue, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axQ" = ( -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"axS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axT" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_y = 30 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axU" = ( -/obj/machinery/computer/card, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axV" = ( -/obj/machinery/computer/communications, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axW" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aya" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aye" = ( -/obj/machinery/door/airlock/command{ - name = "External Access"; - req_one_access_txt = "19; 65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ayf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/central) -"ayi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm2Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"ayj" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm2Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayl" = ( -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aym" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"ayn" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayo" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayq" = ( -/obj/structure/table/wood, -/obj/item/storage/backpack, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayr" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ays" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"ayt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Recreation Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayw" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/port) -"ayz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayA" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "portsolar"; - name = "Port Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayC" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Solar APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ayE" = ( -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_x = -25; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayF" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayI" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigS2"; - location = "BrigP" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayN" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigP"; - location = "BrigS1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayO" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayQ" = ( -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayR" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayS" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayT" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"ayX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"ayY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"ayZ" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aza" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azb" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azc" = ( -/obj/item/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aze" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azg" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azh" = ( -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azk" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Central"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/bridge"; - dir = 4; - name = "Bridge APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azp" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Bridge External Access"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azr" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azs" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azu" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"azv" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azx" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azy" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"azB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Recreation Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azE" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Holodeck"; - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"azH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/port) -"azI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/port) -"azJ" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/port) -"azK" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"azL" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"azN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azY" = ( -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"azZ" = ( -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aAa" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/potato{ - name = "\improper Beepsky's emergency battery" - }, -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aAb" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAd" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAf" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Port"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAk" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Tool"; - location = "BrigS2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAn" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Starboard"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAo" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAq" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAr" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAs" = ( -/obj/structure/table/wood, -/obj/item/kitchen/fork, -/obj/item/card/id/captains_spare, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aAu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAv" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAw" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAx" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAy" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Entrance Lockdown"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAB" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aAC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access_txt = "16" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aAD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Entrance Lockdown"; - pixel_x = 24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAH" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAM" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAN" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aAO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aAP" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aAQ" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aAS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/port) -"aAW" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/multitool, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAX" = ( -/obj/structure/chair/stool, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAY" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aBa" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"aBc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aBd" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aBe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "datboidetective"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aBf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aBg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aBh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aBi" = ( -/turf/closed/wall, -/area/storage/primary) -"aBj" = ( -/turf/closed/wall/r_wall, -/area/storage/primary) -"aBk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/vending/wardrobe/cap_wardrobe, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBm" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBn" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBp" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBq" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBs" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBt" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBx" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/turret_protected/ai_upload"; - dir = 1; - name = "Upload APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBy" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/item/storage/secure/safe{ - pixel_x = -22; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBA" = ( -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBB" = ( -/obj/machinery/computer/cargo/request, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBC" = ( -/obj/structure/closet/secure_closet/hop, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBD" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBE" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBF" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBG" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBH" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Central Hall APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBK" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/crowbar, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm1Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aBM" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm1Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBO" = ( -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBT" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBU" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBW" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBX" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/obj/item/storage/backpack, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aBZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aCa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port) -"aCc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCd" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCe" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood, -/area/lawoffice) -"aCf" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/turf/open/floor/wood, -/area/lawoffice) -"aCg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCi" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 12 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Detective's office"; - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCk" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCm" = ( -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "datboidetective"; - name = "Privacy Shutters"; - pixel_x = 2; - pixel_y = 26 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 27 - }, -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCo" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/hand_labeler, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aCr" = ( -/obj/machinery/vending/assist, -/obj/structure/sign/poster/official/pda_ad{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCt" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/analyzer, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCu" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCv" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/assembly/igniter, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/item/assembly/voice, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCw" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/flashlight, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCx" = ( -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/machinery/disposal/deliveryChute{ - name = "Crate Disposal Chute"; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - name = "Crate Disposal Chute" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCy" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"aCE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCG" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Port"; - dir = 4; - network = list("aiupload") - }, -/obj/item/aiModule/reset, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCK" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCM" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/freeform, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Starboard"; - dir = 8; - network = list("aiupload") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aCO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCP" = ( -/obj/structure/table/wood, -/obj/item/pen{ - layer = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 6 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCQ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCR" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCS" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCY" = ( -/obj/machinery/holopad, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aDa" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aDb" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDc" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDe" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"aDf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDh" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Dormitories Aft"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/dorms) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side, -/area/crew_quarters/dorms) -"aDk" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/crew_quarters/dorms) -"aDl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aDm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aDo" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDq" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDr" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDw" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Tool Storage APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aDx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDy" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDA" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aDB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDC" = ( -/obj/structure/table/wood, -/obj/item/storage/lockbox/medal, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDE" = ( -/obj/structure/chair/comfy/brown, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDF" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDG" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDI" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDK" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aDL" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aDM" = ( -/obj/machinery/holopad, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Center"; - dir = 1; - network = list("aiupload") - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aDN" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/structure/sign/plaques/kiddie{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aDR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Head of Personnel APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDZ" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEb" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aEd" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"aEe" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEf" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEg" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEh" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEi" = ( -/obj/effect/landmark/blobstart, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"aEj" = ( -/turf/closed/wall, -/area/maintenance/department/cargo) -"aEk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aEl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aEm" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEn" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEo" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/lighter, -/obj/item/clothing/glasses/hud/security/sunglasses, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEp" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEq" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEt" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aEu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEw" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEx" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEy" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEz" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aEB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge Port Entrance"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aED" = ( -/obj/structure/table, -/obj/item/aiModule/core/full/asimov, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/item/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/item/aiModule/core/full/custom, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEE" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEF" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aEG" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aEH" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aEI" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - dir = 8; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/aiModule/reset/purge, -/obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/item/aiModule/supplied/protectStation, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Bridge Starboard Entrance"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEN" = ( -/obj/structure/table/wood, -/obj/item/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEO" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aEP" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aEQ" = ( -/obj/structure/chair/office/dark, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 25; - pixel_y = -26; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = 25; - pixel_y = -36; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -35 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aER" = ( -/obj/structure/table/wood, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aES" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Vault"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aET" = ( -/turf/closed/wall, -/area/storage/emergency/starboard) -"aEU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/item/storage/toolbox, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aEW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFb" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFe" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFg" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFi" = ( -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFj" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Entrance"; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"aFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/minor/bowler_or_that, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aFm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFn" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFo" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/effect/landmark/start/detective, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFr" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Entrance"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFs" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/electronics/apc, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aFt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFv" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFw" = ( -/obj/structure/table/wood, -/obj/item/camera, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aFx" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aFy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aFz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aFA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/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) -"aFB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Reception Window" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) -"aFC" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aFD" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/taperecorder, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aFE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aFF" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Starboard Emergency Storage APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aFG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFK" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFM" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFN" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFO" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFP" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFQ" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/food/condiment/rice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aFV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; - req_access_txt = "4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aFW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFX" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFY" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aGa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGe" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/item/flashlight, -/obj/item/gps, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGf" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGg" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/assembly/timer, -/obj/item/radio, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGh" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGj" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGk" = ( -/obj/machinery/vending/boozeomat/pubby_captain, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGm" = ( -/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/computer/arcade{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGn" = ( -/obj/item/kirbyplants/photosynthetic{ - layer = 3.1 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aGo" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGp" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign2"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGq" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign3"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGr" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign4"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGs" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign5"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGt" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGu" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGw" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGx" = ( -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 28; - pixel_y = -28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGy" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGz" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aGB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aGC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGF" = ( -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGH" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGI" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGJ" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGK" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/cookie{ - desc = "It has a distinctly eldritch taste to it."; - name = "grandma's cookie" - }, -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGL" = ( -/obj/structure/chair/stool, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGM" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGN" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGO" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGV" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGX" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plating, -/area/storage/primary) -"aGY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGZ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plating, -/area/storage/primary) -"aHb" = ( -/obj/machinery/computer/arcade, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aHc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aHd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHe" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHg" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHh" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHj" = ( -/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/hallway/primary/central) -"aHk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHl" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHn" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Starboard Emergency Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aHo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHp" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHq" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHr" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHs" = ( -/obj/structure/closet/crate, -/obj/item/cultivator, -/obj/item/shovel/spade, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/seeds/wheat/rice, -/obj/item/seeds/replicapod, -/obj/item/seeds/carrot, -/obj/item/seeds/tomato, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHt" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHu" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHz" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aHA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aHC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aHE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorms"; - location = "Tool" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHR" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aId" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIe" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aIi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIj" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/sign/departments/restroom{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/central) -"aIk" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aIl" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aIp" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aIq" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/lawyer, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aIr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/port) -"aIC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aIH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aIL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorms"; - location = "Tool" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIX" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/observer_start, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Robo"; - location = "HoP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJi" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HoP"; - location = "Dorms" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/primary/central) -"aJn" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aJo" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/table, -/obj/structure/bedsheetbin/towel, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aJp" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aJr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"aJs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aJv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJw" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/chaplain, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Fore" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aJE" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aJF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/secondary/exit/departure_lounge"; - dir = 1; - name = "Departure Lounge APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aJG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = -24 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJH" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJM" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bathroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJT" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJW" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway EVA"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJX" = ( -/obj/structure/sign/directions/security{ - dir = 8; - pixel_x = -32; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/sign/directions/science{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKe" = ( -/obj/machinery/camera{ - c_tag = "Dormitories Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"aKh" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKi" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKj" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Dormitory Cyborg Recharging Station" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKo" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aKp" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKq" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKr" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/curator, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKz" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKD" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKH" = ( -/obj/structure/closet/firecloset, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKJ" = ( -/turf/closed/wall, -/area/storage/art) -"aKK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/art) -"aKL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/storage/art) -"aKM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/cafeteria/lunchroom) -"aKN" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/cafeteria/lunchroom) -"aKO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Lunchroom" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/cafeteria/lunchroom) -"aKP" = ( -/turf/closed/wall, -/area/crew_quarters/cafeteria/lunchroom) -"aKQ" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"aKR" = ( -/obj/machinery/door/airlock{ - id_tag = "Potty1"; - name = "Unisex Restrooms" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"aKT" = ( -/turf/closed/wall, -/area/maintenance/department/crew_quarters/bar) -"aKU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aKV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aKY" = ( -/turf/closed/wall/r_wall, -/area/storage/eva) -"aKZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/eva) -"aLa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "EVA Storage Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"aLd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command/glass{ - name = "Teleporter"; - req_access_txt = "17" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLe" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aLf" = ( -/turf/closed/wall, -/area/quartermaster/office) -"aLg" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"aLh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLj" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLl" = ( -/obj/item/storage/box/mousetraps, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLm" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"aLn" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aLo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aLu" = ( -/obj/structure/closet/emcloset, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aLv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aLw" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"aLx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXnineteen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLz" = ( -/obj/machinery/photocopier, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLA" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/friedegg, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLB" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLD" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLG" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - id = "Potty1"; - name = "Bathroom Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 36; - pixel_y = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLI" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aLL" = ( -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/button/door{ - id = "evashutter"; - name = "EVA Shutters Control"; - pixel_x = -24; - req_access_txt = "18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aLR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLU" = ( -/obj/structure/closet/crate/rcd, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aLV" = ( -/turf/closed/wall, -/area/storage/eva) -"aLW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLX" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aMa" = ( -/obj/structure/closet/crate, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutters Control"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "17" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aMb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMe" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo Security Post" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMf" = ( -/obj/machinery/computer/secure_data, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/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/checkpoint/supply) -"aMg" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMk" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMn" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/warehouse) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMr" = ( -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMt" = ( -/obj/structure/closet/cardboard, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo Warehouse" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMu" = ( -/obj/item/cigbutt/cigarbutt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/warehouse"; - dir = 4; - name = "Cargo Warehouse APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMy" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMz" = ( -/obj/structure/grille/broken, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMA" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aME" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "garbagestacked"; - name = "disposal conveyor" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMG" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aML" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aMR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/art) -"aMV" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/toolbox/artistic{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/artistic{ - pixel_x = -3 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMX" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Art Storage APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMY" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aMZ" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Lunchroom"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNa" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "Cafeteria APC"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNb" = ( -/obj/machinery/vending/sustenance{ - contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); - desc = "A vending machine which vends food."; - product_ads = "Sufficiently healthy." - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNc" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNd" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNe" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - name = "Auxiliary Restrooms APC"; - pixel_y = -24 - }, -/obj/item/soap/nanotrasen, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aNg" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNh" = ( -/obj/item/extinguisher, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aNi" = ( -/obj/structure/grille/broken, -/obj/item/crowbar, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aNj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNm" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNp" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aNq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNr" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNt" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide/eva, -/obj/item/tank/jetpack/carbondioxide/eva{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aNu" = ( -/obj/structure/closet/crate, -/obj/item/melee/flyswatter, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aNv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aNw" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/teleporter) -"aNx" = ( -/turf/open/floor/plasteel, -/area/teleporter) -"aNy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aNz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"aNA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aNB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aNC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aND" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNE" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNJ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNK" = ( -/obj/structure/table, -/obj/item/destTagger, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNL" = ( -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/packageWrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNM" = ( -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNN" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNO" = ( -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNP" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aNT" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "trash" - }, -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNU" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 8; - output_dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbagestacked" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNX" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aOf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOg" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOh" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aOm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/wrench, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aOs" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aOt" = ( -/obj/structure/table, -/obj/item/instrument/glockenspiel{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOu" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Art Storage"; - dir = 1 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOv" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 20; - layer = 3.1 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - layer = 3.2 - }, -/obj/item/stack/rods{ - amount = 20; - layer = 3.3 - }, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/nineteenXnineteen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOw" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aOx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOA" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOB" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aOC" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/storage/eva) -"aOD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aOE" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Teleporter"; - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aOF" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aOG" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aOH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aOI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aOJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Shutters" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"aOK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOL" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aON" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aOO" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOP" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aOU" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOV" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aOW" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - icon_state = "right"; - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aOX" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aOY" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aOZ" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPa" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aPf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aPg" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aPi" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aPn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aPo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit/departure_lounge) -"aPq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aPt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aPv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aPw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aPz" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aPA" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPB" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPD" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPE" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aPF" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPH" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aPI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPL" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aPM" = ( -/obj/structure/table, -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPN" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPO" = ( -/obj/machinery/teleport/station, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPP" = ( -/obj/machinery/teleport/hub, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPQ" = ( -/obj/structure/closet/crate, -/obj/item/crowbar, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPT" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Post - Cargo APC"; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aPU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aPV" = ( -/obj/structure/filingcabinet/security, -/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, -/area/security/checkpoint/supply) -"aPW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"aPX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aPY" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aPZ" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQa" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Cargo Mailroom"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQc" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQd" = ( -/obj/item/flashlight, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQe" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQf" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQg" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQj" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aQk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"aQn" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "garbage"; - name = "disposal conveyor" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aQs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQt" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aQu" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aQv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQw" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aQx" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aQz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aQE" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aQI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aQJ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aQK" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQL" = ( -/obj/structure/grille/broken, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQM" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQS" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQT" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/bar) -"aQU" = ( -/obj/machinery/vending/coffee, -/obj/machinery/camera{ - c_tag = "Bar Backroom" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQV" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/obj/item/stack/cable_coil, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/broken_bottle, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQY" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aQZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/crowbar, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "EVA Storage APC"; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRa" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRb" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRc" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aRg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aRh" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRi" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 4; - name = "Delivery Office APC"; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRm" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aRn" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRo" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRq" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aRt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"aRu" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRv" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRB" = ( -/obj/structure/closet/emcloset, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aRD" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRE" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRF" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRG" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assault_pod/mining, -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/auxbase{ - dir = 8; - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRH" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/hallway/primary/central) -"aRI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aRJ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRL" = ( -/turf/closed/wall, -/area/hydroponics) -"aRM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRN" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aRO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aRP" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aRQ" = ( -/obj/item/gun/ballistic/revolver/doublebarrel{ - pixel_y = 11 - }, -/obj/structure/table/wood, -/obj/item/coin/silver, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c100, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRR" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/item/clothing/under/rank/civilian/janitor/maid, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/bar) -"aRS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRY" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRZ" = ( -/obj/item/trash/tray, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSa" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/item/grown/bananapeel, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSb" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/item/seeds/banana, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSf" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_one_access_txt = "48;50" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aSi" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSl" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Maintenance APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aSm" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSo" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Disposal APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aSv" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSw" = ( -/obj/item/statuebust, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSx" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSA" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSE" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSF" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSG" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/reagent_containers/glass/bottle/mutagen, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aSI" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSJ" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSK" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSL" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Kitchen" - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aSM" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/bar) -"aSN" = ( -/obj/item/assembly/mousetrap, -/obj/item/storage/box/mousetraps, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/bar) -"aSO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSP" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/storage/box/beanbag, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSS" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aST" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aSY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"aTf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTm" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTp" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTr" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTs" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTw" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTB" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTC" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"aTD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/solar/starboard) -"aTE" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"aTH" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 4; - height = 15; - id = "emergency_home"; - name = "PubbyStation emergency evac bay"; - width = 20 - }, -/turf/open/space/basic, -/area/space) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aTK" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTL" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTM" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Escape"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aTP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aTQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTW" = ( -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTX" = ( -/obj/structure/kitchenspike, -/obj/item/assembly/mousetrap, -/obj/item/reagent_containers/food/snacks/deadmouse, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aTY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aTZ" = ( -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUa" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/crowbar, -/obj/item/wrench, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUb" = ( -/obj/structure/plasticflaps/opaque, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/bar) -"aUc" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aUd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aUe" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/bar) -"aUf" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUi" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Cargo"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUl" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUm" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUo" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUq" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUy" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aUz" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aUA" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aUB" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aUC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aUD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"aUK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUQ" = ( -/obj/structure/plasticflaps/opaque, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"aUR" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 1; - freq = 1400; - location = "Hydroponics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUS" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUU" = ( -/obj/machinery/power/apc{ - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUW" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUX" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUZ" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVa" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVc" = ( -/obj/machinery/door/window/southleft{ - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aVd" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVg" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVh" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/grappa{ - pixel_x = 10; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVi" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/hcider{ - layer = 3.1; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - layer = 3.1; - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - layer = 3.2; - pixel_x = -15; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ - layer = 3.1; - pixel_x = 13; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ - layer = 3.2; - pixel_x = 13; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_x = -10; - pixel_y = 15 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_x = 28; - req_access_txt = "25" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVk" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/instrument/accordion{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVl" = ( -/obj/structure/dresser, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVm" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aVo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVs" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/conveyor_switch{ - id = "cargodeliver" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVw" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVy" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVz" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad" - }, -/obj/machinery/camera{ - c_tag = "Cargo Supply Dock"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVG" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVH" = ( -/obj/structure/closet/l3closet/scientist, -/obj/item/book/manual/wiki/chemistry, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVI" = ( -/obj/structure/closet, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/storage/crayons, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVM" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVS" = ( -/turf/closed/wall, -/area/janitor) -"aVT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"aVU" = ( -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Janitor Delivery"; - req_access_txt = "26" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Janitor" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aVV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aVW" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVX" = ( -/obj/machinery/power/apc{ - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVZ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aWb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWd" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey/punpun, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWe" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/camera{ - c_tag = "Bar Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWm" = ( -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWn" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_x = 28; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWs" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWu" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption{ - input_dir = 4; - output_dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"aWw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWx" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #2" - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay"; - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWz" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aWE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aWF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Hallway"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWM" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWN" = ( -/obj/machinery/camera{ - c_tag = "Custodial Quarters" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWO" = ( -/obj/structure/bed, -/obj/effect/landmark/start/janitor, -/obj/item/bedsheet/purple, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWP" = ( -/obj/machinery/hydroponics/constructable, -/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) -"aWQ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 21 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWT" = ( -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 30 - }, -/obj/structure/sink/kitchen{ - name = "utility sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWU" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Bar APC"; - pixel_x = 27 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXh" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXm" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 18 - }, -/obj/machinery/requests_console{ - department = "Theatre"; - name = "theatre RC"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/clown, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/cardboard_cutout, -/obj/structure/mirror{ - pixel_x = 28; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aXq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"aXv" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Cargo Foyer"; - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXw" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXx" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXy" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXz" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXA" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXB" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/security/checkpoint/customs) -"aXC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aXF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aXG" = ( -/obj/structure/table, -/obj/effect/holodeck_effect/cards{ - pixel_y = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aXH" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/customs) -"aXI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "papersplease"; - name = "security shutters" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - dir = 2; - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/door/poddoor/preopen{ - id = "papersplease"; - name = "privacy shutters" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aXK" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"aXL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/janitor) -"aXN" = ( -/obj/structure/bedsheetbin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXP" = ( -/obj/structure/table, -/obj/item/clothing/under/costume/maid, -/obj/item/key/janitor, -/obj/item/grenade/clusterbuster/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXR" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXS" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"aXT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hydroponics) -"aXU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXW" = ( -/obj/machinery/plantgenes{ - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXX" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXY" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/departments/botany{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYa" = ( -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/machinery/door/airlock{ - name = "Bar Access"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aYd" = ( -/obj/machinery/door/airlock{ - name = "Service Access"; - req_one_access_txt = "25; 26; 28; 35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYe" = ( -/obj/structure/table/reinforced, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYf" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/rag, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYh" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/instrument/guitar, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYi" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYj" = ( -/obj/machinery/door/airlock{ - name = "Theatre Storage"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYl" = ( -/obj/structure/table/wood, -/obj/item/soap, -/obj/structure/table/wood, -/obj/item/bikehorn, -/obj/item/toy/cattoy, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYm" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/item/lipstick/random, -/obj/item/clothing/gloves/color/rainbow, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYn" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -32 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYo" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYp" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYq" = ( -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYv" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYC" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYD" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/matches, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYE" = ( -/obj/structure/table, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYF" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/item/light/bulb, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYG" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYJ" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYK" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/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/checkpoint/customs) -"aYL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Quarters"; - req_access_txt = "26" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aYN" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYR" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYS" = ( -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYT" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYU" = ( -/obj/machinery/processor, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aYY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZg" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZj" = ( -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/machinery/computer/bounty{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZk" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZq" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aZw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aZx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aZy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZF" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZJ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZK" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/checkpoint/customs) -"aZL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aZP" = ( -/turf/open/floor/plasteel, -/area/janitor) -"aZQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/power/apc{ - dir = 1; - name = "Custodial Closet APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"aZR" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hydroponics) -"aZT" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZU" = ( -/obj/machinery/vending/hydronutrients, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"aZV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZZ" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"baa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bab" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bac" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bad" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"bae" = ( -/obj/structure/chair/stool/bar, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bag" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bah" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"ban" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 1 - }, -/obj/structure/chair/wood/normal, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bao" = ( -/obj/machinery/computer/slot_machine, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bap" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"baq" = ( -/obj/machinery/computer/arcade, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bas" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bat" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bau" = ( -/obj/machinery/photocopier, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bav" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/office"; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baw" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bax" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baz" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "Cargo Bay APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baG" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard) -"baH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Bridge External Access"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"baI" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"baJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baK" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baL" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baQ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "papersplease"; - name = "Shutters Control Button"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "1" - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -26; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baR" = ( -/obj/item/pen, -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baS" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baT" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baU" = ( -/obj/machinery/power/apc{ - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable, -/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, -/area/security/checkpoint/customs) -"baV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "jangarage"; - name = "Custodial Closet Shutters Control"; - pixel_x = 25; - req_access_txt = "26" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baX" = ( -/obj/vehicle/ridden/janicart, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "jangarage"; - name = "Custodial Closet Shutters Control"; - pixel_x = -25; - req_access_txt = "26" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/janitor) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/janitor) -"baZ" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bba" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbd" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbg" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbh" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbi" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"bbm" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbo" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbp" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbr" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbs" = ( -/obj/item/cane, -/obj/item/clothing/head/that, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/clothing/under/dress/sundress, -/obj/item/clothing/under/suit/waiter, -/obj/item/clothing/under/dress/blacktango, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbu" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bbv" = ( -/obj/structure/chair/stool, -/obj/item/trash/can, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbw" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbx" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bby" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Office Maintenance"; - req_access_txt = "50" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"bbB" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/clothing/under/misc/mailman, -/obj/item/clothing/head/mailman, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbC" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/hand_labeler, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbD" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbE" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bbF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bbG" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bbH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bbI" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bbK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bbL" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bbM" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/multitool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bbP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard) -"bbQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbV" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "papersplease"; - name = "privacy shutters" - }, -/obj/item/crowbar, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bbW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "jangarage"; - name = "Custodial Closet Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/janitor) -"bbX" = ( -/obj/structure/janitorialcart, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bbY" = ( -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 8 - }, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel, -/area/janitor) -"bbZ" = ( -/obj/machinery/seed_extractor, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bca" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bcb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bcc" = ( -/obj/machinery/biogenerator, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bcd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/reagent_containers/food/snacks/cube/monkey, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bce" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bcg" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bch" = ( -/obj/structure/table, -/obj/item/storage/box/ingredients/wildcard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bck" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcm" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bco" = ( -/obj/structure/table/wood/fancy, -/obj/item/gun/ballistic/revolver/russian{ - pixel_y = 16 - }, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bcq" = ( -/obj/item/clothing/glasses/monocle, -/obj/item/instrument/recorder, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bcr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcs" = ( -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bcx" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"bcy" = ( -/obj/item/chair, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bcz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcA" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/belt/fannypack/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcC" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcD" = ( -/obj/structure/closet/wardrobe/miner, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcK" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/bridge) -"bcO" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bcQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard) -"bcR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard) -"bcS" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"bcT" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard) -"bcU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solar/starboard) -"bcV" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"bcX" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bcY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bcZ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bda" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bdd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bde" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdi" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdj" = ( -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdk" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdm" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hydroponics) -"bdn" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdp" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdq" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bdz" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bdB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdF" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/qm"; - dir = 8; - name = "Quartermaster APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdH" = ( -/obj/machinery/computer/bounty{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bdJ" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdK" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdM" = ( -/obj/machinery/requests_console{ - department = "Mining"; - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bdR" = ( -/obj/structure/chair/stool, -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bdS" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "starboardsolar"; - name = "Starboard Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bdU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/starboard) -"bdV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bdW" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bea" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/custodian{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bec" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bed" = ( -/obj/structure/table, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"bee" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/mousetraps, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/clothing/head/crown, -/turf/open/floor/plasteel, -/area/janitor) -"bef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"beg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bei" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"bej" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bek" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bel" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bem" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ben" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bep" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"beq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ber" = ( -/obj/effect/landmark/start/cook, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"beu" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bex" = ( -/obj/machinery/camera{ - c_tag = "Bar Port"; - dir = 1 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bey" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bez" = ( -/obj/structure/table/wood, -/obj/item/instrument/trombone, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beA" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = -28; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beC" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = -28; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/kitchen/fork, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beE" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Bar Starboard"; - dir = 1 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beI" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"beJ" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/keycard_auth{ - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beK" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beL" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beM" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beO" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beP" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"beS" = ( -/obj/item/caution, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"beU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard) -"beY" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Central"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfc" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bff" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bfj" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfk" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfl" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfm" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfn" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfp" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/button/door{ - id = "kitchenwindowshutters"; - name = "Kitchen Window Shutters Control"; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bfr" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bfs" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bft" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/turf_decal/bot, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bfu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfv" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfw" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/power/apc{ - dir = 1; - name = "Mech Bay APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfy" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/status_display/evac{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfz" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfA" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfB" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/computer/card/minor/qm{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfC" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Cargo Quartermaster's Office"; - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/coin/silver, -/obj/item/stamp/qm, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfD" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/computer/security/qm{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfE" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/machinery/camera{ - c_tag = "Cargo Mining Dock"; - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/shaft_miner, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfH" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfI" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bfJ" = ( -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bfK" = ( -/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) -"bfM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paperplane, -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfP" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfZ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/lounge) -"bga" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"bgb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Lounge" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"bgc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"bgd" = ( -/turf/closed/wall, -/area/crew_quarters/lounge) -"bge" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgh" = ( -/obj/structure/chair{ - name = "Throne of Custodia" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgi" = ( -/obj/machinery/vending/cola, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgj" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"bgk" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"bgl" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"bgn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgo" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/storage/fancy/rollingpapers, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgp" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgr" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/donut, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bgu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bgv" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgw" = ( -/obj/structure/chair, -/obj/item/clothing/head/bowler, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgx" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/structure/chair, -/obj/item/clothing/mask/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgz" = ( -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgB" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgC" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgE" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/robot_debris{ - icon_state = "gib3" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgI" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Mining Dock APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgM" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 13; - id = "arrivals_stationary"; - name = "pubby arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/pubby; - width = 6 - }, -/turf/open/space/basic, -/area/space) -"bgU" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgV" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgY" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "loungeshutters"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bha" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhe" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 28 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = 38 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Bar1"; - location = "Robo" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhn" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bho" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bhp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bht" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhu" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/light, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhv" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhF" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bhG" = ( -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bhH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bhI" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Lounge"; - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhL" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigS1"; - location = "Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lounge"; - location = "Kitchen" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhP" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 25; - req_access_txt = "29" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -25; - req_access_txt = "29" - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhU" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bhV" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bib" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bic" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bid" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bie" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"big" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bih" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bij" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bik" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bil" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bim" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bin" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Hydroponics"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bio" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bip" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biq" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bir" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Robotics"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bis" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bit" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biw" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bix" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/robot_debris{ - icon_state = "gib3" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biI" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"biK" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/lounge"; - name = "Lounge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biO" = ( -/obj/structure/table/glass, -/obj/item/healthanalyzer{ - layer = 3.1 - }, -/obj/item/pen{ - layer = 3.2 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/departments/examroom{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biR" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Genetics"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biT" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Port Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/storage/emergency/port) -"biX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/emergency/port) -"biY" = ( -/turf/closed/wall, -/area/medical/morgue) -"biZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bja" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bjb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/checkpoint/medical) -"bjc" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"bjd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bje" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/central) -"bjf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bjg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bjh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bji" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjk" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bar"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjl" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bjr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bju" = ( -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bjv" = ( -/obj/structure/closet, -/obj/item/weldingtool, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjw" = ( -/turf/closed/wall/r_wall, -/area/science/explab) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bjD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjI" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjJ" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjK" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjL" = ( -/turf/closed/wall, -/area/storage/emergency/port) -"bjN" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjQ" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bjR" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjS" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjW" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjX" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bjY" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bjZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bka" = ( -/obj/machinery/computer/security, -/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/checkpoint/medical) -"bkb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bkc" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkd" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bke" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkh" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bki" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bkn" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci3"; - location = "Sci2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bko" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bkp" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkq" = ( -/obj/structure/table, -/obj/item/gps{ - gpstag = "RD0" - }, -/obj/item/assembly/igniter{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/head/welding, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkr" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bks" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/stack/cable_coil, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkt" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"bku" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bkv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bkw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bkx" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"bky" = ( -/turf/open/floor/engine, -/area/science/explab) -"bkz" = ( -/obj/machinery/camera{ - c_tag = "Experimentation Lab Chamber"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/explab) -"bkA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bkB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"bkD" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"bkF" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bkH" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"bkP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/starboard) -"bkQ" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkW" = ( -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/cautery, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bkX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bkY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bkZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Foyer"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bla" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"blb" = ( -/turf/open/floor/plating, -/area/storage/emergency/port) -"blc" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bld" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ble" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blg" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"blj" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"blk" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bll" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bln" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blq" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blr" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bls" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blt" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blv" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/item/clothing/glasses/science, -/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/hallway/primary/aft) -"blw" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bly" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blC" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/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, -/area/hallway/primary/aft) -"blE" = ( -/obj/structure/filingcabinet/chestdrawer, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"blF" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blH" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - network = list("ss13","rd") - }, -/obj/structure/sink/kitchen{ - name = "utility sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blI" = ( -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blJ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 14 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"blM" = ( -/obj/machinery/rnd/server, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"blN" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"blP" = ( -/obj/effect/landmark/event_spawn, -/obj/item/beacon, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"blQ" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"blR" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"blS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/book/manual/wiki/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"blT" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/obj/item/integrated_electronics/wirer, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/integrated_electronics/debugger, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_y = 30 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blV" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/stack/sheet/metal/ten, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blW" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/wirer, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_y = 30 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blX" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"blZ" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bmc" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bmd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bme" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bmf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bmg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_one_access_txt = "12;45;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bmh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmk" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bml" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bmn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bmp" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bmq" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bmr" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bms" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/medical"; - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera{ - c_tag = "Medbay Security Post"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmv" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/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, -/area/security/checkpoint/medical) -"bmw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmy" = ( -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Kitchen"; - location = "Med" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmC" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmH" = ( -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci2"; - location = "Sci" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmL" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bmM" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmN" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmO" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmR" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bmS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bmT" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"bmU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bmV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/engine, -/area/science/explab) -"bmW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/science/explab) -"bmX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/explab) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/explab) -"bmZ" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_x = -28; - pixel_y = 3 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bna" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/box/red, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bnb" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bnc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bnd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"bnh" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bni" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"bnj" = ( -/turf/closed/wall, -/area/science/xenobiology) -"bnl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bnn" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"bno" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnq" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnt" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bnv" = ( -/turf/closed/wall, -/area/medical/genetics) -"bnw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Cloning"; - req_one_access_txt = "5;9" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bnx" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/mask/surgical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bny" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bnz" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bnA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bnB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/checkpoint/medical) -"bnC" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnD" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnO" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bnP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnQ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnS" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/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/assembly/flash/handheld, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bnT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bnU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bnV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/engine, -/area/science/explab) -"bnW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/science/explab) -"bnX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"bnY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/science/explab) -"bnZ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"boa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/science/explab) -"boc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bod" = ( -/turf/closed/wall, -/area/science/explab) -"boe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bof" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/science/explab) -"bog" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/explab) -"boh" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/science/explab) -"bok" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bom" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"bon" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"boo" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Port Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bop" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bor" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bos" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/genetics) -"bot" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bou" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/genetics) -"bov" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bow" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"box" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boy" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boz" = ( -/obj/machinery/vending/clothing, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"boC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"boD" = ( -/obj/item/ectoplasm, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"boE" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boH" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boI" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/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) -"boK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boL" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boM" = ( -/obj/structure/bed/roller, -/obj/machinery/camera{ - c_tag = "Medbay Entrance"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boO" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boP" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boQ" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boR" = ( -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/bot, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/obj/machinery/camera{ - c_tag = "Research Division Lobby"; - dir = 1 - }, -/obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boX" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = -26; - pixel_y = 4; - req_access_txt = "29" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpc" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/camera{ - c_tag = "Server Room"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpd" = ( -/obj/machinery/button/door{ - id = "testlab"; - name = "Window Blast Doors"; - pixel_x = -6 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Door"; - pixel_x = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpe" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bpg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bph" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Central"; - network = list("ss13","rd") - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpi" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpn" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bpo" = ( -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bpp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bpq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bpr" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/science/xenobiology) -"bpt" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bpu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bpv" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/medical/genetics) -"bpw" = ( -/obj/structure/flora/grass/jungle, -/obj/item/reagent_containers/food/snacks/grown/banana, -/turf/open/floor/grass, -/area/medical/genetics) -"bpx" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/junglebush, -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/genetics) -"bpy" = ( -/obj/machinery/clonepod, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bpz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"bpD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bpM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/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) -"bpO" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpR" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpS" = ( -/obj/structure/table/reinforced, -/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) -"bpT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"bpW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bpX" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) -"bpY" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bqb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"bqc" = ( -/obj/structure/table/reinforced, -/obj/item/pen{ - layer = 3.1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/item/folder/white, -/turf/open/floor/plating, -/area/science/lab) -"bqd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqe" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqg" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -3 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqk" = ( -/obj/machinery/aug_manipulator, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bql" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Server Room APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqm" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqn" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqo" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqq" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqs" = ( -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqx" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bqC" = ( -/obj/machinery/monkey_recycler, -/obj/structure/window/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bqE" = ( -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bqF" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bqG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqH" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqI" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bqS" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - dir = 4; - name = "Arrivals APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqT" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/machinery/camera{ - c_tag = "Genetics Monkey Pen Fore"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bqU" = ( -/obj/structure/sink/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 6 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bqV" = ( -/obj/structure/flora/grass/jungle/b, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bqW" = ( -/obj/machinery/computer/cloning{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bqX" = ( -/obj/machinery/holopad, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bqY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bqZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bra" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "GeneticsDoor"; - name = "Cloning"; - req_one_access_txt = "5;9" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"brb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"brc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"brd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bre" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brh" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bri" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brj" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brk" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brl" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brm" = ( -/obj/machinery/chem_master, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brq" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/item/stack/cable_coil/orange, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brr" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brt" = ( -/obj/structure/chair/office/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/lab) -"bru" = ( -/obj/machinery/holopad, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"brw" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"brx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bry" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/crowbar, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"brz" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/bot_assembly/cleanbot, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brC" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brF" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brL" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brM" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"brR" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"brT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/l3closet, -/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/xenobiology) -"brU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/departments/xenobio{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"brV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"brW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"brX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bsa" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsb" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsc" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsd" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bse" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsf" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Starboard"; - network = list("ss13","rd") - }, -/obj/structure/sign/departments/xenobio{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bsl" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bsm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Arrivals Starboard Aft"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsn" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bso" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/grass/jungle/b, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/medical/genetics) -"bsp" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/grass, -/area/medical/genetics) -"bsq" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bsr" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/camera{ - c_tag = "Genetics Cloning"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bss" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bst" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"bsx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsz" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsA" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bsB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsC" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsE" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsF" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - id_tag = "medbaybolts"; - name = "Medbay" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - id_tag = "medbaybolts"; - name = "Medbay" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsJ" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsK" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsL" = ( -/obj/item/storage/box/beakers, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsN" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bsV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bsW" = ( -/obj/item/kirbyplants, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bsY" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bsZ" = ( -/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, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bta" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btb" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btc" = ( -/obj/machinery/computer/operating{ - dir = 8; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btd" = ( -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bte" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/server) -"btf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"btg" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wrench, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/item/multitool, -/obj/item/multitool, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bth" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bti" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"btk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"btl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bts" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"btt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/sign/departments/xenobio{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/landmark/blobstart, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btK" = ( -/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) -"btL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"btM" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"btN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btR" = ( -/obj/structure/flora/ausbushes/brflowers, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"btS" = ( -/turf/open/floor/grass, -/area/medical/genetics) -"btT" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/sunnybush, -/obj/item/reagent_containers/food/snacks/grown/banana, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"btU" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btX" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/medical_cloning{ - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btY" = ( -/obj/structure/table, -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"buc" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bud" = ( -/obj/item/wrench/medical, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bue" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/medical/sleeper) -"buf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bug" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"buh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bui" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"buj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"buk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bul" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bum" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bun" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bup" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"buq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/lab) -"bur" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"bus" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Research and Development Lab"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"but" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/clothing/mask/cigarette, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"buw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bux" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"buy" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"buz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"buA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"buC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"buD" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buH" = ( -/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/white, -/area/science/explab) -"buI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"buL" = ( -/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/dark, -/area/science/xenobiology) -"buM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bva" = ( -/turf/closed/wall, -/area/maintenance/department/engine) -"bvb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bvc" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bvd" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Genetics"; - req_access_txt = "9" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bve" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/genetics) -"bvf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Medbay Port Hallway"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvh" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvk" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvm" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvo" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvq" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvw" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"bvx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/lab) -"bvy" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/delivery, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"bvz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bvA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/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, -/area/hallway/primary/aft) -"bvG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bvH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"bvI" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Science Access Airlock"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bvJ" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"bvL" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Research Division APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvT" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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/dark, -/area/science/explab) -"bvU" = ( -/obj/machinery/recharger, -/obj/structure/table, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvV" = ( -/turf/open/floor/plasteel, -/area/science/explab) -"bvW" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"bvZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwa" = ( -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwc" = ( -/obj/machinery/chem_master, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwm" = ( -/turf/closed/wall, -/area/maintenance/department/science) -"bwn" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bws" = ( -/obj/structure/closet, -/obj/item/stack/cable_coil/random, -/obj/item/electronics/airalarm, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bwt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bwu" = ( -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bwv" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bww" = ( -/obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwx" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwA" = ( -/obj/structure/table, -/obj/item/storage/box/rxglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/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/medical/genetics) -"bwB" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/bloodbankgen, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwV" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwW" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bxa" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/research_and_development, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "R&D Lab"; - req_one_access_txt = "7;29;30" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"bxi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci9"; - location = "Sci8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxk" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci8"; - location = "Sci7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxn" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bxq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxu" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxC" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxD" = ( -/obj/structure/reagent_dispensers/watertank, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bxG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/explab) -"bxH" = ( -/obj/effect/turf_decal/box/corners, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxK" = ( -/obj/structure/chair/stool, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxM" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxO" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxP" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bxQ" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxR" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxS" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxY" = ( -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bxZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bya" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"byb" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"byc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"byd" = ( -/obj/structure/flora/junglebush/c, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bye" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"byf" = ( -/obj/structure/table, -/obj/item/storage/box/disks, -/obj/item/flashlight/pen, -/obj/item/flashlight/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byg" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byk" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/monkeycubes, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bym" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"byn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"byo" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/sleeper) -"byp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bys" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"byt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"byu" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"byv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cmoshutters"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"byw" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/machinery/power/apc{ - dir = 8; - name = "Chemistry APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/headset/headset_med, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"byx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"byz" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Chemistry Testing"; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/mob/living/simple_animal/mouse/white{ - name = "Labrette" - }, -/turf/open/floor/engine, -/area/medical/chemistry) -"byA" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/medical/chemistry) -"byC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/research{ - name = "R&D Lab"; - req_one_access_txt = "7;29;30" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"byE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"byF" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byH" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci5"; - location = "Sci4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"byP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"byQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"byR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"byS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byU" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byV" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byW" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byX" = ( -/obj/machinery/camera{ - c_tag = "Research Division Secure Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bza" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzb" = ( -/obj/structure/closet/radiation, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/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/dark, -/area/science/explab) -"bzc" = ( -/obj/structure/reagent_dispensers/fueltank, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzd" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"bze" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/explab) -"bzg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bzh" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("ss13","rd") - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzi" = ( -/obj/structure/table, -/obj/item/electropack, -/obj/item/taperecorder, -/obj/item/screwdriver, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzj" = ( -/obj/structure/table, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzl" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzr" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzs" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzy" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"bzz" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - dir = 8; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzC" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bzD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bzE" = ( -/obj/structure/flora/grass/jungle/b, -/obj/machinery/camera{ - c_tag = "Genetics Monkey Pen Aft"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bzF" = ( -/obj/machinery/door/window/eastleft{ - name = "Monkey Pen"; - req_one_access_txt = "9" - }, -/obj/item/reagent_containers/food/snacks/grown/banana, -/turf/open/floor/grass, -/area/medical/genetics) -"bzG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzH" = ( -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzO" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzP" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bzQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzR" = ( -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzT" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/mask/surgical, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzU" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bzV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzY" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"bzZ" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAa" = ( -/obj/machinery/computer/crew, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAb" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAc" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/obj/machinery/button/door{ - dir = 4; - id = "cmoshutters"; - name = "Privacy shutters"; - pixel_x = 38; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAg" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/stack/cable_coil/random, -/obj/item/book/manual/wiki/chemistry, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/stack/sheet/mineral/plasma{ - amount = 2; - layer = 2.9 - }, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAi" = ( -/obj/machinery/smoke_machine, -/turf/open/floor/engine, -/area/medical/chemistry) -"bAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bAo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bAq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bAu" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bAv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAy" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bAA" = ( -/turf/closed/wall, -/area/science/storage) -"bAB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/science/storage) -"bAC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAD" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAF" = ( -/turf/closed/wall, -/area/science/mixing) -"bAG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"bAH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bAI" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAJ" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAK" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAL" = ( -/obj/structure/transit_tube/station/reverse/flipped, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/extinguisher, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bAN" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/medical/genetics) -"bAO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/grass, -/area/medical/genetics) -"bAP" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, -/area/medical/genetics) -"bAQ" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/item/storage/pill_bottle/mutadone, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAR" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAV" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - name = "Genetics Requests Console"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAW" = ( -/turf/closed/wall, -/area/medical/virology) -"bAX" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bAY" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/medical/virology) -"bBb" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBd" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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) -"bBf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bBg" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBi" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBo" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"bBp" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"bBq" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBu" = ( -/obj/item/kirbyplants/dead, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/button/door{ - desc = "A switch that controls privacy shutters."; - id = "rdprivacy"; - name = "Privacy Shutters"; - pixel_x = 40; - pixel_y = -5; - req_access_txt = "30" - }, -/obj/machinery/keycard_auth{ - pixel_x = 28; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "rndshutters"; - name = "Research Lockdown"; - pixel_x = 28; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "RnD Shutters"; - pixel_x = 40; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBw" = ( -/obj/machinery/computer/security, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBx" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBy" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_x = 28; - 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 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bBC" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/storage) -"bBD" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/storage) -"bBE" = ( -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bBF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bBG" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/storage) -"bBH" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBK" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBL" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/airalarm/unlocked{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBP" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBQ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Toxins Lab APC"; - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/camera{ - c_tag = "Toxins Lab Starboard"; - network = list("ss13","rd") - }, -/obj/machinery/light{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/portable_atmospherics/pump, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBU" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"bBV" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bBW" = ( -/turf/open/space, -/area/space) -"bBX" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/engine) -"bBY" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bBZ" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCa" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCb" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/camera{ - c_tag = "Genetics"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCe" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Genetics APC"; - pixel_x = 27 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCh" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCi" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bCj" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bCl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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) -"bCo" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bCp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bCq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Office"; - req_access_txt = "40" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/heads/cmo) -"bCr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCs" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen{ - layer = 3.1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCt" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/clothing/glasses/hud/health, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCu" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/stack/medical/gauze, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCB" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bCD" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCE" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCG" = ( -/obj/structure/displaycase/labcage, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bCK" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Science Security Post"; - dir = 4; - network = list("ss13","rd") - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCL" = ( -/obj/effect/landmark/start/depsec/science, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCN" = ( -/obj/structure/chair/comfy, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bCO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bCP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/storage) -"bCQ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bCR" = ( -/turf/open/floor/engine, -/area/science/storage) -"bCS" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/science/storage) -"bCT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bCU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bCV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"bCW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bCX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bCZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDb" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/wrench, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDe" = ( -/obj/machinery/light{ - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bDf" = ( -/obj/structure/transit_tube, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bDg" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDh" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDi" = ( -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDj" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDk" = ( -/obj/item/chair, -/obj/item/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDl" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bDm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bDn" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/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/white, -/area/medical/genetics) -"bDo" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDq" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/sleeper) -"bDs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/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) -"bDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDv" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDx" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/heads/cmo"; - dir = 4; - name = "CMO's Office APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDy" = ( -/turf/closed/wall, -/area/medical/exam_room) -"bDz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDA" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bDB" = ( -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDC" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDD" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDE" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDF" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDG" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDK" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bDL" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/science/storage) -"bDM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/storage) -"bDN" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/science/storage) -"bDO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/storage) -"bDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/science/storage) -"bDQ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bDR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research/glass{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bEa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bEb" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEc" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEd" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEf" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEj" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/obj/machinery/meter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEl" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEm" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEq" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEr" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"bEs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEu" = ( -/obj/structure/closet/l3closet, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/rnd/production/techfab/department/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEw" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEx" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/southleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEy" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/southright{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEz" = ( -/obj/structure/table, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bED" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/valentine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEE" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEF" = ( -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/structure/table, -/obj/machinery/light, -/obj/item/wrench/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEG" = ( -/obj/item/folder/blue, -/obj/item/stamp/cmo, -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEH" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/closet, -/obj/item/clothing/under/rank/medical/doctor/nurse, -/obj/item/clothing/head/nursehat, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/blobstart, -/obj/item/melee/baton/cattleprod{ - preload_cell_type = /obj/item/stock_parts/cell/high - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "CMOCell"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 26; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEL" = ( -/obj/machinery/door/airlock/command{ - id_tag = "CMOCell"; - name = "Personal Examination Room"; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEQ" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bER" = ( -/obj/machinery/computer/mecha{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bES" = ( -/obj/item/aicard, -/obj/item/circuitboard/aicore, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/machinery/light, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bET" = ( -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/rd, -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("ss13","rd") - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bEU" = ( -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/structure/table/glass, -/obj/machinery/computer/security/telescreen/rd{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bEV" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/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/dark, -/area/crew_quarters/heads/hor) -"bEW" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bEX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bEY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Science Security APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/closet/secure_closet/security/science, -/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, -/area/security/checkpoint/science) -"bEZ" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bFa" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/storage) -"bFb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/storage) -"bFd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/storage) -"bFf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bFh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFi" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFj" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFk" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/analyzer, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFl" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bFp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bFr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFu" = ( -/obj/machinery/button/massdriver{ - dir = 4; - id = "toxinsdriver"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"bFy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFz" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFB" = ( -/obj/item/newspaper, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFC" = ( -/obj/item/wallframe/camera, -/obj/machinery/button/door{ - id = "PottySci"; - name = "Bathroom Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 4; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFD" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFE" = ( -/obj/docking_port/stationary{ - dwidth = 2; - height = 6; - id = "monastery_shuttle_asteroid"; - name = "monastery"; - width = 5 - }, -/turf/open/space, -/area/space/nearstation) -"bFF" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"bFI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFL" = ( -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFM" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bFN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"bFO" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"bFP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFR" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFU" = ( -/turf/closed/wall, -/area/medical/surgery) -"bFV" = ( -/obj/structure/table/glass, -/obj/item/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/item/lipstick/black, -/obj/machinery/power/apc{ - dir = 8; - name = "Personal Examination Room APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/item/reagent_containers/pill/morphine, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFW" = ( -/obj/effect/decal/remains/human, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFX" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"bGa" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/hallway/primary/aft) -"bGb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/checkpoint/science) -"bGc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bGd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bGe" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bGf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine, -/area/science/storage) -"bGg" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/storage) -"bGh" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bGi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/engine, -/area/science/storage) -"bGj" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGk" = ( -/obj/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGm" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -24; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGn" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGo" = ( -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGp" = ( -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Toxins Lab Port"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGq" = ( -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGu" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGv" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGw" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Launch Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bGB" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bGD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bGE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/dock) -"bGF" = ( -/obj/machinery/door/airlock/external{ - name = "Pod Docking Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/chapel/dock) -"bGG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/chapel/dock) -"bGH" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bGI" = ( -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"bGK" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bGM" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bGN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bGO" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGP" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGQ" = ( -/obj/structure/window/reinforced, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGR" = ( -/obj/machinery/door/window/eastleft{ - dir = 2; - name = "Monkey Pen"; - req_one_access_txt = "39" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGS" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "39" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 24 - }, -/obj/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) -"bGT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGU" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Virology APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/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) -"bGV" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGW" = ( -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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) -"bHa" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bHb" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHc" = ( -/obj/machinery/computer/med_data, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHd" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/surgery) -"bHf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHj" = ( -/obj/item/storage/belt/utility, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHk" = ( -/obj/item/gps{ - gpstag = "RD0" - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bHu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/storage) -"bHv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/science/storage) -"bHw" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"bHy" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"bHz" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bHA" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/button/ignition{ - id = "toxigniter"; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = 6; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bHC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Incinerator Output Pump" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHD" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHE" = ( -/obj/structure/window/reinforced, -/obj/machinery/doppler_array/research/science, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHI" = ( -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"bHJ" = ( -/turf/open/floor/plating, -/area/chapel/dock) -"bHK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bHL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bHM" = ( -/turf/closed/wall/r_wall, -/area/chapel/dock) -"bHN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bHP" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHQ" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHR" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHS" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHT" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bHU" = ( -/obj/machinery/vending/medical, -/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) -"bHV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - 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) -"bHY" = ( -/obj/machinery/camera{ - c_tag = "Virology"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIc" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bId" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIe" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Equipment Room"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIf" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIg" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner, -/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/white, -/area/medical/medbay/central) -"bIh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"bIk" = ( -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIl" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIm" = ( -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"bIo" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Surgery"; - network = list("ss13","surgery") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIs" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng2"; - location = "Eng" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci6"; - location = "Eng3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci7"; - location = "Sci6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bID" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng"; - location = "Sci5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIE" = ( -/obj/machinery/vending/assist, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bIF" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/storage) -"bIG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/science/storage) -"bIH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - name = "Toxins Storage APC"; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/storage) -"bII" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bIJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/storage) -"bIK" = ( -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bIL" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/turf/open/floor/engine, -/area/science/mixing) -"bIM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bIN" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 4; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("toxins"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bIP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"bIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bIR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bIT" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bIU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/chapel/dock) -"bIV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/dock) -"bIW" = ( -/obj/machinery/computer/shuttle/monastery_shuttle, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bIX" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bIY" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space) -"bIZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJa" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJb" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJc" = ( -/obj/structure/chair/comfy/black, -/obj/item/trash/pistachios, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJd" = ( -/obj/structure/chair/comfy/black, -/obj/item/stack/spacecash/c100, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJe" = ( -/obj/structure/chair/comfy/black, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJf" = ( -/obj/structure/chair/comfy/black, -/obj/item/cigbutt, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJg" = ( -/obj/item/trash/popcorn, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJh" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJi" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJj" = ( -/obj/structure/rack, -/obj/item/cartridge/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJk" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJo" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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) -"bJp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJq" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Recovery Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJw" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJy" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Research Division Entrance"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/space_heater, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJN" = ( -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bJO" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Toxins Storage"; - req_access_txt = "24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bJP" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bJQ" = ( -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_x = -24 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJR" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bJV" = ( -/obj/machinery/mass_driver{ - id = "toxinsdriver" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bJZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bKa" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Monastery Docking Bay APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bKf" = ( -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bKh" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Arena" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKi" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/simple_animal/chicken{ - name = "Bloodthirsty Peckins" - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKl" = ( -/obj/item/stack/medical/gauze, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bKm" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bKn" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/virology) -"bKo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bKp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bKq" = ( -/obj/effect/spawner/structure/window, -/obj/structure/sign/warning/deathsposal, -/turf/open/floor/plating, -/area/medical/virology) -"bKr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKs" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKt" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKu" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKv" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/curtain{ - layer = 4.5 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKw" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKx" = ( -/obj/machinery/button/door{ - id = "patientB"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Patient Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKy" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/item/beacon, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bKB" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKD" = ( -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKF" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Surgery APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bKI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bKO" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bKP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bKQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKT" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKV" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKX" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKY" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bLa" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bLb" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bLc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "mix_in"; - name = "distro out" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLd" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLe" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLf" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing) -"bLh" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bLn" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLq" = ( -/obj/machinery/door/airlock/grunge{ - name = "Monastery Transit" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLr" = ( -/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, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLt" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bLu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLv" = ( -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLy" = ( -/obj/structure/mineral_door/wood{ - name = "The Roosterdome" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bLz" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLB" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLC" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/mineral/plasma{ - amount = 2 - }, -/obj/item/storage/box/monkeycubes{ - layer = 3.1 - }, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bLE" = ( -/obj/structure/table/glass, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bLF" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/pen{ - layer = 3.1 - }, -/obj/item/clothing/neck/stethoscope{ - layer = 3.2 - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLG" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLI" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "patientB"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bLJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/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) -"bLK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bLL" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bLM" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLO" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLQ" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLR" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLS" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLT" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"bLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bLW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bLX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bLY" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bLZ" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMa" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMb" = ( -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Distro" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMe" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMf" = ( -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMh" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "mix_in"; - sensors = list("mix_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMi" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"bMj" = ( -/obj/machinery/air_sensor{ - id_tag = "mix_sensor" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bMk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bMl" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "inc_in" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMm" = ( -/obj/machinery/igniter{ - id = "toxigniter"; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/science/mixing) -"bMq" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"bMr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bMs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/dock) -"bMw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bMx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bMy" = ( -/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/dock) -"bMA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bMB" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bMC" = ( -/obj/item/stack/spacecash/c10, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bMD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bME" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bMF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bMG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bMH" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMJ" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = 32 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMK" = ( -/obj/item/soap/nanotrasen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/gun/syringe/dart, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMM" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMN" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMO" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMP" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMQ" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMR" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMU" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway Atmospherics"; - start_active = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/primary/aft) -"bMX" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bMY" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External to Filter" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNf" = ( -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNi" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bNn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "mix_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bNp" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bNq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Launch Maintenance"; - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bNr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bNs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bNt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Monastery Dock"; - dir = 1; - network = list("ss13","monastery") - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bNu" = ( -/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" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light/small, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bNw" = ( -/turf/closed/wall, -/area/chapel/dock) -"bNx" = ( -/obj/structure/transit_tube/station/reverse{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bNy" = ( -/obj/structure/transit_tube/horizontal, -/obj/machinery/camera{ - c_tag = "Monastery Transit"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bNz" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/chapel/dock) -"bNA" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/dock) -"bNB" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bNE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"bNF" = ( -/obj/item/stack/medical/suture, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bNG" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNH" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNI" = ( -/obj/structure/window/reinforced, -/mob/living/simple_animal/chicken{ - name = "Killer Cluck" - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNJ" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Arena" - }, -/obj/structure/window/reinforced, -/obj/structure/chair/stool, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNK" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNL" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNM" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNN" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNO" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNP" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNQ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNT" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNU" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNV" = ( -/obj/item/wrench/medical, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bNX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOb" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"bOf" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bOg" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOo" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOs" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bOt" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bOu" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/mixing) -"bOv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bOw" = ( -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bOx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bOy" = ( -/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{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bOz" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bOA" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bOB" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"bOD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"bOE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/virology) -"bOF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/primary/aft) -"bON" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bOO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bOS" = ( -/obj/effect/turf_decal/vg_decals/atmos/mix, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bOT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOV" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPa" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPd" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPe" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPf" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bPg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "n2o_out"; - name = "n2o out" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bPh" = ( -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bPn" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bPo" = ( -/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/dock) -"bPp" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPq" = ( -/obj/item/trash/chips, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPr" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPs" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"bPv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space/basic, -/area/space/nearstation) -"bPz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPA" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPB" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bPC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPD" = ( -/obj/structure/table, -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPE" = ( -/turf/closed/wall, -/area/storage/tech) -"bPF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Tech Storage Maintenance"; - req_access_txt = "23" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bPG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPK" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPL" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPN" = ( -/obj/machinery/conveyor_switch{ - id = "atmosdeliver" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPO" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPQ" = ( -/turf/closed/wall, -/area/engine/atmos) -"bPR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bPS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPW" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPX" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bPZ" = ( -/obj/machinery/air_sensor{ - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQa" = ( -/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/n2o, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQc" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Dock Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQd" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQe" = ( -/obj/item/flashlight/lantern{ - icon_state = "lantern-on" - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQf" = ( -/obj/structure/cable{ - 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" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"bQh" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Dock Staboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bQj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQm" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQo" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQr" = ( -/turf/closed/wall/r_wall, -/area/storage/tech) -"bQs" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQu" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQv" = ( -/obj/structure/rack, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQw" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/camera{ - c_tag = "Tech Storage" - }, -/obj/item/circuitboard/computer/monastery_shuttle, -/obj/effect/spawner/lootdrop/techstorage/service, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQx" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQy" = ( -/obj/structure/rack, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/obj/item/electronics/apc, -/obj/item/electronics/firealarm, -/obj/item/electronics/firelock, -/obj/item/electronics/tracker, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQz" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQA" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQB" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Hall APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng3"; - location = "Eng2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQD" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bQJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Ports to Filter" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQM" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Unfiltered to Mix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bQP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bQR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bQS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bQT" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRa" = ( -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"bRb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bRd" = ( -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRe" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bRg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRm" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bRs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRx" = ( -/obj/machinery/computer/atmos_control, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRy" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRA" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRC" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bRD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"bRF" = ( -/obj/structure/girder, -/turf/closed/wall, -/area/maintenance/department/engine) -"bRG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRH" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bRL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/medical, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRQ" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRU" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSa" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/conveyor{ - dir = 4; - id = "atmosdeliver" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSb" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/conveyor_switch{ - id = "atmosdeliver" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSd" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSe" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "tox_out"; - name = "toxin out" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSk" = ( -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSl" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSm" = ( -/obj/structure/flora/ausbushes, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bSn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bSo" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSp" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bSq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bSt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSu" = ( -/obj/item/broken_bottle, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSv" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSw" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bSx" = ( -/obj/structure/closet, -/obj/item/restraints/handcuffs/cable, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSy" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"bSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bSA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bSB" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bSC" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bSD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bSE" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/beacon, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSN" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway Engineering"; - dir = 1; - start_active = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSQ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSR" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSS" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bST" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSU" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSV" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "tox_in"; - name = "Plasma Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSW" = ( -/obj/machinery/air_sensor{ - id_tag = "tox_sensor" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSX" = ( -/obj/effect/turf_decal/vg_decals/atmos/plasma, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSZ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bTa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bTb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bTc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"bTd" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/vending_refill/cola, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTf" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Virology Waste to Space" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bTg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Virology Waste to Atmospherics" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTh" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Out" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bTi" = ( -/obj/item/picket_sign, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTj" = ( -/obj/structure/bonfire, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTk" = ( -/obj/structure/closet, -/obj/item/cigbutt/cigarbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTl" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTo" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTr" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bTs" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bTt" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/crate/engineering/electrical, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/electronics/apc, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTw" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTx" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/machinery/light{ - light_color = "#cee5d2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTy" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTz" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTA" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/multitool, -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_y = -32 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTB" = ( -/obj/machinery/power/apc{ - areastring = "/area/storage/tech"; - name = "Tech Storage APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/structure/closet/crate/solarpanel_small, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bTD" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"bTE" = ( -/turf/closed/wall, -/area/engine/engineering) -"bTF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/break_room) -"bTH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/plaques/atmos{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Entrance" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"bTP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Starboard"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bTW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bTX" = ( -/obj/structure/table, -/obj/item/storage/box/mousetraps, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUb" = ( -/obj/structure/grille/broken, -/obj/structure/musician/piano, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUc" = ( -/obj/item/reagent_containers/food/snacks/beans, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUd" = ( -/obj/structure/closet, -/obj/item/shard, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUe" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUf" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUg" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bUh" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUi" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera{ - c_tag = "Engineering Security Post"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUj" = ( -/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/checkpoint/engineering) -"bUk" = ( -/obj/machinery/computer/secure_data, -/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/checkpoint/engineering) -"bUl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Engineering Foyer APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUs" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUt" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUC" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bUD" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"bUE" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bUF" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUG" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUH" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) -"bUI" = ( -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/item/cartridge/atmos, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office" - }, -/obj/machinery/computer/security/telescreen/ce{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUK" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUL" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUM" = ( -/obj/machinery/computer/card/minor/ce, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/stairs, -/area/storage/tech) -"bUO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUP" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall, -/area/engine/engine_smes) -"bUQ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUR" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/engineering, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUS" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUT" = ( -/turf/closed/wall, -/area/engine/engine_smes) -"bUU" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"bUV" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUW" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/area/security/checkpoint/engineering) -"bUZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/goonplaque, -/area/engine/break_room) -"bVb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVd" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVg" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "incinerator mix pump" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/engine/atmos) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bVo" = ( -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bVp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bVr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bVs" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVw" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVy" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVD" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/paper/monitorkey, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVE" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVG" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVH" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/lighter, -/obj/item/stamp/ce, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "CE Office APC"; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVL" = ( -/obj/structure/table, -/obj/item/storage/box/smart_metal_foam{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVM" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVN" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVO" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/engineering"; - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bVS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 27; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bVY" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVZ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWb" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bWe" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWf" = ( -/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWh" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"bWi" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush, -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Primary Entrance"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bWj" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bWk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bWl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bWn" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/clothing/glasses/meson/gar, -/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) -"bWo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWr" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/RnD_secure, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/storage/tech) -"bWt" = ( -/obj/structure/rack, -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 1 - }, -/obj/effect/spawner/lootdrop/techstorage/command, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/storage/tech) -"bWu" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/AI, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/storage/tech) -"bWv" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel/twenty{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the engine containment area."; - dir = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWz" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWA" = ( -/obj/structure/filingcabinet, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the engine containment area."; - dir = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWC" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/security/engine, -/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, -/area/security/checkpoint/engineering) -"bWD" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bWE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/engine/break_room) -"bWI" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWJ" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bWT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWV" = ( -/turf/closed/wall, -/area/chapel/main/monastery) -"bWW" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/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/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"bWZ" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bXa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bXd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"bXe" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXf" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXg" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "ce_privacy"; - name = "Privacy Shutters"; - pixel_x = 24; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXk" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bXl" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/cable_coil, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/engine/engine_smes"; - dir = 8; - name = "Engine Room APC"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bXr" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Waste to Space" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXs" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXt" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXu" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXw" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXx" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXy" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXA" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXB" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXC" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXD" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bXI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bXJ" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bXL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXN" = ( -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXS" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bXU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bXV" = ( -/obj/item/shard{ - icon_state = "small" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bXZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bYa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bYb" = ( -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"bYc" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYd" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYe" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage"; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bYi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYj" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYk" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYp" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bYs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bYt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bYu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/atmos{ - name = "Incinerator"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bYv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bYw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bYz" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bYA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"bYB" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"bYF" = ( -/obj/item/trash/pistachios, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bYI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Fore" - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYT" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Starboard Fore" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZc" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Incinerator APC"; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZh" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZi" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZl" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"bZm" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"bZn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"bZo" = ( -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"bZr" = ( -/obj/item/trash/tray, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bZs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bZt" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bZx" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/item/storage/belt/utility, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZI" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZK" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"bZL" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZQ" = ( -/obj/machinery/computer/turbine_computer{ - dir = 8; - id = "incineratorturbine" - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = 24; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZR" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 22 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"bZT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 8 - }, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"bZV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bZY" = ( -/turf/closed/wall, -/area/chapel/office) -"caa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"cab" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"cae" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engine/engineering) -"caf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cah" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caj" = ( -/obj/structure/table, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/apc, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/cable_coil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cak" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cal" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cam" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"can" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"car" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caw" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cax" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caA" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caC" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caD" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caG" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Incinerator"; - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 4; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = -29 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = -6; - pixel_y = -26 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caQ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 8; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caR" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/turbine{ - dir = 4; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caS" = ( -/turf/closed/wall, -/area/chapel/asteroid/monastery) -"caT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"caV" = ( -/obj/machinery/holopad, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"caW" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"caZ" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cba" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"cbc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbe" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbf" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbg" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbi" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbk" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbn" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbo" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbs" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cbt" = ( -/obj/effect/turf_decal/vg_decals/atmos/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cbu" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cbv" = ( -/obj/effect/turf_decal/vg_decals/atmos/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cbw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cbx" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/vg_decals/atmos/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cby" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"cbz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cbA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbB" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Incinerator to Output" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbC" = ( -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 26; - pixel_y = -6 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cbE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cbF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cbG" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"cbK" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cbM" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"cbN" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cbO" = ( -/obj/structure/table/wood, -/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" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"cbR" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cbS" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbT" = ( -/obj/item/shovel, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbV" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/engineering) -"cbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbX" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cbY" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cca" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccb" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccc" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccm" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"ccn" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cco" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"ccp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccq" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccr" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Incinerator Output Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccs" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/department/cargo) -"ccu" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ccE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/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/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ccH" = ( -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"ccJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ccM" = ( -/obj/structure/chair, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ccN" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/medical/gauze, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ccO" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ccQ" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/engineering) -"ccR" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps/engineering, -/turf/open/floor/plating, -/area/engine/engineering) -"ccW" = ( -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ccY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cda" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cdc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdg" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdh" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdl" = ( -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdm" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"cdo" = ( -/turf/open/floor/carpet, -/area/chapel/office) -"cdp" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/carpet/black, -/area/chapel/office) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"cdr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cds" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Port Access"; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdu" = ( -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"cdw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdC" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdD" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"cdE" = ( -/obj/structure/chair, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cdI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/high, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Aft"; - dir = 1; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdR" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cdT" = ( -/obj/machinery/power/emitter/anchored{ - dir = 4; - state = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cdW" = ( -/obj/structure/reflector/box/anchored, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceb" = ( -/obj/machinery/computer/rdconsole/production{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cec" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ced" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cee" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"cef" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"ceg" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/office) -"cei" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cej" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cek" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cel" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cen" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ceq" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/engineering) -"cer" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications Transit Tube"; - req_access_txt = "10; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cet" = ( -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cey" = ( -/obj/structure/girder, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ceB" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"ceC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceF" = ( -/obj/structure/filingcabinet, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceL" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/engineering) -"ceU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching telecomms."; - layer = 4; - name = "Telecomms Telescreen"; - network = list("tcomms"); - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cfa" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cff" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"cfl" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfm" = ( -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"cfn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfr" = ( -/obj/structure/transit_tube_pod, -/obj/structure/transit_tube/station/reverse{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cfs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfu" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/engine/engineering) -"cfC" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cfD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Monastery APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfI" = ( -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfL" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Starboard Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"cfN" = ( -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cfO" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cfP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfQ" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"cfS" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfX" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Engine" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgb" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cgd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cgf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cgj" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgk" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/camera{ - c_tag = "Monastery Garden"; - network = list("ss13","monastery") - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgm" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/watermelon/holy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cgp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cgr" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/engine/engineering) -"cgs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cgu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cgv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"cgG" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cgH" = ( -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgI" = ( -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgJ" = ( -/obj/item/cultivator, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgK" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sugarcane, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgL" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/chaplain/holidaypriest, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/head/nun_hood, -/obj/machinery/button/door{ - id = "Cell1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgM" = ( -/obj/structure/dresser, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgN" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgO" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cgP" = ( -/obj/structure/transit_tube, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cgQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cgU" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cgV" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"chb" = ( -/obj/machinery/camera{ - c_tag = "Monastery Kitchen"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chc" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chd" = ( -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"chi" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chk" = ( -/obj/structure/sink/puddle, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chl" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cho" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"chp" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chr" = ( -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cht" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"chv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"chB" = ( -/obj/item/seeds/banana, -/obj/item/seeds/grass, -/obj/item/seeds/grape, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chC" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chD" = ( -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"chG" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/wheat, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"chK" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/instrument/violin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chL" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chM" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chN" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/item/soap/homemade, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"chU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chV" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chW" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/storage/box/ingredients/wildcard{ - layer = 3.1 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/kitchen/rollingpin, -/obj/item/kitchen/knife, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chY" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chZ" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cib" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cic" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cid" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cif" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/stack/cable_coil/yellow, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cig" = ( -/obj/structure/transit_tube/crossing, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cio" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/chaplain/holidaypriest, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/head/nun_hood, -/obj/machinery/button/door{ - id = "Cell2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cip" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXnineteen, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciq" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cit" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"civ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ciy" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"ciz" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciE" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciF" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell2"; - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciG" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"ciI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Chamber" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"ciJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciK" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciN" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciS" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciT" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/harebell, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciW" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciX" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciY" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciZ" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cjf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjl" = ( -/obj/machinery/door/airlock/grunge{ - name = "Monastery Cemetary" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjm" = ( -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"cjo" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/small, -/obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjp" = ( -/turf/closed/wall, -/area/library) -"cjq" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjr" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"cju" = ( -/turf/closed/mineral, -/area/asteroid/nearstation/bomb_site) -"cjv" = ( -/turf/closed/wall, -/area/asteroid/nearstation/bomb_site) -"cjw" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/asteroid/nearstation/bomb_site) -"cjx" = ( -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cjB" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "monastery"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"cjC" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cjH" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Garden" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjO" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 20; - layer = 3.1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cjQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library) -"cjR" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cjV" = ( -/obj/machinery/camera/preset/toxins, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cjZ" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cka" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ckc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cke" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckf" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckg" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckh" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cki" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/library) -"cko" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plasteel/dark, -/area/library) -"ckp" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckt" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cku" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ckv" = ( -/obj/machinery/mass_driver{ - id = "chapelgun" - }, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Mass Driver" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckw" = ( -/obj/machinery/mass_driver{ - id = "chapelgun" - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cky" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckz" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckA" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckB" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckC" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckD" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckH" = ( -/turf/open/floor/plasteel/dark, -/area/library) -"ckI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ckK" = ( -/turf/closed/mineral/random/low_chance, -/area/asteroid/nearstation/bomb_site) -"ckL" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/asteroid/nearstation/bomb_site) -"ckM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckN" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckP" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"ckR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckS" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Monastery Library"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckT" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckU" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckV" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckW" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/plasteel/dark, -/area/library) -"ckX" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clb" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "mass driver door" - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"cle" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"clf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"clg" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cli" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"clj" = ( -/obj/item/flashlight/lantern{ - icon_state = "lantern-on" - }, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"clk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clm" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cln" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clp" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/dark, -/area/library) -"cls" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/closed/mineral, -/area/asteroid/nearstation/bomb_site) -"clv" = ( -/turf/closed/mineral/iron, -/area/asteroid/nearstation/bomb_site) -"clw" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clC" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clD" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clF" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/closed/mineral/random/low_chance, -/area/asteroid/nearstation/bomb_site) -"clG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clH" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clL" = ( -/turf/closed/wall, -/area/tcommsat/computer) -"clM" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Waste to Space" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clN" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clP" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/closed/wall, -/area/tcommsat/computer) -"clU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clY" = ( -/obj/item/beacon, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cma" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Telecommunications Maintenance"; - req_access_txt = "61" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cme" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cmf" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications Chamber"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmj" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmk" = ( -/obj/machinery/power/apc{ - areastring = "/area/tcommsat/computer"; - dir = 1; - name = "Telecomms Monitoring APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cml" = ( -/obj/machinery/announcement_system, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmm" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/office/dark, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmr" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cms" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmt" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Port"; - dir = 8; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cmu" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmv" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cmx" = ( -/obj/machinery/computer/telecomms/server{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmy" = ( -/obj/machinery/computer/message_monitor{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmz" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Starboard"; - dir = 4; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cmB" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cmF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cmG" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmH" = ( -/obj/machinery/telecomms/message_server, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmK" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmL" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmM" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmN" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmO" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmP" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmQ" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmV" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmW" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmY" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmZ" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cna" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnb" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnc" = ( -/obj/machinery/power/terminal, -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnd" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cne" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnj" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnk" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnl" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnm" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnn" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cno" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnp" = ( -/obj/machinery/camera/preset/toxins{ - c_tag = "Bomb Testing Asteroid Aft"; - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cnq" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/asteroid/nearstation/bomb_site) -"cnr" = ( -/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) -"cns" = ( -/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) -"cnt" = ( -/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) -"cnu" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Server Room"; - dir = 1; - network = list("tcomms") - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnv" = ( -/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) -"cnw" = ( -/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) -"cnx" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cny" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Port Aft"; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cnz" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Starboard Aft"; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cnC" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "AI Satellite turret control"; - pixel_x = -5; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cnD" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/lattice, -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnG" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAS) -"cnH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnN" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnP" = ( -/obj/machinery/vending/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnQ" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnT" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnV" = ( -/obj/structure/punching_bag, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnX" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cod" = ( -/obj/structure/table, -/obj/item/clothing/under/color/grey, -/obj/machinery/power/apc{ - dir = 1; - name = "Dormitory APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"coe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Dormitory Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"coi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"coj" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cok" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"col" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"com" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"con" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"coo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cop" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cor" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "public external airlock" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cou" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"coy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bridge"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/bar) -"coG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"coH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"coJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"coL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"coN" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"coV" = ( -/obj/machinery/vending/cigarette, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"coW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"cpa" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) -"cpb" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpc" = ( -/obj/machinery/chem_dispenser/drinks, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Bar Drinks" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpe" = ( -/obj/machinery/door/airlock{ - name = "Bar Access"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpg" = ( -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = 26; - req_access_txt = "28" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cph" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpk" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 19 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpm" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/pie/cream, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/spaghetti, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpo" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpq" = ( -/obj/machinery/deepfryer, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cps" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpt" = ( -/obj/item/beacon, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpu" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpx" = ( -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "kitchenshutters"; - name = "Kitchen Shutters Control"; - pixel_x = 5; - pixel_y = -24; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpz" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpA" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpC" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"cpH" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpI" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpK" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpL" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpM" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpT" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpU" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqe" = ( -/obj/effect/turf_decal/plaque, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Med"; - location = "Sci9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqh" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqi" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cql" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18"; - layer = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cqH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"cqS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cqU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"cqV" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cqW" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"cqX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"crb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/office) -"cre" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"crg" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crh" = ( -/obj/machinery/button/crematorium{ - id = "foo"; - pixel_x = 25 - }, -/obj/structure/bodycontainer/crematorium{ - id = "foo" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cri" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/engine/engineering) -"crj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crl" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"crm" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/space/nearstation) -"crt" = ( -/obj/structure/table/wood/fancy, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cru" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crv" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cry" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"crz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crA" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crD" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/box/bodybags, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crH" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chapel Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crL" = ( -/obj/structure/chair/wood/normal, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"crM" = ( -/obj/structure/chair/wood/normal, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"crN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"crT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Chapel Office APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crY" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/breadslice/plain, -/obj/item/reagent_containers/food/snacks/breadslice/plain{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/breadslice/plain{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csd" = ( -/turf/open/floor/carpet/black, -/area/chapel/office) -"cse" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csi" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csk" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csn" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_x = -32 - }, -/obj/structure/closet, -/obj/item/storage/backpack/cultpack, -/obj/item/clothing/head/nun_hood, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/suit/chaplain/holidaypriest, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cso" = ( -/obj/structure/table/wood, -/obj/item/nullrod, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csp" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"css" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"csv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csy" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"csB" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csC" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/chapel/office) -"csF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/chapel/office) -"csG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/chapel/office) -"csM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Chapel Office Tunnel"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"csN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Starboard Access"; - network = list("ss13","monastery") - }, -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"csY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cta" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cte" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"ctg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cth" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctu" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"ctJ" = ( -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctK" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctL" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Fore"; - network = list("ss13","monastery") - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctQ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"ctS" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ctX" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/carpet, -/area/chapel/office) -"cuc" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Xenobiology Central"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cui" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"cuk" = ( -/obj/structure/closet{ - name = "beekeeping wardrobe" - }, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cul" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cum" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cun" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuo" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cup" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/seeds/watermelon/holy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cus" = ( -/obj/structure/closet{ - name = "beekeeping supplies" - }, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cut" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuu" = ( -/obj/item/storage/bag/plants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/storage/bag/plants/portaseeder, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuv" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuw" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cux" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/tea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuy" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuA" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/beebox, -/obj/item/queen_bee/bought, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuB" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuE" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuH" = ( -/obj/item/hatchet, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuI" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuJ" = ( -/obj/item/shovel/spade, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Dining Room"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Garden APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuO" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sugarcane, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuS" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuU" = ( -/obj/machinery/door/airlock{ - name = "Dining Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuV" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Garden" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuY" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuZ" = ( -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cvb" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/wheat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvd" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cve" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvf" = ( -/obj/machinery/recycler, -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cvg" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvh" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvi" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvj" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/small, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvq" = ( -/obj/machinery/camera{ - c_tag = "Monastery Secondary Dock"; - dir = 8; - network = list("ss13","monastery") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Coffin Storage"; - req_one_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Coffin Storage"; - req_one_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvA" = ( -/obj/machinery/door/airlock/external{ - name = "Dock Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvB" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvC" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvE" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvH" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvI" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvJ" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cemetary"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvS" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvT" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cvV" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvX" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cvY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cvZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cwa" = ( -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cwc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Monastery Maintenance"; - req_one_access_txt = "22;24;10;11;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwe" = ( -/turf/closed/wall/mineral/iron, -/area/library/lounge) -"cwg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cwj" = ( -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwl" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/item/storage/fancy/candle_box, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwo" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Monastery Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwr" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library Lounge APC"; - pixel_x = 24 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cww" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwx" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwy" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/candle, -/obj/item/candle{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwz" = ( -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwA" = ( -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwE" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwF" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "chapelgun"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cwM" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"cwO" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwR" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cwS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwU" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cxe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cxg" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxh" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxn" = ( -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"cxt" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cxz" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/library/lounge) -"cxC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxD" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/library/lounge) -"cxJ" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/library/lounge) -"cxK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library/lounge) -"cxX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Access Tunnel"; - dir = 4; - network = list("ss13","monastery") - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cym" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/library/lounge) -"cyz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/library/lounge) -"cyL" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cyM" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cyP" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Fore"; - network = list("ss13","monastery") - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyS" = ( -/obj/structure/bookcase/random/religion, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/library) -"cyU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/library) -"cyY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyZ" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/dark, -/area/library) -"czl" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/library) -"czo" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czp" = ( -/obj/structure/table/wood, -/obj/item/disk/nuclear/fake, -/obj/item/barcodescanner, -/turf/open/floor/plasteel/dark, -/area/library) -"czq" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czr" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, -/area/library) -"czt" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/photo_album, -/turf/open/floor/carpet, -/area/library) -"czu" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czv" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czw" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czB" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/carpet, -/area/library) -"czC" = ( -/obj/structure/table/wood/fancy, -/obj/item/flashlight/lantern{ - icon_state = "lantern-on"; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/library) -"czD" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/library) -"czH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czI" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/library) -"czL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/library) -"czM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/library) -"czN" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/books, -/turf/open/floor/plasteel/dark, -/area/library) -"czO" = ( -/obj/structure/table/wood, -/obj/item/instrument/saxophone, -/turf/open/floor/plasteel/dark, -/area/library) -"czP" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/coin/gold, -/turf/open/floor/plasteel/dark, -/area/library) -"czQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAg" = ( -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Curator Desk Door"; - req_access_txt = "37" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAs" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-05"; - pixel_y = 10 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAt" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern{ - pixel_y = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAu" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/pharaoh, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAv" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Curator Desk Door"; - req_access_txt = "37" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/plasteel/dark, -/area/library) -"cAH" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAM" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAQ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cAS" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/plasteel/dark, -/area/library) -"cAT" = ( -/obj/structure/destructible/cult/tome, -/turf/open/floor/plasteel/dark, -/area/library) -"cAU" = ( -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar"; - name = "skeletal minibar" - }, -/obj/item/book/codex_gigas, -/obj/machinery/camera{ - c_tag = "Monastery Archives Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAV" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cBi" = ( -/obj/machinery/flasher/portable, -/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/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"cBk" = ( -/obj/machinery/vending/boozeomat/pubby_maint, -/turf/closed/wall, -/area/maintenance/department/crew_quarters/dorms) -"cBl" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBm" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBo" = ( -/obj/structure/table, -/obj/item/lighter, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBp" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBq" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBr" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBs" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBv" = ( -/obj/item/cigbutt/roach, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Space Bridge Control"; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Space Bridge Control"; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBA" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBB" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_one_access_txt = "12;45;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cBM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/office) -"cBR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cBS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/engine/engineering) -"cBT" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cBU" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCl" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCt" = ( -/turf/open/floor/plasteel/white, -/area/science/lab) -"cCB" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cCF" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCH" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCI" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cCP" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/chapel/monastery) -"cCS" = ( -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cCT" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cCU" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCV" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCW" = ( -/obj/machinery/vending/games, -/turf/open/floor/plasteel/dark, -/area/library) -"cCX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cCZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cDa" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDB" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"cFB" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"cHS" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Firing Range" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"cJo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cKV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cLw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cOp" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cPy" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cPO" = ( -/obj/item/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"cPT" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSJ" = ( -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/sleeper"; - dir = 4; - name = "Treatment Center APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cSK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 8; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"cXW" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cZt" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"daY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"dbi" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"dci" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"dcL" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"deJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/gps/mining{ - gpstag = "MINE_PUB" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dgg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dgz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dgI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"dhz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dir" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dkR" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"dmP" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dmT" = ( -/obj/machinery/shieldwallgen/xenobiologyaccess, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dnS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix Bypass" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"doo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"dpa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"dpb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"dpc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"dps" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall, -/area/quartermaster/qm) -"dqw" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dqG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dqY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"dse" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"dsv" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"dsz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"dtm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"duF" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -2 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"duQ" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"dxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dye" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, -/obj/item/kitchen/knife, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dym" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dAF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/science/mixing) -"dAG" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"dEy" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/reflector/double/anchored{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dFJ" = ( -/turf/open/floor/engine, -/area/engine/supermatter) -"dHr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/machinery/button/door{ - id = "engsm"; - name = "Radiation Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dHZ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - name = "Shutters Control"; - pixel_x = 26; - pixel_y = 4; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dJk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"dJm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Pit"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dKs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"dLY" = ( -/obj/structure/table, -/obj/item/assembly/igniter, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"dMB" = ( -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"dMG" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dMI" = ( -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"dMO" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dNr" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dSp" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"dSr" = ( -/obj/item/chair, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"dTV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - layer = 2.4 - }, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"dVJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"dWk" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dWp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dYe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"dZj" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/airalarm/engine{ - pixel_y = 22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"eaw" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ebD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "law office shutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"edl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"edJ" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eex" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/office) -"eeQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"efu" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"efU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"egK" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"ehM" = ( -/obj/effect/decal/remains/human, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"eiV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ekU" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"elk" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/lawoffice) -"epj" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"epJ" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"epV" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"eqD" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/department/crew_quarters/dorms) -"eta" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Supplies"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"euQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"eyj" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"ezF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/red, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ezJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"eAp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eAH" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"eAZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"eCw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"eCK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"eDC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"eEp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"eFj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"eFG" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "garbagestacked" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"eHI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"eIL" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"eLt" = ( -/obj/structure/closet/firecloset, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"eMC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"eNc" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/structure/rack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"eNq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"eNF" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/closed/wall, -/area/space/nearstation) -"eOZ" = ( -/obj/structure/closet, -/obj/item/clothing/suit/judgerobe, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ePU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"eQN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"eQR" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"eQZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"eRp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eSB" = ( -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"eSL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/beacon, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"eVy" = ( -/obj/effect/turf_decal/arrows{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"eWi" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"eXo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"eYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"eZA" = ( -/obj/item/stack/cable_coil/cut/random, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fdQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fdS" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Engineering" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"fef" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Menagerie"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ffJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"fgS" = ( -/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 - }, -/mob/living/simple_animal/opossum/poppy, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"fhM" = ( -/obj/item/storage/secure/safe{ - pixel_x = -22 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"fjs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"fjD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"fkH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Testing Zone"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/science/explab) -"fmh" = ( -/turf/open/floor/wood, -/area/maintenance/department/engine) -"fmL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"fmU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"fon" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"fow" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"fpT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"frj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ftp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"ftW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/lawoffice) -"fvb" = ( -/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/maintenance/department/engine) -"fwe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fwl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"fwr" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"fwI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fxC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"fym" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fyF" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"fyO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fzu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/clothing/gloves/color/black, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"fAx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"fBt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"fBz" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/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/science/mixing) -"fBZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"fIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"fIN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"fIT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"fKj" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Mineral Room" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"fLG" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"fNv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fQf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"fRr" = ( -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"fRs" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"fTY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"fUA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"fWv" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"fZK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"gam" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Service Door"; - req_one_access_txt = "35;28" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"gdJ" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"gdL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"geU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gfi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ggg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"giI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/office) -"giO" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gjp" = ( -/obj/structure/table/wood, -/obj/structure/bedsheetbin, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gjv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Space Loop In" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gjN" = ( -/obj/item/weldingtool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gkR" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"gkS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gkX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"glf" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"gmp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gmO" = ( -/obj/structure/chair{ - 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/exit/departure_lounge) -"gmZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"gna" = ( -/turf/open/floor/plasteel/stairs/medium, -/area/maintenance/department/crew_quarters/dorms) -"gnq" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/engineering) -"gpC" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"gpI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"gue" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gvf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"gwn" = ( -/obj/structure/sign/warning{ - pixel_y = 32 - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gxe" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"gxq" = ( -/obj/structure/chair{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gxK" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gAG" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/lawoffice) -"gBb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"gDR" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Escape"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gDZ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"gEo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"gFo" = ( -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 3 - }, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "Shutters Control Button"; - pixel_x = -28; - pixel_y = -7; - req_access_txt = "47" - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"gGy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gGA" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gHZ" = ( -/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/maintenance/department/engine) -"gIC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gIG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"gKz" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-22"; - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"gKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gLF" = ( -/obj/machinery/vending/snack/random, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gMm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/mixing) -"gMO" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gNv" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/stairs/right, -/area/maintenance/department/crew_quarters/dorms) -"gNG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "assistantshutters"; - name = "Tool Storage Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gPV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/lawoffice) -"gQf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"gQo" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"gSH" = ( -/turf/closed/wall, -/area/lawoffice) -"gSI" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"gUb" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"gVc" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/engine) -"gXg" = ( -/obj/item/extinguisher, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"gYo" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"haA" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hbl" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/space) -"heC" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"hfZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hgD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/science) -"hiw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hiY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci4"; - location = "Sci3" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hjk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hjD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hka" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera{ - c_tag = "Atmospherics Console"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hkQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hnu" = ( -/obj/machinery/button/door{ - id = "lawyer_shutters"; - name = "law office shutters control"; - pixel_x = 34; - pixel_y = -1; - req_access_txt = "38" - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"hon" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hoS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/engine/engineering) -"hqo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "assistantshutters"; - name = "Tool Storage Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hvW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"hwd" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge Port"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hwj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/security/execution/transfer) -"hxn" = ( -/obj/structure/chair, -/obj/item/clothing/glasses/regular, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hxI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"hyh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"hzc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/wrench, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"hzd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"hDG" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"hEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"hFp" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"hFy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hGB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hHr" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hIZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hKp" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"hMx" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"hOx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hOz" = ( -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"hPN" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = 28; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hPU" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/surgical_drapes, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"hQz" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"hQC" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"hSt" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Gas to Cooling Loop" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hSC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hSM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"hTl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hUt" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"hUw" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"hUJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"hVx" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"hXt" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hXK" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hYe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/dark, -/area/chapel/office) -"hZB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iab" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ick" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"iej" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"igB" = ( -/obj/machinery/camera{ - c_tag = "Turbine Chamber"; - network = list("turbine") - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"igE" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ihj" = ( -/obj/item/clothing/suit/toggle/labcoat/science, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ihk" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ijF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library) -"ijU" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"ikB" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plating, -/area/maintenance/department/science) -"ikO" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ilD" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ilE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"imE" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ioj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"iop" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ioF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iqc" = ( -/turf/open/floor/plasteel/stairs/right, -/area/maintenance/department/crew_quarters/dorms) -"irM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"itl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/xenobio{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"iuM" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ivO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"iwe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iyg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iyJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"izB" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"izF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"iAx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iBJ" = ( -/obj/machinery/camera{ - c_tag = "Telecomms External Fore"; - dir = 1; - network = list("tcomms"); - start_active = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"iCe" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"iCs" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"iCV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"iEQ" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iEU" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"iFI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iGJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"iJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"iKb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"iLh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"iLl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iLR" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"iPj" = ( -/obj/machinery/igniter{ - id = "xenoigniter"; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"iPz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Test Lab"; - dir = 4; - network = list("xeno","rd") - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"iPH" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"iPO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"iPU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"iSz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"iTF" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"iVJ" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"iWV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"iXx" = ( -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"jcT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jen" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"jgr" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library) -"jhk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jhD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"jjC" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/lawoffice) -"jrG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"jsf" = ( -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jsj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"jsD" = ( -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"jtf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"juw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"jvi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"jwe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jxl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jxK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jzz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"jzE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"jAy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"jBh" = ( -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"jBn" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"jCv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jDA" = ( -/obj/item/chair, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"jEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jFw" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jFO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"jHP" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"jOB" = ( -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"jPf" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/kitchen/knife, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"jQh" = ( -/obj/item/stack/sheet/animalhide/xeno, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"jRG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jSa" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"jTh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jTu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"jTU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"jUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jXh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"jXA" = ( -/obj/structure/table, -/obj/item/stack/ore/iron, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jXF" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jXV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"jYe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jYh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Supply to Virology" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"jZG" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"kas" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"kaR" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"kfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"kfM" = ( -/obj/structure/closet, -/obj/machinery/light/small, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/chapel/office) -"kgR" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"khk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"kjK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"kkk" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"kkQ" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"klb" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/sorting) -"klo" = ( -/obj/structure/dresser, -/obj/structure/mirror{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"klB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"klV" = ( -/obj/item/clothing/under/rank/civilian/clown/sexy, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"kmd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"kmn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"koz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kpK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"krU" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"ksf" = ( -/obj/item/stack/tile/carpet, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"kvj" = ( -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kwm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"kxj" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"kxs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kyv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kAa" = ( -/obj/structure/chair{ - dir = 8 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kDf" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet/black, -/area/chapel/office) -"kDJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kDY" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"kEM" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kEW" = ( -/obj/machinery/smartfridge/disks{ - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hydroponics) -"kFm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/tcommsat/computer) -"kFu" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"kFx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kFD" = ( -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/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) -"kGe" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/sign/departments/holy{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"kIo" = ( -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"kIO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kJo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kJw" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Firing Range Target" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"kKI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"kNf" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"kPi" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"kQy" = ( -/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/white, -/area/medical/sleeper) -"kQZ" = ( -/obj/structure/closet, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kRq" = ( -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"kRK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/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) -"kSb" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"kSF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kSO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Port Emergency Storage" - }, -/turf/open/floor/plating, -/area/storage/emergency/port) -"kTj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kTR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"kWQ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"kXx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"kYM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lcU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lcZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"ldQ" = ( -/obj/structure/floodlight_frame, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "executionflash"; - pixel_y = 25 - }, -/obj/machinery/igniter{ - id = "secigniter" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"lfx" = ( -/obj/structure/table, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lhA" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"liR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lje" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"lms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"lnn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"lnr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"loz" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"loL" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4; - filter_type = "n2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lqc" = ( -/obj/item/toy/gun, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lqy" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"lrM" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lxI" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/chapel/monastery) -"lzJ" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/carpet, -/area/chapel/office) -"lAf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"lAs" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"lAR" = ( -/obj/effect/turf_decal/stripes/line{ - 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/explab) -"lBP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lEn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"lFh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"lGp" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"lGv" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lGS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"lHc" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lHX" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lIr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lJr" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lKL" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Starboard Emergency Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"lMU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lNW" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lQn" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lQQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"lQX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lTC" = ( -/obj/item/shard, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lUO" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"lWy" = ( -/turf/open/floor/plating, -/area/maintenance/department/science) -"lWH" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"lWJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lXb" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Mix" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lXc" = ( -/obj/structure/table, -/obj/item/clothing/head/beret, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lXJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mal" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"mau" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"maW" = ( -/obj/structure/table/glass, -/obj/item/weldingtool/mini, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"mbe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mci" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"mdL" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen{ - layer = 3.1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"meF" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"mfC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mgz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mhl" = ( -/obj/machinery/power/emitter, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"mhn" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mhK" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"miw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 1; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"mjn" = ( -/obj/machinery/jukebox, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"mjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"mlr" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mmv" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Supplies"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mnG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"mpd" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"mpy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/blue, -/turf/open/floor/wood, -/area/lawoffice) -"mql" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"mqp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"msX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"mtu" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/reagent_containers/food/snacks/donut, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"mtI" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"mvm" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Starboard Solar APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"mwg" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/ammo_box/foambox, -/obj/item/ammo_box/foambox, -/obj/item/gun/ballistic/shotgun/toy, -/obj/item/gun/ballistic/shotgun/toy, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"mwG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mxy" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/tcommsat/computer) -"myu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"mzl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"mzE" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/science/storage) -"mzU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"mCe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"mDW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"mEu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mES" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Surgical Room" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"mHy" = ( -/obj/item/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"mIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"mJp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mKc" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"mKk" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mLB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/security/brig) -"mMz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"mQm" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"mSc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science) -"mTS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"mVM" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mXq" = ( -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/lawoffice) -"mZE" = ( -/turf/open/space/basic, -/area/space/nearstation) -"naq" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"naS" = ( -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nbu" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/space) -"ncm" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"ndI" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"nev" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"new" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nfi" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"nfz" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nge" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"ngp" = ( -/obj/item/chair/stool, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"nih" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"niy" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/cookie, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nku" = ( -/obj/machinery/door/airlock/centcom{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"nnh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"noC" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"noM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"npE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nqu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"nqV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nsy" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/mining/aux_base"; - dir = 8; - name = "Auxillary Base Construction APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"nsD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"nsJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ntj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"nuv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nxT" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nyB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/central) -"nyO" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"nzD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"nAs" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"nAY" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"nBw" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"nBL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"nDo" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nDx" = ( -/obj/machinery/vending/coffee, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nEb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"nGi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"nIm" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"nJI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/science/explab) -"nKo" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"nLl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nMG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Monitoring"; - network = list("tcomms") - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"nNJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nNN" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nOY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nPA" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"nQc" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nRM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"nSj" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nSo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"nTr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nUQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"nVU" = ( -/obj/item/spear, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nWP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nYb" = ( -/obj/structure/table_frame/wood, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"nYn" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"nZw" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Backup Laboratory" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"obj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"obP" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/department/science) -"odM" = ( -/obj/effect/landmark/barthpot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"oep" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ofN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ofX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ohR" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"olc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bedroom"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"onX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"ooh" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/wrench/medical, -/turf/open/floor/engine, -/area/medical/chemistry) -"opz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"ore" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engine/engineering) -"ost" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ous" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_y = -24; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ouv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ovB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"ovM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Port Fore" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"owS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"oxw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"oyF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/primary) -"ozO" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oAw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oAW" = ( -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oBb" = ( -/obj/structure/sign/warning/biohazard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"oCn" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/carpet, -/area/lawoffice) -"oCX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"oDP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"oEA" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"oEG" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"oEW" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "xenoigniter"; - pixel_y = 7 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oFf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"oFo" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"oFI" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"oGw" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal/incinerator) -"oHa" = ( -/obj/machinery/power/emitter/anchored{ - dir = 8; - state = 2 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"oKa" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"oKv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/engine/engineering) -"oKJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"oLR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit/departure_lounge) -"oMN" = ( -/turf/open/floor/plasteel/stairs/left, -/area/maintenance/department/crew_quarters/dorms) -"oNE" = ( -/obj/structure/chair/office/light, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"oPx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"oPy" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"oQm" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"oRX" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"oSc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"oSL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"oTl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"oTp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"oTC" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"oUa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oWu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oWw" = ( -/obj/item/flashlight, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oXe" = ( -/obj/structure/table/glass, -/obj/item/mmi, -/obj/item/clothing/mask/balaclava, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"oXq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"oYj" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oZW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"paU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"pbm" = ( -/obj/machinery/door/airlock/external{ - name = "Pod Docking Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"pbI" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/explab) -"pbR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"pdq" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"pdW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/explab) -"peE" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pfz" = ( -/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/security/execution/transfer) -"pfB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"pfP" = ( -/obj/structure/table, -/obj/item/storage/box/syringes, -/obj/machinery/camera{ - c_tag = "Xenobiology Computers"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"pgH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"phJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"phS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"pia" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"pjH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pkM" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "22" - }, -/turf/open/floor/plating, -/area/chapel/office) -"plA" = ( -/obj/structure/musician/piano, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"pmB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"pnU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"poP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"pps" = ( -/turf/closed/wall, -/area/engine/break_room) -"ppQ" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"pqP" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"prQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"psd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Filter" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"puw" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"pvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"pwj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"pwS" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pxD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"pzF" = ( -/mob/living/simple_animal/opossum, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"pBD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"pBJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"pCo" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"pDP" = ( -/obj/machinery/vending/assist, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"pEH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pEL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"pFe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"pFy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pGe" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"pHo" = ( -/obj/machinery/computer/bounty{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"pKd" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"pMG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"pNy" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera{ - c_tag = "Toxins Launch Area"; - network = list("ss13","rd") - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pOr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"pQw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"pVD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/department/engine) -"pWm" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"pWF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"pWT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"pXc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet, -/area/library) -"pXg" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"pXT" = ( -/obj/item/kirbyplants, -/obj/machinery/power/apc{ - areastring = "/area/lawoffice"; - dir = 8; - name = "Law Office APC"; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"pYh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"pYw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"pYC" = ( -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"qar" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qbp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"qbZ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"qcD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qcH" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qdi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Containment Pen Access"; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"qdj" = ( -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qeY" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"qhE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qjx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"qkM" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qni" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) -"qnT" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/department/science) -"qpd" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qpS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qtA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qtF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qtO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qxq" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air Out" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"qyF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qAM" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"qBv" = ( -/obj/item/clothing/head/ushanka, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qDJ" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/obj/item/integrated_electronics/debugger, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"qEN" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"qFu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qGu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"qGZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"qHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"qIC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"qIO" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/department/science) -"qLI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qMi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"qOE" = ( -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"qOH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qPB" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"qRl" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qRm" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"qTV" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qUw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qVk" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"qVP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qWo" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/chapel/monastery) -"qWG" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/engine/engineering) -"qWM" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"qXq" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qXH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qYi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qYq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/item/wrench, -/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/dark, -/area/science/xenobiology) -"qYS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rar" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"rdB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"reH" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"reV" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rgn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rgs" = ( -/obj/structure/table, -/obj/item/instrument/eguitar, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"rhr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/engine) -"riF" = ( -/obj/machinery/computer/arcade, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"riW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"rjF" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"rmC" = ( -/turf/open/space/basic, -/area/space/station_ruins) -"rnr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"rnE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"roc" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ros" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"rrb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"rrU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"rse" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rsZ" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Access"; - dir = 1; - network = list("tcomms") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"rui" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rvH" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Medbay Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"rxa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"rxQ" = ( -/obj/machinery/door/airlock/abandoned{ - id_tag = "PottySci"; - name = "Science Bathroom" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rxV" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"rzp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"rzF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"rBh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"rEh" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rFq" = ( -/obj/structure/chair, -/obj/item/reagent_containers/food/snacks/donkpocket, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"rHA" = ( -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"rJg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"rJZ" = ( -/obj/docking_port/stationary{ - area_type = /area/construction/mining/aux_base; - dheight = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "aux base zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/small; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"rKr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"rKL" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"rLi" = ( -/obj/machinery/button/door{ - id = "shootshut"; - name = "shutters control"; - pixel_x = 28 - }, -/obj/item/ammo_casing/shotgun/improvised, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"rMV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"rNi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/pipedispenser/disposal/transit_tube, -/turf/open/floor/plasteel, -/area/engine/atmos) -"rNB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rPg" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"rPW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"rSH" = ( -/obj/item/trash/can, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"rTd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"rWE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"rXT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rYC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "public external airlock" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"sbk" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"sbY" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/lawoffice) -"sci" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/science) -"scp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Auxillary Base Maintenance"; - req_access_txt = "12"; - req_one_access_txt = "32;47;48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"scz" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 8; - name = "Engineering APC"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"sdk" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Armory External"; - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"sgc" = ( -/obj/machinery/vending/cigarette, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"shH" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"sij" = ( -/obj/structure/closet, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sjC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel, -/area/engine/engineering) -"skw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"slJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"smv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Cooling Loop to Gas" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"spz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sqh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"sqQ" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"srZ" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ssx" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"stQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sut" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"svA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"svN" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/departments/restroom{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"swg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"sww" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"syn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/security/brig) -"syQ" = ( -/obj/machinery/vending/games, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"szG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sAK" = ( -/obj/item/clothing/mask/gas/plaguedoctor, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sBA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"sEB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sEN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sGr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"sIK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sJp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sJr" = ( -/turf/open/floor/wood, -/area/lawoffice) -"sKa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"sNz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"sOC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sQt" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"sUP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"sWj" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"sWW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"sXi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sXR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"sYQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sZh" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/disposal) -"sZu" = ( -/obj/item/storage/backpack/satchel/explorer, -/turf/open/floor/plating, -/area/maintenance/department/science) -"tan" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/centcom{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"tap" = ( -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"taA" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"taT" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4; - name = "euthanization chamber freezer" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tcY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"tdp" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/hand_labeler, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/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/explab) -"tdB" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"tdL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"tfw" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tfx" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"tfP" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"tfZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"thA" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"thW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"tim" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/science/explab) -"tix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"tkL" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tlc" = ( -/obj/machinery/recharger, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"tlp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tlw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"tlN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tlV" = ( -/obj/structure/reflector/single/anchored{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"tnP" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tnY" = ( -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_x = -26; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"tpb" = ( -/obj/item/reagent_containers/food/snacks/donut, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"tqO" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tqX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ttS" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/mob/living/simple_animal/pet/bumbles, -/turf/open/floor/plasteel, -/area/hydroponics) -"tue" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tuy" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 8; - network = list("xeno","rd") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"tvj" = ( -/obj/structure/festivus{ - anchored = 1; - desc = "A pole for dancing."; - name = "pole" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"tvP" = ( -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"twv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"typ" = ( -/obj/structure/table/glass, -/obj/item/hemostat, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"tyL" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"tzH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"tAK" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"tCP" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"tDn" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"tHk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tIS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"tJr" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"tLP" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/warehouse) -"tOD" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tRc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"tSL" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"tTl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tTZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"tXn" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/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/xenobiology) -"uaC" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"uaE" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"uaO" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uaP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ubW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"udl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"uek" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"ueP" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = 28; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ueV" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"ueX" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ufa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ugC" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"uiP" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"ujI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ukn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"ukp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Gas" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ulu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/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/storage/primary) -"ulY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ume" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"uoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"uos" = ( -/obj/machinery/computer/camera_advanced/base_construction, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"uoS" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"upc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"uqJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"urP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/explab) -"utg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"uug" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"uun" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"uuS" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"uvo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"uvq" = ( -/obj/structure/table, -/obj/item/dice/d20, -/turf/open/floor/plating, -/area/maintenance/department/science) -"uwb" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"uwX" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uxP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/engine, -/area/engine/supermatter) -"uzn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"uAU" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet, -/area/lawoffice) -"uAZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Mixing Area"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/explab) -"uCS" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"uHG" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uIn" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uIB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"uLF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"uMe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uMo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plasteel, -/area/engine/engineering) -"uMt" = ( -/obj/effect/turf_decal/plaque, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uQR" = ( -/obj/item/ammo_casing/shotgun/beanbag, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"uRk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"uUQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uVf" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/fountain, -/obj/item/stamp/law, -/turf/open/floor/carpet, -/area/lawoffice) -"uXG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"uXH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"uZb" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"vay" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"vco" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"veF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"veM" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/machinery/light{ - dir = 1 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vgp" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vhk" = ( -/obj/structure/chair, -/turf/open/floor/carpet, -/area/lawoffice) -"vjd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vli" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vlC" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vlF" = ( -/obj/item/coin/silver, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor5" - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"vmG" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"vmY" = ( -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"voh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"vsk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vsw" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 8; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vsJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vtl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vtT" = ( -/turf/open/floor/plating, -/area/maintenance/solars/port) -"vuP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"vuQ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vxp" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced, -/obj/item/assembly/mousetrap, -/turf/open/floor/engine, -/area/science/explab) -"vxr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vzz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"vzA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vzP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vzT" = ( -/obj/structure/table, -/obj/item/stack/rods{ - amount = 5; - layer = 3.3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vAq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vBE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vCC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vGg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"vHf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vIc" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vKq" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vMx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"vOw" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library) -"vRi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"vRm" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vTL" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"vTN" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vVO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vYN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"wbB" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "External Gas to Loop" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"wbF" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/machinery/camera{ - c_tag = "Engineering Starboard Aft"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wcs" = ( -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"wdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"weL" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wfc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/maintenance/department/science) -"wfs" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wfG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"wfO" = ( -/mob/living/simple_animal/hostile/retaliate/poison/snake, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wfP" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"wig" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wiB" = ( -/obj/item/shard{ - icon_state = "small" - }, -/obj/item/stack/cable_coil/red, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wjm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wjQ" = ( -/obj/machinery/computer/shuttle/mining/common{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wkZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"wlK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"wnJ" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/science/mixing) -"woq" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wqu" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"wrU" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/lawoffice) -"wtE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wun" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wwr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wwG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wxb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wxJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wzb" = ( -/obj/structure/chair, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"wAI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"wBb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"wBg" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "Potty1"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"wDl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wDm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wDZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"wEn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"wFT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"wIo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"wIv" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wKa" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"wLo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cmoshutters"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"wMF" = ( -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"wMM" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wMX" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"wNq" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wOa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wOf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"wOS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/mixing) -"wQU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"wRk" = ( -/obj/structure/rack, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wRz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wRI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Brig Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wTD" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"wTO" = ( -/obj/structure/frame/computer, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"wUf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"wUz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"wVC" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci"; - location = "Bar1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wXu" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wYu" = ( -/obj/machinery/door/poddoor/shutters{ - id = "shootshut" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wYK" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"xah" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"xaO" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"xaQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/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 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"xbJ" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"xee" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"xer" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"xeB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"xgh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"xgG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"xhj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"xhE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"xhI" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"xja" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/library) -"xjc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"xje" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xjg" = ( -/mob/living/simple_animal/hostile/retaliate/goose, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"xjK" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/rack, -/obj/item/taperecorder, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"xjT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xlg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xlA" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xmp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"xmE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"xnm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/tcommsat/computer) -"xnP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"xpr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xpD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xsO" = ( -/obj/item/ectoplasm, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xuv" = ( -/obj/item/broken_bottle, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"xvO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xxw" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xxO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xxS" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"xyl" = ( -/obj/structure/table, -/obj/item/assembly/timer, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"xyB" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"xzp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xzR" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"xCV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"xDj" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xEx" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"xFl" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/server"; - dir = 1; - layer = 4; - name = "Telecomms Server APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"xGc" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space/station_ruins) -"xIx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"xJy" = ( -/obj/structure/chair/comfy/black, -/obj/structure/sign/plaques/kiddie{ - desc = "An embossed piece of paper from the Third University of Harvard."; - name = "\improper 'Diploma' frame"; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"xKc" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"xLi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"xLC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"xNx" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction/flip, -/turf/open/space/basic, -/area/space/nearstation) -"xNy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"xOC" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"xPa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/engine, -/area/science/explab) -"xQc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"xQk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"xSd" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"xSX" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"xSZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xVt" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/rack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"xWl" = ( -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/structure/table/glass, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xYV" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"ybX" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ycr" = ( -/obj/structure/target_stake, -/obj/item/target/syndicate, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ycx" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/department/engine) -"ydf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"yfO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ygZ" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ymb" = ( -/obj/machinery/camera{ - c_tag = "Engineering Telecomms Access"; - dir = 8; - network = list("tcomms") - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +"aaa" = (/turf/open/space/basic,/area/space) +"aab" = (/obj/machinery/holopad,/obj/effect/landmark/start/cyborg,/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aac" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aad" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"aae" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaf" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aag" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering) +"aah" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aai" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aal" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plating,/area/engine/engineering) +"aam" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aan" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aao" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aap" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaq" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aar" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/tank/internals/plasma,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aas" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aat" = (/obj/structure/closet/wardrobe/green,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aau" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/sign/poster/official/hydro_ad{pixel_y = 32},/turf/open/floor/plasteel,/area/hydroponics) +"aav" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aaw" = (/obj/structure/sign/poster/official/hydro_ad,/turf/closed/wall,/area/hydroponics) +"aax" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"aay" = (/obj/structure/sign/poster/official/medical_green_cross,/turf/closed/wall,/area/medical/medbay/central) +"aaz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"aaA" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"aaB" = (/obj/structure/closet/masks,/obj/item/reagent_containers/food/snacks/deadmouse,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"aaC" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"aaD" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/mask/balaclava,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaE" = (/obj/machinery/light/small,/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaF" = (/turf/closed/wall,/area/crew_quarters/fitness/pool) +"aaG" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaI" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aaK" = (/obj/machinery/light{dir = 1; light_color = "#706891"},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaL" = (/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) +"aaM" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 8},/area/crew_quarters/fitness/pool) +"aaN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaO" = (/turf/open/pool,/area/crew_quarters/fitness/pool) +"aaP" = (/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) +"aaQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaR" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Pool"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster/official/walk{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaW" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"aaX" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaY" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aaZ" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"aba" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abb" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner,/area/crew_quarters/fitness/pool) +"abd" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abe" = (/obj/machinery/vending/kink,/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abf" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/science) +"abg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abj" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) +"abk" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abl" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) +"abn" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) +"abo" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) +"abp" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abq" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) +"abr" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/pool) +"abs" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/pool) +"abt" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) +"abu" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"abw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"abx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/athletic_mixed,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"aby" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space/nearstation) +"abz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abA" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness/pool) +"abB" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"abC" = (/obj/machinery/light,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"abD" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) +"abE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; name = "Pool APC"; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"abG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"abH" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abI" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"abJ" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat External Fore"; dir = 1; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"abK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abN" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space) +"abO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"abP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abS" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abT" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"abV" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abW" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abX" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abY" = (/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abZ" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/effect/landmark/xmastree,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"acc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acd" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"ace" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acf" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber North"; dir = 1; network = list("minisat")},/obj/machinery/light,/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"ach" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"aci" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) +"acj" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"ack" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Center"; network = list("minisat")},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acl" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acm" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Port"; dir = 8; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"acn" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber West"; dir = 4; network = list("minisat")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"aco" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acq" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acr" = (/obj/machinery/ai_slipper{uses = 8},/obj/machinery/power/terminal{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acs" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"act" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acu" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber East"; dir = 8; network = list("minisat")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acv" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Starboard"; dir = 4; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"acw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acy" = (/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -9},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_y = -31},/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -9},/obj/machinery/newscaster/security_unit{pixel_x = -28; pixel_y = -28},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 28; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acB" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acC" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acD" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber South"; network = list("minisat")},/obj/machinery/light{dir = 1},/obj/machinery/flasher{id = "AI"; pixel_y = 20},/obj/machinery/status_display/ai{pixel_y = 37},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acE" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/AIsatextAS) +"acG" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acI" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) +"acJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acM" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space/nearstation) +"acO" = (/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) +"acP" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"acQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"acR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acU" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"acV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"acW" = (/obj/machinery/computer/station_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acX" = (/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acY" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"ada" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"adb" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"adc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"ade" = (/obj/structure/table/glass,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/mmi,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adf" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/rdconsole/robotics,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adg" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adi" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adk" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat_interior"; dir = 8; name = "MiniSat Antechamber APC"; pixel_x = -24},/obj/machinery/recharger,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adl" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adn" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"ado" = (/obj/structure/table,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/paper_bin,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adq" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"ads" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adt" = (/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adv" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adx" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"ady" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Observation"; dir = 1; network = list("minisat")},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adB" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adD" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste Out"},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adH" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"adM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Observation"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"adN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adQ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adR" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"adS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adV" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"adW" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"adX" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"adY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"adZ" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) +"aea" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) +"aeb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aec" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aed" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) +"aee" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aef" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aeg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) +"aeh" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"aei" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aej" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) +"aek" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"ael" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aem" = (/turf/closed/wall/r_wall,/area/security/prison) +"aen" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison) +"aeo" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/potato,/obj/item/seeds/carrot,/obj/item/seeds/corn,/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) +"aep" = (/obj/item/cultivator,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeq" = (/obj/machinery/hydroponics/constructable,/obj/structure/cable{icon_state = "4-8"},/obj/item/seeds/glowshroom,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/camera{c_tag = "Permabrig Central"; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison) +"aer" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aes" = (/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) +"aet" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeu" = (/obj/machinery/biogenerator,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"aev" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aew" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aex" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"aey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aez" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"aeA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aeC" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeD" = (/obj/item/plant_analyzer,/obj/item/shovel/spade,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeE" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/sunflower,/obj/item/seeds/poppy,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeF" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeG" = (/obj/item/storage/crayons,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"aeO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aeP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"aeQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeS" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aeT" = (/obj/structure/bookcase,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeU" = (/turf/open/floor/plasteel/dark,/area/security/prison) +"aeV" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeW" = (/obj/structure/sink{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aeX" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aeY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; dir = 8; name = "MiniSat Port Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aeZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afc" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afe" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aff" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afg" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; network = list("minisat")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afm" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; dir = 4; name = "MiniSat Starboard Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afn" = (/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/security/prison) +"afo" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/security/prison) +"afp" = (/obj/item/storage/dice,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) +"afq" = (/obj/structure/table,/obj/item/instrument/harmonica,/turf/open/floor/plasteel/dark,/area/security/prison) +"afr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aft" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afu" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afv" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afw" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afx" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afy" = (/obj/effect/landmark/start/cyborg,/obj/item/beacon,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afA" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afB" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high,/obj/machinery/light/small{dir = 4},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afC" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"afD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/prison) +"afE" = (/obj/item/toy/cards/deck,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) +"afF" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/prison) +"afG" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"afH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"afI" = (/obj/machinery/computer/arcade{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"afJ" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/nearstation) +"afK" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afL" = (/obj/structure/table,/obj/item/wrench,/obj/item/tank/internals/emergency_oxygen,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afM" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afN" = (/obj/machinery/teleport/hub,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"afO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afR" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"afS" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afT" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool{layer = 5},/obj/item/extinguisher{layer = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afU" = (/turf/closed/wall,/area/security/execution/transfer) +"afX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"afZ" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/dark,/area/security/prison) +"aga" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) +"agb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) +"agc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/door/window/westleft{base_state = "right"; icon_state = "right"; name = "Unisex Showers"},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agd" = (/obj/machinery/shower{dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/security/prison) +"age" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agf" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agg" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agh" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agi" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/security/execution/transfer) +"agj" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) +"agl" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/razor,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agn" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/dark,/area/security/prison) +"ago" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agp" = (/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison) +"agq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agr" = (/obj/machinery/computer/teleporter{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"ags" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agu" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) +"agw" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agx" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agy" = (/turf/closed/wall,/area/security/prison) +"agz" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/security/prison) +"agA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/security/prison) +"agB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/security/prison) +"agC" = (/obj/machinery/door/airlock{name = "Unisex Restroom"},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agD" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agF" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/security/execution/transfer) +"agH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agI" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 2"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/slimeplushie,/turf/open/floor/plasteel,/area/security/prison) +"agK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) +"agL" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 1"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/lizardplushie,/turf/open/floor/plasteel,/area/security/prison) +"agM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/prison) +"agN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) +"agO" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agP" = (/turf/closed/wall,/area/security/main) +"agQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) +"agR" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agS" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"agT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"agV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agW" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"agY" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel,/area/security/prison) +"agZ" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"aha" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"ahb" = (/obj/structure/toilet/secret/prison{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison) +"ahd" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"ahi" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"ahj" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/clothing/suit/straight_jacket,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahk" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 6; pixel_y = 27},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = -6; pixel_y = 32; req_access_txt = "7"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/ignition{id = "secigniter"; pixel_x = 6; pixel_y = 36},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahm" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"ahn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall,/area/security/prison) +"aho" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/prison) +"ahp" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"ahq" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/maintenance/fore) +"ahs" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube,/turf/open/space/basic,/area/space/nearstation) +"aht" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ahu" = (/obj/structure/table/glass,/obj/item/flashlight/lamp,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) +"ahx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahz" = (/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{dir = 9; pixel_x = 24; pixel_y = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/execution/transfer) +"ahB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahC" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) +"ahD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"ahF" = (/obj/machinery/camera{c_tag = "Brig Prison Hallway"; network = list("ss13","prison")},/obj/machinery/computer/security/telescreen/prison{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) +"ahH" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) +"ahJ" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Prison Wing APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/prison) +"ahK" = (/obj/structure/table,/obj/item/melee/chainofcommand,/obj/item/melee/baton,/turf/open/floor/plasteel,/area/security/prison) +"ahL" = (/turf/closed/wall/r_wall,/area/security/armory) +"ahM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahQ" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahR" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube/crossing,/turf/open/space/basic,/area/space/nearstation) +"ahS" = (/obj/structure/table/optable,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahT" = (/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) +"ahV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Prisoner Transfer Centre"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"aia" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"aib" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"aic" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) +"aid" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aie" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aif" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aig" = (/turf/open/floor/plasteel,/area/security/prison) +"aih" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/restraints/handcuffs,/obj/item/razor,/turf/open/floor/plasteel,/area/security/prison) +"aii" = (/obj/structure/table,/obj/item/storage/box/chemimp{pixel_x = 6},/obj/item/storage/box/trackimp{pixel_x = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"aij" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/item/poster/random_contraband,/obj/item/clothing/suit/armor/navyblue/russian,/obj/item/grenade/plastic/c4,/turf/open/floor/plasteel/dark,/area/security/armory) +"aik" = (/obj/structure/closet/secure_closet/lethalshots,/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"},/turf/open/floor/plasteel/dark,/area/security/armory) +"ail" = (/obj/vehicle/ridden/secway,/turf/open/floor/plasteel/dark,/area/security/armory) +"aim" = (/obj/item/grenade/barrier{pixel_x = 4},/obj/item/grenade/barrier,/obj/item/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/armory) +"ain" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aio" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aip" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aiq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"air" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ais" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ait" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiu" = (/turf/closed/wall,/area/maintenance/department/security/brig) +"aiv" = (/obj/structure/table/glass,/obj/item/storage/backpack/duffelbag/sec/surgery{pixel_y = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"aiw" = (/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) +"aix" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiA" = (/turf/closed/wall/r_wall,/area/security/execution/transfer) +"aiB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"aiG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison) +"aiH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aiJ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiK" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/electropack,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiL" = (/obj/structure/table,/obj/item/storage/box/flashbangs{pixel_x = 6; pixel_y = 3},/obj/item/storage/box/flashbangs{pixel_x = -3; pixel_y = 3},/obj/item/storage/lockbox/loyalty{layer = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiM" = (/turf/open/floor/plasteel/dark,/area/security/armory) +"aiN" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiO" = (/obj/structure/table,/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/machinery/power/apc/highcap/five_k{dir = 4; name = "Armory APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) +"aiQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) +"aiR" = (/turf/closed/wall,/area/crew_quarters/heads/hos) +"aiS" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) +"aiT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aiU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/barsign,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aiV" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiW" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiX" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiY" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiZ" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aja" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ajb" = (/obj/structure/closet/secure_closet/injection,/obj/machinery/power/apc{dir = 4; name = "Prisoner Transfer Centre"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ajc" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel/dark,/area/security/prison) +"ajd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/prison) +"aje" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) +"ajf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/prison) +"ajg" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajh" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/shield/riot,/obj/item/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"aji" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajj" = (/obj/structure/rack,/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajk" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) +"ajl" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajm" = (/obj/structure/table,/obj/item/storage/fancy/donut_box{pixel_y = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajn" = (/obj/structure/table,/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/item/storage/box/handcuffs{pixel_x = 1; pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajo" = (/obj/machinery/vending/coffee,/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajp" = (/obj/machinery/photocopier,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajq" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) +"ajr" = (/obj/item/reagent_containers/food/snacks/donut/chaos,/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"ajs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) +"ajt" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 4; pixel_y = 7},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aju" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"ajv" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajx" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajy" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajA" = (/obj/docking_port/stationary{dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_ne"; name = "northeast of station"; width = 23},/turf/open/space,/area/space/nearstation) +"ajB" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajD" = (/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajE" = (/obj/structure/bed,/obj/item/bedsheet,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajF" = (/obj/machinery/atmospherics/components/unary/tank/oxygen,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajG" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajH" = (/turf/closed/wall,/area/security/processing/cremation) +"ajI" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Crematorium"; req_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"ajJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajK" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajL" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajM" = (/turf/closed/wall,/area/security/brig) +"ajN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"ajO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/sign/poster/official/safety_report{pixel_y = 32},/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/brig) +"ajP" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/armory) +"ajR" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/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/dark,/area/security/armory) +"ajS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/armory) +"ajT" = (/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajU" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ajV" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"ajW" = (/obj/structure/chair/stool,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"ajX" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajY" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajZ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aka" = (/obj/machinery/suit_storage_unit/hos,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; name = "\improper 'Diploma' frame"; pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akc" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#706891"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akd" = (/obj/structure/table/wood,/obj/item/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/deputy,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"ake" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/button/door{id = "hos_spess_shutters"; name = "Space shutters"; pixel_x = 24; req_access_txt = "1"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akf" = (/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"akg" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akh" = (/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akj" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ako" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akp" = (/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akr" = (/obj/machinery/washing_machine,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aks" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akt" = (/obj/structure/bed,/obj/item/bedsheet,/obj/machinery/button/door{id = "mainthideout"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aku" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; node1_concentration = 0.2; node2_concentration = 0.8; on = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akv" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akw" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/machinery/meter,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akx" = (/obj/structure/bodycontainer/crematorium,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"aky" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"akz" = (/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "Crematorium APC"; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"akA" = (/turf/closed/wall/r_wall,/area/security/brig) +"akB" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"akC" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/regular,/obj/structure/table/glass,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"akD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"akE" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip,/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/white,/area/security/brig) +"akF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"akG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"akI" = (/obj/machinery/door/airlock/security{name = "Evidence Room"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/brig) +"akJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"akK" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera{c_tag = "Brig Evidence Room"; dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"akL" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/item/gun/energy/e_gun/advtaser,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akN" = (/obj/effect/landmark/event_spawn,/obj/structure/rack,/obj/item/key/security,/turf/open/floor/plasteel/dark,/area/security/armory) +"akO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akP" = (/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"akQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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/main) +"akT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"akU" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akV" = (/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akW" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"ala" = (/obj/structure/transit_tube/curved{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"alb" = (/obj/structure/lattice/catwalk,/obj/structure/showcase/cyborg/old{pixel_y = 20},/turf/open/space,/area/space/nearstation) +"alc" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigars,/obj/item/stack/spacecash/c20,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ale" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alf" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alg" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alh" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ali" = (/obj/machinery/door/airlock/abandoned{id_tag = "mainthideout"; name = "Hideout"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"all" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"aln" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Brig Crematorium"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) +"alq" = (/obj/item/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/reagent_containers/syringe{name = "steel point"},/obj/item/reagent_containers/glass/bottle/charcoal,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"alr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"als" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) +"alt" = (/obj/machinery/door/window/westleft{dir = 4; name = "Brig Infirmary"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"alu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"alv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"alw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"alx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"aly" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"alz" = (/obj/structure/closet{name = "Evidence Closet"},/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,/area/security/brig) +"alA" = (/obj/machinery/flasher/portable,/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},/turf/open/floor/plasteel/dark,/area/security/armory) +"alB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{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/main) +"alC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/pen,/obj/item/folder/red{layer = 2.9; pixel_x = 8},/turf/open/floor/plasteel,/area/security/main) +"alD" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel,/area/security/main) +"alE" = (/turf/open/floor/plasteel,/area/security/main) +"alF" = (/obj/machinery/computer/security,/turf/open/floor/plasteel,/area/security/main) +"alG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"alH" = (/turf/open/floor/plasteel/dark,/area/security/main) +"alI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"alJ" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alK" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alL" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alM" = (/obj/machinery/computer/secure_data{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"alO" = (/obj/structure/transit_tube/diagonal,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"alP" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"alQ" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"alR" = (/obj/effect/landmark/blobstart,/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"alS" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"alT" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Supply to Security"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alX" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alZ" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/security/brig) +"ama" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) +"amc" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"amd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ame" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amf" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{dir = 4; name = "Brig APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amg" = (/turf/closed/wall/r_wall,/area/security/warden) +"amh" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) +"ami" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/security/warden) +"amj" = (/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/security/warden) +"amk" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/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},/turf/open/floor/plasteel/dark,/area/security/warden) +"aml" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"amm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Office"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"amn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amo" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amp" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"amq" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amr" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ams" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/main) +"amt" = (/obj/machinery/door/airlock/command/glass{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"amu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/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/dark,/area/crew_quarters/heads/hos) +"amv" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amx" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amy" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amz" = (/obj/machinery/computer/security/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amA" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amB" = (/obj/structure/transit_tube/crossing/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amC" = (/obj/structure/transit_tube/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amD" = (/obj/structure/transit_tube/curved/flipped{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amF" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) +"amG" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/crew_quarters/dorms) +"amH" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"amI" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_one_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"amJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/security/processing/cremation) +"amK" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"amL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) +"amM" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amO" = (/obj/structure/closet/crate/freezer,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/item/reagent_containers/blood/OMinus,/obj/item/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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/security/brig) +"amP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"amQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amS" = (/obj/structure/closet/secure_closet/warden,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amT" = (/obj/machinery/computer/prisoner/management,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amU" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Brig Control Room"},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amV" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amX" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amZ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"anb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"anc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/main) +"and" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) +"ane" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) +"anf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ang" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"ani" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"anj" = (/obj/structure/table/wood,/obj/item/phone,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"ank" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"anl" = (/obj/structure/transit_tube/diagonal,/turf/open/space/basic,/area/space/nearstation) +"anm" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Pete's Speakeasy"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"anq" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ans" = (/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ant" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/security/processing/cremation) +"anw" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"anx" = (/obj/machinery/door/airlock/maintenance{name = "Brig Infirmary Maintenance"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"any" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"anz" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"anA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"anB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) +"anC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anJ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anK" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"anL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"anM" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"anN" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"anO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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,/area/security/main) +"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/security/main) +"anQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"anR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/keycard_auth{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anU" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 1},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anV" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{name = "Head of Security's Office APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"anX" = (/turf/closed/wall/r_wall,/area/teleporter) +"anY" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"aob" = (/obj/structure/closet/emcloset,/obj/item/camera,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aod" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aof" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aog" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aok" = (/obj/machinery/computer/security/labor,/turf/open/floor/plasteel/dark,/area/security/brig) +"aol" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/dark,/area/security/brig) +"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aon" = (/turf/open/floor/plasteel,/area/security/brig) +"aoo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"aop" = (/obj/structure/bed/dogbed,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/mob/living/simple_animal/pet/dog/pug{name = "McGriff"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aor" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aos" = (/obj/machinery/door/airlock/security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aot" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"aou" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) +"aov" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"aow" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aox" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/turf/open/floor/plasteel,/area/security/main) +"aoy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aoz" = (/turf/closed/wall,/area/maintenance/fore) +"aoB" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/gateway) +"aoH" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/solar/port) +"aoI" = (/obj/structure/lattice,/turf/open/space,/area/solar/port) +"aoJ" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/solar/port) +"aoK" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aoL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Brig Gulag Teleporter"; dir = 4},/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/storage/box/prisoner,/obj/item/razor{pixel_x = -6},/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) +"aoP" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aoQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"aoR" = (/obj/item/book/manual/wiki/security_space_law,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/structure/table/reinforced,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoS" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Secure Gate"; name = "Entrance Lockdown"; pixel_x = 5; pixel_y = -2},/obj/machinery/button/door{id = "Prison Gate"; name = "Permabrig Lockdown"; pixel_x = 5; pixel_y = 8; req_access_txt = "2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoT" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/crew{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoV" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoX" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/item/laser_pointer/red,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoY" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light_switch{pixel_y = -22},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoZ" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"apa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) +"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apc" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/main) +"apd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ape" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/sign/warning/vacuum/external{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) +"apg" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Security Access"; req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fore) +"aph" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"api" = (/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"apj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"apk" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) +"apl" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"apm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"apn" = (/turf/open/floor/plating,/area/maintenance/fore) +"apo" = (/obj/structure/transit_tube/diagonal/crossing,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"app" = (/obj/machinery/camera{c_tag = "Bridge Starboard Exterior"; dir = 1},/turf/open/space,/area/space/nearstation) +"apr" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/dark,/area/gateway) +"apt" = (/obj/structure/chair{dir = 4},/obj/item/clothing/mask/cigarette,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"apu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"apv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"apw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/camera_film,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"apz" = (/obj/item/target/clown,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"apB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"apE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"apF" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) +"apG" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/dark,/area/security/brig) +"apH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"apI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) +"apJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"apK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/paper_bin{layer = 2.9},/obj/item/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"apL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"apM" = (/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"apO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"apP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access_txt = "1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) +"apQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/fore) +"apR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore) +"apS" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"apT" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"apU" = (/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/gateway) +"apV" = (/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/gateway) +"apW" = (/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/gateway) +"apX" = (/turf/closed/wall,/area/crew_quarters/dorms) +"aqa" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/port) +"aqc" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqe" = (/obj/item/target/alien,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqh" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqi" = (/obj/structure/closet,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aqn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqq" = (/obj/machinery/camera{c_tag = "Brig Cells"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqv" = (/obj/machinery/camera{c_tag = "Brig Entrance"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqz" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqA" = (/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/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/brig) +"aqB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/brig) +"aqC" = (/turf/open/floor/plasteel/dark,/area/security/brig) +"aqD" = (/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/brig) +"aqE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) +"aqF" = (/turf/closed/wall/r_wall,/area/maintenance/fore) +"aqG" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"aqH" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/bridge) +"aqI" = (/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 = "bridgespace"; name = "bridge external shutters"},/turf/open/floor/plating,/area/bridge) +"aqJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/bridge) +"aqK" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/bridge) +"aqL" = (/obj/machinery/computer/bank_machine,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aqM" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqO" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqP" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aqQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/gateway) +"aqR" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"aqS" = (/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/gateway) +"aqT" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqU" = (/obj/machinery/washing_machine,/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqV" = (/obj/machinery/washing_machine,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqY" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_station"; name = "Station"; roundstart_template = /datum/map_template/shuttle/escape_pod/large; width = 5},/turf/open/space/basic,/area/space) +"ara" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) +"arc" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ard" = (/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ari" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_y = -25; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"ark" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"arl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"arm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"arn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"aro" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arr" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"ars" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aru" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arw" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arx" = (/obj/item/flashlight/lamp,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) +"ary" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"arz" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8; network = list("interrogation")},/turf/open/floor/plasteel/dark,/area/security/brig) +"arA" = (/turf/closed/wall/r_wall,/area/bridge) +"arB" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Bridge MiniSat Access"; dir = 4},/turf/open/floor/plating,/area/bridge) +"arC" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/plating,/area/bridge) +"arD" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/bridge) +"arE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/floor/plating,/area/bridge) +"arF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"arG" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/bridge) +"arH" = (/obj/machinery/modular_computer/console/preset/command,/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/bridge) +"arI" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arL" = (/obj/machinery/computer/card,/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arM" = (/obj/machinery/computer/communications,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arN" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arO" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/recharger,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arP" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arQ" = (/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/dark,/area/bridge) +"arR" = (/obj/machinery/computer/prisoner/management,/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/dark,/area/bridge) +"arS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"arU" = (/obj/machinery/nuclearbomb/selfdestruct,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"arW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/ore_silo,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arX" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4},/obj/structure/table,/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway) +"arY" = (/obj/machinery/computer/gateway_control,/turf/open/floor/plasteel,/area/gateway) +"arZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"asa" = (/obj/structure/table,/obj/item/radio/off{pixel_y = 6},/obj/item/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/radio/off,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/off,/turf/open/floor/plasteel,/area/gateway) +"asb" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"asc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"asd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ase" = (/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"asf" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"asg" = (/obj/machinery/newscaster{pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/bedsheetbin/color,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ash" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/dorms) +"asi" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/dorms) +"asj" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/crew_quarters/dorms) +"aso" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"asr" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"asu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"asw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) +"asx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"asy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/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,/area/security/brig) +"asG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"asH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asI" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asJ" = (/obj/item/folder/red,/obj/item/taperecorder,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) +"asK" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) +"asM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/bridge) +"asN" = (/turf/open/floor/plasteel,/area/bridge) +"asO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/bridge) +"asP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/bridge) +"asQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 10},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"asR" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"asS" = (/turf/open/floor/plasteel/dark,/area/bridge) +"asT" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"asU" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/bridge) +"asV" = (/obj/structure/closet/crate/goldcrate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"asW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asZ" = (/obj/structure/closet/crate/silvercrate,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"ata" = (/obj/machinery/light_switch{pixel_x = -20},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"atb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"atc" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"atd" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/gateway) +"atf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) +"atg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ath" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Laundry Room"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ati" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"atj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"atk" = (/turf/open/floor/plating,/area/crew_quarters/dorms) +"atl" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/crew_quarters/dorms) +"atn" = (/turf/closed/wall,/area/crew_quarters/fitness/recreation) +"atp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) +"atq" = (/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) +"atv" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/brig) +"atw" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atx" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) +"aty" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"atz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"atA" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 2"; name = "Cell 2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"atC" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 3"; name = "Cell 3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) +"atE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atF" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"atG" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"atH" = (/obj/machinery/door/airlock/security/glass{name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"atI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"atJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) +"atK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/fore) +"atL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) +"atM" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"atN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) +"atO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/bridge) +"atP" = (/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/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/dark,/area/bridge) +"atQ" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/purple{dir = 1},/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/dark,/area/bridge) +"atR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atS" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atT" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atU" = (/obj/item/beacon,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"atW" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atX" = (/obj/machinery/computer/shuttle/labor{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atY" = (/turf/closed/wall,/area/bridge) +"atZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"aua" = (/obj/structure/closet/secure_closet/freezer/money,/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/clothing/head/bearpelt,/obj/item/skub,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aub" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aud" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aue" = (/obj/structure/safe,/obj/item/bikehorn/golden,/obj/item/ammo_box/a357,/obj/item/tank/internals/plasma/full,/obj/item/disk/nuclear/fake,/obj/item/stack/ore/diamond,/obj/item/gun/energy/disabler,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/open/floor/plasteel,/area/gateway) +"aug" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/internals,/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/turf/open/floor/plasteel,/area/gateway) +"auh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/gateway) +"aui" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/gateway) +"auj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/dorms) +"auk" = (/obj/machinery/door/airlock{name = "Laundry Room"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aul" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/structure/sign/warning/pods{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"aum" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) +"aur" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) +"aus" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aut" = (/obj/item/clothing/head/collectable/police,/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/department/security/brig) +"auu" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel,/area/maintenance/department/security/brig) +"aux" = (/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"auz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"auA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) +"auB" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"auC" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"auD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/turf/open/floor/plasteel/dark,/area/security/brig) +"auE" = (/obj/machinery/computer/secure_data,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 36; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 24; req_access_txt = "63"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = 6; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) +"auF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"auG" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/dark,/area/security/brig) +"auH" = (/turf/closed/wall,/area/crew_quarters/heads/captain) +"auI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads/captain) +"auJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"auK" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) +"auL" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) +"auM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/bridge) +"auN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auO" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"auQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auR" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/bridge) +"auS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"auT" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"auU" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/bridge) +"auV" = (/turf/open/floor/plating,/area/bridge) +"auW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"auX" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"auY" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auZ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"ava" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) +"avb" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"avc" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/gateway) +"avd" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm3Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"ave" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm3Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avf" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) +"avg" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avh" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avi" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Dormitories Fore"},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avk" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avl" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/cryopod{pixel_y = 30},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avm" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"avn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"avp" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) +"avq" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) +"avr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock"; dir = 8},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) +"avs" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/item/bedsheet/blue,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avu" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/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/security/brig) +"avv" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/obj/item/bedsheet/green,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avw" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avx" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/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/security/brig) +"avy" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/obj/item/bedsheet/orange,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avA" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avC" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel/dark,/area/security/brig) +"avD" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"avE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/security/brig) +"avF" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"avG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/captain) +"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/curtain,/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avI" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avK" = (/obj/structure/toilet/secret/low_loot{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avL" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fore) +"avM" = (/obj/machinery/door/airlock/command{name = "Balcony"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"avN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"avO" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Bridge MiniSat Access Foyer"; dir = 1},/obj/machinery/light/small,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"avP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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},/turf/open/floor/plasteel/dark,/area/bridge) +"avQ" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"avR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/bridge) +"avU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"avV" = (/obj/structure/table/glass,/obj/item/storage/box/ids{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/PDAs,/turf/open/floor/plasteel/dark,/area/bridge) +"avW" = (/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/dark,/area/bridge) +"avX" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/dark,/area/bridge) +"avY" = (/obj/structure/table/glass,/obj/item/aicard,/turf/open/floor/plasteel/dark,/area/bridge) +"avZ" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/item/laser_pointer/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"awa" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awb" = (/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"awd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) +"awe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"awf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awh" = (/obj/machinery/camera{c_tag = "Vault Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awk" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awm" = (/obj/machinery/light{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awn" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/dorms) +"awo" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) +"awp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) +"awq" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"awr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aws" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aww" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"awB" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"awC" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 1; name = "Fitness Room APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"awD" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"awE" = (/obj/item/storage/briefcase,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"awH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) +"awI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awJ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"awL" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"awM" = (/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awN" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"awO" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/item/radio,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awP" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/table/reinforced,/obj/item/folder/red{layer = 2.9},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awQ" = (/obj/structure/table/reinforced,/obj/item/pen,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awS" = (/obj/machinery/door/airlock{name = "Private Restroom"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"awT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Captain's Office Access"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"awU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awY" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/bridge) +"axa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axb" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"axd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) +"axe" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/rdconsole{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/bridge) +"axh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) +"axi" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) +"axj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/central) +"axk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) +"axl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/central) +"axm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) +"axn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/central) +"axo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"axp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axq" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"axv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"axw" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) +"axC" = (/turf/closed/wall,/area/maintenance/solars/port) +"axE" = (/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axF" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axG" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axH" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axI" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axJ" = (/obj/structure/sign/departments/security{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axL" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axN" = (/obj/structure/dresser,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axP" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"},/obj/item/clothing/suit/armor/riot/knight/blue,/obj/item/clothing/head/helmet/knight/blue,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axQ" = (/obj/machinery/suit_storage_unit/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"axS" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/item/kirbyplants/random,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axT" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 30},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axU" = (/obj/machinery/computer/card,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axV" = (/obj/machinery/computer/communications,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axW" = (/obj/structure/filingcabinet/employment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axX" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"axY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"ayb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"ayc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"ayd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aye" = (/obj/machinery/door/airlock/command{name = "External Access"; req_one_access_txt = "19; 65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"ayf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"ayg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/bridge) +"ayh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) +"ayi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm2Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"ayj" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm2Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayl" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"ayn" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayo" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayq" = (/obj/structure/table/wood,/obj/item/storage/backpack,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayr" = (/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"ayt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayw" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayx" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayy" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port) +"ayz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayA" = (/obj/machinery/power/solar_control{dir = 4; id = "portsolar"; name = "Port Solar Control"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayC" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Port Solar APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ayE" = (/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_x = -25; req_access_txt = "2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayF" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS2"; location = "BrigP"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayN" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigP"; location = "BrigS1"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayO" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayQ" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayR" = (/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayS" = (/obj/structure/bed,/obj/item/bedsheet/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayT" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"ayX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"ayY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"ayZ" = (/obj/machinery/door/window{dir = 8; name = "Captain's Desk"; req_access_txt = "20"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aza" = (/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azb" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/captain,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azc" = (/obj/item/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aze" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/bridge) +"azf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azg" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azh" = (/obj/machinery/light{light_color = "#e8eaff"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"azk" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai_upload"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Central"; dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"azo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 4; name = "Bridge APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azp" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Bridge External Access"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/bridge) +"azq" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"azr" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azs" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azu" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"azv" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azx" = (/obj/structure/table/wood,/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azy" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"azB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azE" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azF" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Holodeck"; dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"azH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/port) +"azI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/port) +"azJ" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/port) +"azK" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"azL" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"azN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azP" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azS" = (/obj/machinery/door/airlock/engineering{name = "Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azY" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"azZ" = (/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aAa" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aAb" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAd" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAe" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAf" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Port"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Tool"; location = "BrigS2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAn" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Fore Primary Hallway Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAo" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAp" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAq" = (/obj/structure/table/wood,/obj/item/storage/box/matches,/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAr" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAs" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/card/id/captains_spare,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aAu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAv" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAw" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAx" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAy" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/light{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aAA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aAB" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aAC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aAD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) +"aAE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAM" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAN" = (/turf/closed/wall,/area/hallway/primary/central) +"aAO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aAP" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/comfy{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aAQ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aAS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/port) +"aAW" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/port) +"aAX" = (/obj/structure/chair/stool,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) +"aAY" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) +"aBa" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"aBc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aBd" = (/turf/closed/wall,/area/security/detectives_office) +"aBe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "datboidetective"; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office) +"aBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/detectives_office) +"aBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aBh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aBi" = (/turf/closed/wall,/area/storage/primary) +"aBj" = (/turf/closed/wall/r_wall,/area/storage/primary) +"aBk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/vending/wardrobe/cap_wardrobe,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBl" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBm" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBn" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBp" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBq" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aBr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) +"aBs" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBt" = (/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBu" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBx" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; dir = 1; name = "Upload APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBy" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) +"aBz" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBA" = (/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/obj/machinery/computer/security/mining,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBB" = (/obj/machinery/computer/cargo/request,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBC" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBD" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Head of Personnel's Office"},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBE" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBF" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBG" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBH" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Central Hall APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBK" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/crowbar,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm1Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"aBM" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm1Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBN" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBO" = (/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBT" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBU" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBW" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBX" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/obj/item/storage/backpack,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aBZ" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aCa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) +"aCc" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCd" = (/obj/machinery/vending/cola/random,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCe" = (/obj/structure/filingcabinet/employment,/turf/open/floor/wood,/area/lawoffice) +"aCf" = (/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/lawoffice) +"aCg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCi" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 12},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Detective's office"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCk" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCm" = (/obj/item/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCn" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "datboidetective"; name = "Privacy Shutters"; pixel_x = 2; pixel_y = 26},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 27},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCo" = (/obj/structure/closet/secure_closet/detective,/obj/item/hand_labeler,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aCq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aCr" = (/obj/machinery/vending/assist,/obj/structure/sign/poster/official/pda_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aCs" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCt" = (/obj/structure/table,/obj/item/wrench,/obj/item/analyzer,/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCu" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCv" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/item/assembly/voice,/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCw" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool,/obj/machinery/airalarm{pixel_y = 22},/obj/item/flashlight,/obj/item/electronics/airlock,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCx" = (/obj/structure/sign/poster/official/obey{pixel_y = 32},/obj/machinery/disposal/deliveryChute{name = "Crate Disposal Chute"; pixel_y = 6},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Crate Disposal Chute"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCy" = (/obj/structure/displaycase/captain,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCz" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"aCE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aCF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aCG" = (/obj/structure/table,/obj/item/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload Port"; dir = 4; network = list("aiupload")},/obj/item/aiModule/reset,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCK" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCM" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/machinery/camera/motion{c_tag = "AI Upload Starboard"; dir = 8; network = list("aiupload")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aCO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aCP" = (/obj/structure/table/wood,/obj/item/pen{layer = 4},/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 6},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCR" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCS" = (/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCT" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCY" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aDa" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aDb" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDc" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDe" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"aDf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDh" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Dormitories Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/dorms) +"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white/side,/area/crew_quarters/dorms) +"aDk" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 8},/area/crew_quarters/dorms) +"aDl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aDm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aDo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDq" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDr" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aDw" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "Tool Storage APC"; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aDx" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) +"aDy" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary) +"aDz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/primary) +"aDA" = (/turf/open/floor/plasteel,/area/storage/primary) +"aDB" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aDC" = (/obj/structure/table/wood,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDD" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDE" = (/obj/structure/chair/comfy/brown,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDF" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDG" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDI" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aDK" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aDL" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aDM" = (/obj/machinery/holopad,/obj/machinery/camera/motion{c_tag = "AI Upload Center"; dir = 1; network = list("aiupload")},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aDN" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aDP" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"aDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDY" = (/obj/machinery/power/apc{dir = 4; name = "Head of Personnel APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDZ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEb" = (/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aEd" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) +"aEe" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEf" = (/obj/structure/urinal{pixel_y = 32},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEg" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEh" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEi" = (/obj/effect/landmark/blobstart,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) +"aEj" = (/turf/closed/wall,/area/maintenance/department/cargo) +"aEk" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aEl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aEm" = (/obj/structure/table/wood,/obj/item/flashlight/lamp{pixel_x = 3; pixel_y = 6},/turf/open/floor/carpet,/area/security/detectives_office) +"aEn" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/security/detectives_office) +"aEo" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter,/obj/item/clothing/glasses/hud/security/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) +"aEp" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) +"aEq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = -1; pixel_y = 9},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 7; pixel_y = 2},/turf/open/floor/carpet,/area/security/detectives_office) +"aEr" = (/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aEs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aEt" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/light{dir = 8},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aEu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/primary) +"aEv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/primary) +"aEw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aEx" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEy" = (/obj/structure/table/wood,/obj/item/hand_tele,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aEB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aEC" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Bridge Port Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aED" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEF" = (/obj/machinery/computer/upload/ai{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aEG" = (/obj/machinery/flasher{id = "AI"; pixel_y = -6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aEH" = (/obj/machinery/computer/upload/borg{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aEI" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/aiModule/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/protectStation,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEJ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Bridge Starboard Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aEK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"aEL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEM" = (/obj/item/kirbyplants{icon_state = "plant-24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEN" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEO" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aEP" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aEQ" = (/obj/structure/chair/office/dark,/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aER" = (/obj/structure/table/wood,/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aES" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Vault"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aET" = (/turf/closed/wall,/area/storage/emergency/starboard) +"aEU" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/item/storage/toolbox,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/storage/emergency/starboard) +"aEW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEZ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFb" = (/obj/machinery/light_switch{pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFc" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFe" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFg" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFi" = (/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFj" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat Entrance"; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"aFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/minor/bowler_or_that,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aFm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aFn" = (/turf/open/floor/carpet,/area/security/detectives_office) +"aFo" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/effect/landmark/start/detective,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aFp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/security/detectives_office) +"aFr" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aFs" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/electronics/apc,/obj/item/t_scanner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aFt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aFv" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aFw" = (/obj/structure/table/wood,/obj/item/camera,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aFx" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aFy" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aFz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aFA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/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) +"aFB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) +"aFC" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aFD" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/taperecorder,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aFE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aFF" = (/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Starboard Emergency Storage APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"aFG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFH" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFK" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFM" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFN" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFO" = (/obj/effect/decal/cleanable/vomit/old,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFP" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/food/condiment/rice,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aFV" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aFW" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aFX" = (/obj/machinery/computer/med_data{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aFY" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aGa" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGe" = (/obj/structure/rack,/obj/item/wirecutters,/obj/item/flashlight,/obj/item/gps,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGf" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGg" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/gloves/color/fyellow,/obj/item/assembly/timer,/obj/item/radio,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGh" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGi" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGj" = (/obj/structure/disposalpipe/junction/flip,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGk" = (/obj/machinery/vending/boozeomat/pubby_captain,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGm" = (/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/computer/arcade{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGn" = (/obj/item/kirbyplants/photosynthetic{layer = 3.1},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) +"aGo" = (/obj/structure/lattice,/obj/structure/sign/logo{pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGp" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign2"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGq" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign3"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGr" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign4"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGs" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign5"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGt" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGu" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGw" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGx" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGy" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGz" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aGB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aGC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGF" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGH" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGI" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGJ" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGK" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie{desc = "It has a distinctly eldritch taste to it."; name = "grandma's cookie"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGL" = (/obj/structure/chair/stool,/obj/item/clothing/suit/apron/chef,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGM" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGN" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGO" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGP" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGV" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGX" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) +"aGY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) +"aGZ" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) +"aHb" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aHc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"aHe" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"aHf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHg" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"aHh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHj" = (/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/hallway/primary/central) +"aHk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHl" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHn" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aHo" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHp" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHq" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHr" = (/obj/machinery/shower{dir = 4},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHs" = (/obj/structure/closet/crate,/obj/item/cultivator,/obj/item/shovel/spade,/obj/item/storage/bag/plants/portaseeder,/obj/item/seeds/wheat/rice,/obj/item/seeds/replicapod,/obj/item/seeds/carrot,/obj/item/seeds/tomato,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHt" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHu" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHz" = (/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aHC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIe" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aIi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIj" = (/obj/machinery/vending/cigarette,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/departments/restroom{pixel_x = 32},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) +"aIk" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aIl" = (/obj/structure/toilet/secret/low_loot{dir = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aIp" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aIq" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/lawyer,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aIr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/port) +"aIC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aIH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aIL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIN" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIO" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIT" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIX" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/observer_start,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIY" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJd" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Robo"; location = "HoP"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJh" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJi" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoP"; location = "Dorms"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/hallway/primary/central) +"aJn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aJo" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/table,/obj/structure/bedsheetbin/towel,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aJp" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aJr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"aJs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJw" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/chaplain,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJD" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge Fore"},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aJE" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aJF" = (/obj/structure/chair{dir = 8},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit/departure_lounge"; dir = 1; name = "Departure Lounge APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aJG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -40},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJM" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bathroom"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJT" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJW" = (/obj/machinery/camera{c_tag = "Central Primary Hallway EVA"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJX" = (/obj/structure/sign/directions/security{dir = 8; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = -40},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKe" = (/obj/machinery/camera{c_tag = "Dormitories Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKg" = (/obj/item/kirbyplants{icon_state = "plant-04"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/primary/central) +"aKh" = (/obj/machinery/light_switch{pixel_x = -25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKi" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKj" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Dormitory Cyborg Recharging Station"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/oil,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKo" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aKp" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKq" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKr" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/curator,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKz" = (/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKA" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKG" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKH" = (/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKJ" = (/turf/closed/wall,/area/storage/art) +"aKK" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/art) +"aKL" = (/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/storage/art) +"aKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) +"aKN" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) +"aKO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lunchroom"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/cafeteria/lunchroom) +"aKP" = (/turf/closed/wall,/area/crew_quarters/cafeteria/lunchroom) +"aKQ" = (/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) +"aKR" = (/obj/machinery/door/airlock{id_tag = "Potty1"; name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) +"aKT" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/bar) +"aKU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aKV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/central) +"aKY" = (/turf/closed/wall/r_wall,/area/storage/eva) +"aKZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/eva) +"aLa" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "EVA Storage Shutters"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/eva) +"aLb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/teleporter) +"aLd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command/glass{name = "Teleporter"; req_access_txt = "17"},/turf/open/floor/plasteel,/area/teleporter) +"aLe" = (/turf/closed/wall,/area/security/checkpoint/supply) +"aLf" = (/turf/closed/wall,/area/quartermaster/office) +"aLg" = (/turf/closed/wall,/area/quartermaster/storage) +"aLh" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLi" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLj" = (/obj/effect/spawner/lootdrop/grille_or_trash,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLk" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLl" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLm" = (/turf/closed/wall,/area/maintenance/disposal) +"aLn" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) +"aLo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) +"aLu" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aLv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aLw" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) +"aLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLz" = (/obj/machinery/photocopier,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLA" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/friedegg,/obj/item/kitchen/fork,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLB" = (/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLD" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/vending/cola,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLG" = (/obj/structure/urinal{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "Potty1"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 36; pixel_y = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLI" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aLL" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/button/door{id = "evashutter"; name = "EVA Shutters Control"; pixel_x = -24; req_access_txt = "18"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aLR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLU" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aLV" = (/turf/closed/wall,/area/storage/eva) +"aLW" = (/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/airalarm{pixel_y = 22},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/teleporter) +"aLX" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) +"aLY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/teleporter) +"aLZ" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) +"aMa" = (/obj/structure/closet/crate,/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutters Control"; pixel_x = 25; pixel_y = -5; req_access_txt = "17"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aMb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMd" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aMe" = (/obj/machinery/computer/security/mining,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Cargo Security Post"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aMf" = (/obj/machinery/computer/secure_data,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/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/checkpoint/supply) +"aMg" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/sorting) +"aMh" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMi" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/sorting) +"aMj" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMk" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMm" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMn" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/warehouse) +"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMr" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMt" = (/obj/structure/closet/cardboard,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Cargo Warehouse"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMu" = (/obj/item/cigbutt/cigarbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMv" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Cargo Warehouse APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMw" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMx" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMy" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMz" = (/obj/structure/grille/broken,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/crowbar,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMA" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aME" = (/obj/machinery/button/massdriver{id = "trash"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMF" = (/obj/machinery/conveyor_switch/oneway{id = "garbagestacked"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMG" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMH" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aML" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aMR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/storage/art) +"aMV" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/toolbox/artistic{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/artistic{pixel_x = -3},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMW" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMX" = (/obj/structure/table,/obj/item/airlock_painter,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Art Storage APC"; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMY" = (/obj/structure/chair{dir = 1},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aMZ" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Lunchroom"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNa" = (/obj/structure/cable,/obj/machinery/power/apc{name = "Cafeteria APC"; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNb" = (/obj/machinery/vending/sustenance{contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); desc = "A vending machine which vends food."; product_ads = "Sufficiently healthy."},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNc" = (/obj/structure/toilet/secret/low_loot{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNd" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNe" = (/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/item/soap/nanotrasen,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNf" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aNg" = (/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNh" = (/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aNi" = (/obj/structure/grille/broken,/obj/item/crowbar,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNm" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNp" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aNq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aNr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aNt" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aNu" = (/obj/structure/closet/crate,/obj/item/melee/flyswatter,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aNv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/teleporter) +"aNw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/teleporter) +"aNx" = (/turf/open/floor/plasteel,/area/teleporter) +"aNy" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aNz" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) +"aNA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aNC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) +"aND" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNE" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNH" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNJ" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNK" = (/obj/structure/table,/obj/item/destTagger,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNL" = (/obj/item/stack/wrapping_paper{pixel_x = 3; pixel_y = 4},/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNM" = (/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/hand_labeler,/obj/item/hand_labeler,/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNN" = (/obj/structure/closet/crate/freezer,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNO" = (/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNP" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aNT" = (/obj/machinery/mass_driver{dir = 1; id = "trash"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -28},/turf/open/floor/plating,/area/maintenance/disposal) +"aNU" = (/obj/machinery/mineral/stacking_machine{input_dir = 8; output_dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aNV" = (/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) +"aNX" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aNY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aOf" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOg" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOh" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOk" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aOm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/wrench,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aOs" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aOt" = (/obj/structure/table,/obj/item/instrument/glockenspiel{pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOu" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/machinery/light,/obj/machinery/camera{c_tag = "Art Storage"; dir = 1},/obj/item/hand_labeler,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOv" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/obj/item/stack/sheet/glass{amount = 20; layer = 3.2},/obj/item/stack/rods{amount = 20; layer = 3.3},/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/nineteenXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOw" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOA" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOB" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/machinery/camera{c_tag = "EVA Storage"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aOC" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/storage/eva) +"aOD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aOE" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Teleporter"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aOF" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter) +"aOG" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aOJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) +"aOK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aON" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) +"aOO" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOP" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOR" = (/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOS" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aOU" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aOW" = (/obj/machinery/door/window/eastleft{dir = 8; icon_state = "right"; name = "Mail"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/sorting) +"aOX" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"aOY" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aOZ" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) +"aPf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aPg" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aPi" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aPn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aPo" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) +"aPq" = (/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Departure Lounge Starboard"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aPt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/mining/aux_base) +"aPv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPx" = (/obj/machinery/light/small{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aPz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aPA" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/gloves,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPD" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPE" = (/turf/closed/wall,/area/crew_quarters/bar) +"aPF" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPG" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aPI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aPJ" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/storage/eva) +"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aPL" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aPM" = (/obj/structure/table,/obj/item/beacon,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPN" = (/obj/machinery/computer/teleporter{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPO" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPP" = (/obj/machinery/teleport/hub,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPQ" = (/obj/structure/closet/crate,/obj/item/crowbar,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPT" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Security Post - Cargo APC"; pixel_x = -24},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aPU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aPV" = (/obj/structure/filingcabinet/security,/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,/area/security/checkpoint/supply) +"aPW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) +"aPX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aPY" = (/turf/open/floor/plasteel,/area/quartermaster/office) +"aPZ" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQa" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Cargo Mailroom"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQc" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQd" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQe" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQf" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQg" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQj" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aQk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) +"aQn" = (/obj/machinery/conveyor_switch/oneway{id = "garbage"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aQo" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"aQp" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aQr" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aQs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQt" = (/obj/machinery/status_display/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aQu" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQw" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aQx" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/pipe_dispenser,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aQz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aQD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aQE" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQF" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aQI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aQJ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aQK" = (/obj/structure/grille,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQL" = (/obj/structure/grille/broken,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQM" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aQR" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQS" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) +"aQT" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) +"aQU" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Bar Backroom"},/turf/open/floor/wood,/area/crew_quarters/bar) +"aQV" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/stack/cable_coil,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/wood,/area/crew_quarters/bar) +"aQW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQX" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQY" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aQZ" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "EVA Storage APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/storage/eva) +"aRa" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/eva) +"aRb" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/eva) +"aRc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aRe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aRf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) +"aRg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aRh" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRi" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRj" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/fifteen_k{dir = 4; name = "Delivery Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRm" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/quartermaster/sorting) +"aRn" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRo" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRp" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRq" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aRt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/disposal) +"aRu" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRv" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aRB" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aRD" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRE" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRF" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRG" = (/obj/structure/rack,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/assault_pod/mining,/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/auxbase{dir = 8; pixel_x = 30},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aRH" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/primary/central) +"aRI" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/coffee,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aRJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRK" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRL" = (/turf/closed/wall,/area/hydroponics) +"aRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRN" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"aRO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aRP" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aRQ" = (/obj/item/gun/ballistic/revolver/doublebarrel{pixel_y = 11},/obj/structure/table/wood,/obj/item/coin/silver,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar) +"aRR" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/wood/normal{dir = 8},/obj/item/clothing/under/rank/civilian/janitor/maid,/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/bar) +"aRS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"aRT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"aRU" = (/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRY" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRZ" = (/obj/item/trash/tray,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSa" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/grown/bananapeel,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSb" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/seeds/banana,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSc" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSf" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining/glass{name = "Mailroom"; req_one_access_txt = "48;50"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/quartermaster/sorting) +"aSi" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSl" = (/obj/machinery/power/apc{dir = 4; name = "Cargo Maintenance APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aSm" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/disposal) +"aSn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"aSo" = (/obj/machinery/power/apc{dir = 4; name = "Disposal APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"aSu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/wirecutters,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aSv" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 8},/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSw" = (/obj/item/statuebust,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSx" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSA" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics) +"aSB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aSC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aSE" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/hydroponics) +"aSF" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aSG" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/hydroponics) +"aSH" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aSI" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSJ" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSK" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSL" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/machinery/door/window/southleft{dir = 8; name = "Kitchen Delivery"; req_access_txt = "28"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aSM" = (/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) +"aSN" = (/obj/item/assembly/mousetrap,/obj/item/storage/box/mousetraps,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) +"aSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/crew_quarters/bar) +"aSP" = (/turf/open/floor/wood,/area/crew_quarters/bar) +"aSQ" = (/obj/effect/landmark/xeno_spawn,/obj/item/storage/box/beanbag,/turf/open/floor/wood,/area/crew_quarters/bar) +"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aST" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aSY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aTb" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) +"aTf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTi" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTm" = (/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTn" = (/obj/machinery/light{dir = 1},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/storage) +"aTp" = (/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTr" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTs" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTy" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aTz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aTA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) +"aTB" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) +"aTC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"aTD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/starboard) +"aTE" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"aTH" = (/obj/docking_port/stationary{dir = 8; dwidth = 4; height = 15; id = "emergency_home"; name = "PubbyStation emergency evac bay"; width = 20},/turf/open/space/basic,/area/space) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aTK" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTL" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTM" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aTP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aTQ" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) +"aTR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aTT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aTU" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) +"aTW" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/turf/open/floor/plasteel,/area/hydroponics) +"aTX" = (/obj/structure/kitchenspike,/obj/item/assembly/mousetrap,/obj/item/reagent_containers/food/snacks/deadmouse,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aTY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aTZ" = (/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUa" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/item/crowbar,/obj/item/wrench,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUb" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) +"aUc" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) +"aUd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"aUe" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/crew_quarters/bar) +"aUf" = (/turf/closed/wall,/area/crew_quarters/theatre) +"aUg" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUi" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Cargo"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUl" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUm" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUo" = (/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUq" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUy" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) +"aUz" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage) +"aUA" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/space/basic,/area/space) +"aUB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aUD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) +"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/central) +"aUK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUQ" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) +"aUR" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Hydroponics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) +"aUS" = (/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/hydroponics) +"aUT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) +"aUU" = (/obj/machinery/power/apc{name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hydroponics) +"aUW" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/hydroponics) +"aUX" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUZ" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVa" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVb" = (/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVc" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aVd" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVg" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVh" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/patron{pixel_x = -5; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/cognac{pixel_x = -10; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/grappa{pixel_x = 10; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVi" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/bottle/hcider{layer = 3.1; pixel_x = -6; pixel_y = 8},/obj/item/reagent_containers/food/drinks/bottle/wine{layer = 3.1; pixel_x = 3; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/rum{layer = 3.2; pixel_x = -15; pixel_y = 4},/obj/item/reagent_containers/food/drinks/bottle/lizardwine{layer = 3.1; pixel_x = 13; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/tequila{layer = 3.2; pixel_x = 13; pixel_y = 7},/obj/item/reagent_containers/food/drinks/shaker{pixel_x = 1; pixel_y = 13},/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_x = -10; pixel_y = 15},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_x = 28; req_access_txt = "25"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVk" = (/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 22},/obj/item/instrument/accordion{pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVl" = (/obj/structure/dresser,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVm" = (/obj/machinery/vending/autodrobe,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVn" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aVo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVs" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{dir = 4; id = "cargodeliver"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"aVt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVv" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/conveyor_switch{id = "cargodeliver"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #1"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVy" = (/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVz" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Supply Dock"; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVG" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVH" = (/obj/structure/closet/l3closet/scientist,/obj/item/book/manual/wiki/chemistry,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVI" = (/obj/structure/closet,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/twentythreeXtwentythree,/obj/item/storage/crayons,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVS" = (/turf/closed/wall,/area/janitor) +"aVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor) +"aVU" = (/obj/machinery/door/window/eastright{dir = 2; name = "Janitor Delivery"; req_access_txt = "26"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Janitor"},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aVV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aVW" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVX" = (/obj/machinery/power/apc{name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVZ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) +"aWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWd" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWe" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/camera{c_tag = "Bar Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWm" = (/obj/structure/disposalpipe/segment,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWn" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWo" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWq" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWs" = (/obj/machinery/computer/cargo/request{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWu" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWv" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/turf/open/floor/plasteel/dark,/area/quartermaster/office) +"aWw" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aWx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #2"},/obj/machinery/camera{c_tag = "Cargo Bay"; dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWz" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWA" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) +"aWE" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Departure Lounge Hallway"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWK" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWM" = (/obj/machinery/washing_machine,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aWN" = (/obj/machinery/camera{c_tag = "Custodial Quarters"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/light/small{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aWO" = (/obj/structure/bed,/obj/effect/landmark/start/janitor,/obj/item/bedsheet/purple,/obj/machinery/light_switch{pixel_x = 24},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aWP" = (/obj/machinery/hydroponics/constructable,/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) +"aWQ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aWR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics) +"aWS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sorting/mail{sortType = 21},/turf/open/floor/plasteel,/area/hydroponics) +"aWT" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 30},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aWU" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWW" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXd" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Bar APC"; pixel_x = 27},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXh" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXm" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 18},/obj/machinery/requests_console{department = "Theatre"; name = "theatre RC"; pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/clown,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXo" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/cardboard_cutout,/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) +"aXq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aXt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) +"aXu" = (/obj/machinery/door/firedoor,/obj/machinery/autolathe,/turf/open/floor/plasteel/dark,/area/quartermaster/office) +"aXv" = (/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/camera{c_tag = "Cargo Foyer"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aXw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #3"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aXx" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aXy" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXz" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXA" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXB" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/security/checkpoint/customs) +"aXC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aXF" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aXG" = (/obj/structure/table,/obj/effect/holodeck_effect/cards{pixel_y = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aXH" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) +"aXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "papersplease"; name = "security shutters"},/turf/open/floor/plating,/area/security/checkpoint/customs) +"aXJ" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 2; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/folder/red,/obj/item/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aXK" = (/turf/closed/wall,/area/security/checkpoint/customs) +"aXL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/janitor) +"aXN" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aXO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aXP" = (/obj/structure/table,/obj/item/clothing/under/costume/maid,/obj/item/key/janitor,/obj/item/grenade/clusterbuster/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aXQ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aXR" = (/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aXS" = (/turf/open/floor/plasteel,/area/hydroponics) +"aXT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) +"aXU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aXV" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXW" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXX" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXY" = (/obj/machinery/hydroponics/constructable,/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXZ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aYa" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aYb" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aYd" = (/obj/machinery/door/airlock{name = "Service Access"; req_one_access_txt = "25; 26; 28; 35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYe" = (/obj/structure/table/reinforced,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYf" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYh" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/instrument/guitar,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYi" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYj" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYk" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYl" = (/obj/structure/table/wood,/obj/item/soap,/obj/structure/table/wood,/obj/item/bikehorn,/obj/item/toy/cattoy,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYm" = (/obj/structure/closet/crate/wooden/toy,/obj/item/lipstick/random,/obj/item/clothing/gloves/color/rainbow,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYn" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -32},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYo" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYp" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYq" = (/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYr" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYu" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #4"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYC" = (/obj/structure/grille/broken,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYD" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/matches,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYE" = (/obj/structure/table,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/obj/item/stack/rods{amount = 25},/obj/item/shard{icon_state = "small"},/obj/item/light/bulb,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYG" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"aYH" = (/obj/machinery/computer/security{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYI" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYJ" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYK" = (/obj/structure/closet/secure_closet/security,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/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/checkpoint/customs) +"aYL" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Quarters"; req_access_txt = "26"},/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},/turf/open/floor/plasteel/dark,/area/janitor) +"aYN" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aYO" = (/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aYP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aYQ" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/hydroponics) +"aYR" = (/obj/machinery/vending/dinnerware,/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYS" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYT" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYU" = (/obj/machinery/processor,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aYY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYZ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/landmark/start/assistant,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZe" = (/obj/structure/disposalpipe/segment{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZg" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZj" = (/obj/machinery/status_display/supply{pixel_x = -32},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aZn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZq" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZs" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aZw" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aZx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) +"aZy" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZF" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZK" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/customs) +"aZL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) +"aZP" = (/turf/open/floor/plasteel,/area/janitor) +"aZQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/power/apc{dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/janitor) +"aZR" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) +"aZT" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aZU" = (/obj/machinery/vending/hydronutrients,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) +"aZV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aZX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZZ" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) +"baa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bab" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bac" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bad" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/item/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"bae" = (/obj/structure/chair/stool/bar,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bag" = (/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bah" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"ban" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/obj/structure/chair/wood/normal,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bao" = (/obj/machinery/computer/slot_machine,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bap" = (/obj/machinery/computer/slot_machine,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"baq" = (/obj/machinery/computer/arcade,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bas" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/item/paper_bin{layer = 2.9},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/office) +"bat" = (/obj/structure/table,/obj/item/clipboard,/obj/item/folder/yellow,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) +"bau" = (/obj/machinery/photocopier,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bav" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) +"baw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) +"bax" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"baz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"baA" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baF" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/quartermaster/storage) +"baG" = (/turf/closed/wall,/area/maintenance/solars/starboard) +"baH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"baI" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"baJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baK" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baL" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baQ" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/button/door{id = "papersplease"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 6; req_access_txt = "1"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -26; pixel_y = -4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baR" = (/obj/item/pen,/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baT" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baU" = (/obj/machinery/power/apc{name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/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,/area/security/checkpoint/customs) +"baV" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"baW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = 25; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"baX" = (/obj/vehicle/ridden/janicart,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = -25; req_access_txt = "26"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/janitor) +"baY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/janitor) +"baZ" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/janitor) +"bba" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics) +"bbb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/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},/turf/open/floor/plasteel/dark,/area/hydroponics) +"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bbd" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bbg" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbh" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbi" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbl" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"bbm" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbo" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbr" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbs" = (/obj/item/cane,/obj/item/clothing/head/that,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbt" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/clothing/under/dress/sundress,/obj/item/clothing/under/suit/waiter,/obj/item/clothing/under/dress/blacktango,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbu" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) +"bbv" = (/obj/structure/chair/stool,/obj/item/trash/can,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbw" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbx" = (/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bby" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbA" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Office Maintenance"; req_access_txt = "50"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) +"bbB" = (/obj/structure/table,/obj/item/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbC" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/hand_labeler,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbD" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbE" = (/turf/closed/wall,/area/quartermaster/qm) +"bbF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/qm) +"bbG" = (/obj/machinery/door/airlock/mining/glass{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bbH" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) +"bbI" = (/turf/closed/wall,/area/quartermaster/miningdock) +"bbJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bbK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bbL" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bbM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bbP" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard) +"bbQ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bbR" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbS" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbV" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/crowbar,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"bbW" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "jangarage"; name = "Custodial Closet Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/janitor) +"bbX" = (/obj/structure/janitorialcart,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) +"bbY" = (/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 8},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/janitor) +"bbZ" = (/obj/machinery/seed_extractor,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) +"bca" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bcb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{base_state = "left"; dir = 1; icon_state = "left"; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bcc" = (/obj/machinery/biogenerator,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bcd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/food/snacks/cube/monkey,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bce" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bcg" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bch" = (/obj/structure/table,/obj/item/storage/box/ingredients/wildcard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bck" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcm" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bco" = (/obj/structure/table/wood/fancy,/obj/item/gun/ballistic/revolver/russian{pixel_y = 16},/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bcq" = (/obj/item/clothing/glasses/monocle,/obj/item/instrument/recorder,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bcr" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/wood/normal{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcs" = (/obj/item/clothing/shoes/sandal,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bct" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bcx" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"bcy" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bcz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcA" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/belt/fannypack/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcD" = (/obj/structure/closet/wardrobe/miner,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcG" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcN" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/bridge) +"bcO" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/space,/area/space/nearstation) +"bcQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/starboard) +"bcR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/starboard) +"bcS" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"bcT" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard) +"bcU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space,/area/solar/starboard) +"bcV" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"bcX" = (/turf/open/floor/plating,/area/hallway/secondary/entry) +"bcY" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bcZ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bda" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"bdd" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bde" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = -28; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) +"bdh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"bdi" = (/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light_switch{dir = 9; pixel_x = 22},/turf/open/floor/plasteel,/area/janitor) +"bdj" = (/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bdk" = (/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bdl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bdm" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) +"bdn" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdo" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdp" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdq" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/grown/tomato,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdr" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bdz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bdB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster APC"; pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdG" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdH" = (/obj/machinery/computer/bounty{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock) +"bdJ" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdK" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdM" = (/obj/machinery/requests_console{department = "Mining"; pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bdR" = (/obj/structure/chair/stool,/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bdS" = (/obj/machinery/power/solar_control{dir = 8; id = "starboardsolar"; name = "Starboard Solar Control"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bdU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/starboard) +"bdV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bdW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bea" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"beb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bec" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) +"bed" = (/obj/structure/table,/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) +"bee" = (/obj/structure/table,/obj/item/storage/box/lights/mixed{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/mousetraps,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/clothing/head/crown,/turf/open/floor/plasteel,/area/janitor) +"bef" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"beg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bei" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"bej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bek" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"ben" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"beo" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"bep" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"beq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ber" = (/obj/effect/landmark/start/cook,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bes" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"beu" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bex" = (/obj/machinery/camera{c_tag = "Bar Port"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bey" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bez" = (/obj/structure/table/wood,/obj/item/instrument/trombone,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beA" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beC" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/kitchen/fork,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beE" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beF" = (/obj/structure/disposalpipe/segment{dir = 5},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bar Starboard"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beI" = (/turf/closed/wall,/area/science/robotics/mechbay) +"beJ" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -23},/turf/open/floor/plasteel,/area/quartermaster/qm) +"beK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) +"beL" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"beM" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/shaft_miner,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beO" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beP" = (/obj/machinery/computer/shuttle/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"beS" = (/obj/item/caution,/turf/open/floor/plating,/area/maintenance/department/cargo) +"beU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) +"beY" = (/obj/machinery/camera{c_tag = "Arrivals Central"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"beZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"bfb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfc" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bff" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 8; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) +"bfj" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bfk" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bfl" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bfm" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"bfn" = (/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bfo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfp" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{id = "kitchenwindowshutters"; name = "Kitchen Window Shutters Control"; pixel_x = -26; pixel_y = 5; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bfr" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) +"bfs" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bft" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bfu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfv" = (/obj/structure/table,/obj/item/crowbar/large,/obj/machinery/airalarm{pixel_y = 22},/obj/item/clothing/head/welding,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/machinery/power/apc{dir = 1; name = "Mech Bay APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfx" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfy" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfz" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfA" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfB" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/computer/card/minor/qm{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfC" = (/obj/structure/table,/obj/item/clipboard,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Quartermaster's Office"; dir = 1},/obj/machinery/light_switch{pixel_y = -24},/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster,/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/coin/silver,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/computer/security/qm{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfE" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/camera{c_tag = "Cargo Mining Dock"; dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfH" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfI" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) +"bfJ" = (/turf/open/floor/plating,/area/quartermaster/miningdock) +"bfK" = (/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) +"bfM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfN" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/paperplane,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfP" = (/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfZ" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge) +"bga" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/lounge) +"bgb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lounge"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"bgc" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/lounge) +"bgd" = (/turf/closed/wall,/area/crew_quarters/lounge) +"bge" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/science{dir = 4; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgh" = (/obj/structure/chair{name = "Throne of Custodia"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgi" = (/obj/machinery/vending/cola,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hydroponics) +"bgk" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"bgl" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"bgn" = (/obj/structure/chair{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgo" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/storage/fancy/rollingpapers,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgq" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgr" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/donut,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bgu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bgv" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgw" = (/obj/structure/chair,/obj/item/clothing/head/bowler,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgx" = (/obj/machinery/firealarm{pixel_y = 27},/obj/structure/chair,/obj/item/clothing/mask/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgy" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgz" = (/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 8; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgB" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgC" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgD" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgE" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgI" = (/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgK" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Mining Dock APC"; pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgM" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgS" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 13; id = "arrivals_stationary"; name = "pubby arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/pubby; width = 6},/turf/open/space/basic,/area/space) +"bgU" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgV" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "loungeshutters"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bha" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhc" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 38},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar1"; location = "Robo"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhn" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bho" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bhp" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhr" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bht" = (/obj/structure/closet/secure_closet/miner,/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhu" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhv" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhE" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhF" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bhG" = (/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bhH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bhI" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/camera{c_tag = "Lounge"; dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bhJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = -1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS1"; location = "Lounge"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lounge"; location = "Kitchen"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L7"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhP" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhQ" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 25; req_access_txt = "29"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhR" = (/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = -25; req_access_txt = "29"},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhU" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bhV" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bib" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bic" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bid" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bie" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair{dir = 4},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"big" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bih" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/medbay/alt{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bij" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bik" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bim" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bin" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Hydroponics"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bio" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"biq" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bir" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Robotics"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bis" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bit" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biw" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bix" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/shard{icon_state = "small"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biJ" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/lounge) +"biK" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biN" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biO" = (/obj/structure/table/glass,/obj/item/healthanalyzer{layer = 3.1},/obj/item/pen{layer = 3.2},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biP" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/departments/examroom{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biR" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Genetics"; dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biT" = (/obj/structure/closet/firecloset,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/storage/emergency/port) +"biX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/emergency/port) +"biY" = (/turf/closed/wall,/area/medical/morgue) +"biZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bja" = (/turf/closed/wall,/area/security/checkpoint/medical) +"bjb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint/medical) +"bjc" = (/turf/closed/wall,/area/medical/medbay/central) +"bjd" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) +"bje" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/central) +"bjf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bjg" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bji" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjk" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bar"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjl" = (/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjn" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bjr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bju" = (/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bjv" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjw" = (/turf/closed/wall/r_wall,/area/science/explab) +"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjB" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bjD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjI" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjJ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjK" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjL" = (/turf/closed/wall,/area/storage/emergency/port) +"bjN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/emergency/port) +"bjP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/port) +"bjQ" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bjR" = (/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"bjS" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjW" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjX" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bjY" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bjZ" = (/obj/machinery/computer/secure_data,/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bka" = (/obj/machinery/computer/security,/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/checkpoint/medical) +"bkb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) +"bkc" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkd" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bke" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkh" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bkn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci3"; location = "Sci2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bkp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkq" = (/obj/structure/table,/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/clothing/head/welding,/obj/item/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkr" = (/obj/machinery/modular_computer/console/preset/civilian,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bks" = (/obj/structure/table,/obj/item/wrench,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkt" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) +"bku" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/robotics/lab) +"bkv" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"bkw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bkx" = (/turf/closed/wall/r_wall,/area/science/server) +"bky" = (/turf/open/floor/engine,/area/science/explab) +"bkz" = (/obj/machinery/camera{c_tag = "Experimentation Lab Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) +"bkA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bkB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/engine,/area/science/explab) +"bkD" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/explab) +"bkF" = (/turf/closed/wall/r_wall,/area/science/xenobiology) +"bkH" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{glass = 1; name = "Slime Euthanization Chamber"; opacity = 0; req_access_txt = "55"},/turf/open/floor/plating,/area/science/xenobiology) +"bkP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/starboard) +"bkQ" = (/obj/machinery/vending/snack,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkR" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkW" = (/obj/item/hemostat,/obj/item/retractor,/obj/item/cautery,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bkX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bkY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bkZ" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Genetics Cloning Foyer"; network = list("ss13","medbay")},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bla" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"blb" = (/turf/open/floor/plating,/area/storage/emergency/port) +"blc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"bld" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"ble" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blf" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blg" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blh" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"blj" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"blk" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bll" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bln" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blq" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 3; pixel_y = 2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blr" = (/obj/structure/table,/obj/item/folder/white,/obj/item/healthanalyzer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bls" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blt" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blv" = (/obj/structure/table,/obj/item/paicard,/obj/item/clothing/glasses/science,/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/hallway/primary/aft) +"blw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blx" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -26; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blC" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/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,/area/hallway/primary/aft) +"blE" = (/obj/structure/filingcabinet/chestdrawer,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"blF" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/roboticist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blG" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blH" = (/obj/machinery/camera{c_tag = "Robotics Lab"; network = list("ss13","rd")},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blI" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30; receive_ore_updates = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel,/area/science/robotics/lab) +"blJ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 14},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Robotics Lab APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"blM" = (/obj/machinery/rnd/server,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"blN" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) +"blP" = (/obj/effect/landmark/event_spawn,/obj/item/beacon,/obj/machinery/light{dir = 8},/turf/open/floor/engine,/area/science/explab) +"blQ" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) +"blR" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) +"blS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/book/manual/wiki/experimentor,/turf/open/floor/engine,/area/science/explab) +"blT" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/obj/structure/sign/warning/securearea{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"blU" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/integrated_electronics/debugger,/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"blV" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/stack/sheet/metal/ten,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"blW" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/wirer,/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"blX" = (/turf/open/floor/engine,/area/science/xenobiology) +"blZ" = (/obj/machinery/computer/camera_advanced/xenobio,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bmc" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bmd" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bme" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bmf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bmg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bmh" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmk" = (/obj/structure/table,/obj/item/crowbar,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bml" = (/obj/structure/girder,/turf/open/floor/plating,/area/storage/emergency/port) +"bmn" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/storage/emergency/port) +"bmp" = (/obj/structure/bodycontainer/morgue,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bmq" = (/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bmr" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/camera{c_tag = "Morgue"; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bms" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/medical"; dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay Security Post"; dir = 4; network = list("ss13","medbay")},/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmt" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmv" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/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,/area/security/checkpoint/medical) +"bmw" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmy" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Kitchen"; location = "Med"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmC" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmH" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci2"; location = "Sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmL" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bmM" = (/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmN" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmO" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmR" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bmS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"bmT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) +"bmU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"bmV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine,/area/science/explab) +"bmW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine,/area/science/explab) +"bmX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/science/explab) +"bmY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/engine,/area/science/explab) +"bmZ" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/magnetic_controller{autolink = 1; pixel_x = -28; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bna" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/box/red,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bnb" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bnc" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bnd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) +"bnh" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) +"bni" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) +"bnj" = (/turf/closed/wall,/area/science/xenobiology) +"bnl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bnn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"bno" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnq" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnt" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bnv" = (/turf/closed/wall,/area/medical/genetics) +"bnw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bnx" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bnz" = (/obj/structure/table,/obj/item/folder/white,/obj/item/clothing/gloves/color/latex,/obj/item/storage/fancy/candle_box,/obj/machinery/light_switch{pixel_x = 22},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bnA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/medical) +"bnB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Medbay Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/medical) +"bnC" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnD" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnO" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bnP" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnQ" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnS" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/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/assembly/flash/handheld,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bnT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/science/server) +"bnU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Server Room"; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/science/server) +"bnV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/science/explab) +"bnW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) +"bnX" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/science/explab) +"bnY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) +"bnZ" = (/obj/item/kirbyplants{icon_state = "plant-10"},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"boa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) +"boc" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bod" = (/turf/closed/wall,/area/science/explab) +"boe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bof" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/trinary/filter,/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/science/explab) +"bog" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/engine,/area/science/explab) +"boh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) +"bok" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bom" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"bon" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"boo" = (/obj/machinery/camera{c_tag = "Arrivals Port Aft"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"bop" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"boq" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bor" = (/obj/structure/flora/grass/jungle,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/medical/genetics) +"bos" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) +"bot" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/medical/genetics) +"bou" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) +"bov" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bow" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"box" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boy" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boz" = (/obj/machinery/vending/clothing,/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"boC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"boD" = (/obj/item/ectoplasm,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"boE" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boH" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boI" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boJ" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen,/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) +"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boL" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boM" = (/obj/structure/bed/roller,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boO" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boP" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boQ" = (/obj/structure/closet/firecloset/full,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boR" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boS" = (/obj/structure/chair,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boU" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/machinery/camera{c_tag = "Research Division Lobby"; dir = 1},/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-10"},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boX" = (/obj/machinery/computer/rdconsole/robotics{dir = 4},/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 4; req_access_txt = "29"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"boZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bpa" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/science/server) +"bpb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/dark,/area/science/server) +"bpc" = (/obj/machinery/computer/rdservercontrol{dir = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/camera{c_tag = "Server Room"; network = list("ss13","rd"); pixel_x = 22},/turf/open/floor/plasteel/dark,/area/science/server) +"bpd" = (/obj/machinery/button/door{id = "testlab"; name = "Window Blast Doors"; pixel_x = -6},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Door"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpe" = (/obj/machinery/computer/rdconsole/experiment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"bpg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/paper_bin,/obj/item/pen,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bph" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Experimentation Lab Central"; network = list("ss13","rd")},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpi" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpn" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bpo" = (/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bpp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bpq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bpr" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/science/xenobiology) +"bpt" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bpu" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bpv" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) +"bpw" = (/obj/structure/flora/grass/jungle,/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) +"bpx" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/junglebush,/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) +"bpy" = (/obj/machinery/clonepod,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bpz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) +"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue"; req_access_txt = "6"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpK" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bpM" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/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) +"bpO" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpR" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpS" = (/obj/structure/table/reinforced,/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) +"bpT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry) +"bpW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bpX" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) +"bpY" = (/turf/closed/wall,/area/medical/chemistry) +"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plating,/area/science/lab) +"bqc" = (/obj/structure/table/reinforced,/obj/item/pen{layer = 3.1},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Research and Development Desk"; req_one_access_txt = "7;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/item/folder/white,/turf/open/floor/plating,/area/science/lab) +"bqd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqg" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/storage/belt/utility,/obj/item/reagent_containers/glass/beaker/large,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/radio/headset/headset_sci{pixel_x = -3},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bqh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqk" = (/obj/machinery/aug_manipulator,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bql" = (/obj/machinery/power/apc{dir = 8; name = "Server Room APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/science/server) +"bqm" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/server) +"bqn" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/server) +"bqo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqq" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqs" = (/turf/open/floor/plasteel/white,/area/science/explab) +"bqt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqx" = (/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bqC" = (/obj/machinery/monkey_recycler,/obj/structure/window/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/science/xenobiology) +"bqE" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bqF" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 1},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bqG" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bqH" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqI" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqJ" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bqK" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqL" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqO" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bqS" = (/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 4; name = "Arrivals APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bqT" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/obj/item/reagent_containers/food/snacks/grown/banana,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Fore"; dir = 4; network = list("ss13","medbay")},/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) +"bqU" = (/obj/structure/sink/puddle,/obj/structure/flora/ausbushes/reedbush{pixel_y = 6},/turf/open/floor/grass,/area/medical/genetics) +"bqV" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/light/small{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bqW" = (/obj/machinery/computer/cloning{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bqX" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bqY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 23},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bqZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bra" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{id_tag = "GeneticsDoor"; name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/unres{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"brb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"brc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"brd" = (/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brh" = (/obj/machinery/computer/med_data{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bri" = (/obj/machinery/computer/crew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brj" = (/obj/machinery/chem_master,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brk" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brl" = (/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brm" = (/obj/machinery/chem_master,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brq" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/item/stack/cable_coil/orange,/obj/item/storage/toolbox/mechanical,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brr" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brs" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brt" = (/obj/structure/chair/office/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/lab) +"bru" = (/obj/machinery/holopad,/obj/machinery/light_switch{pixel_x = 25},/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"brw" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"brx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bry" = (/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus{pixel_x = 5; pixel_y = -5},/obj/item/crowbar,/obj/structure/table,/turf/open/floor/plasteel,/area/science/robotics/lab) +"brz" = (/obj/item/circular_saw,/obj/item/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/item/razor{pixel_y = 5},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brA" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/bot_assembly/cleanbot,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brB" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brC" = (/obj/item/clothing/gloves/color/latex,/obj/item/surgical_drapes,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/science/server) +"brE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/server) +"brF" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) +"brG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"brH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"brJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"brK" = (/obj/structure/table/reinforced,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/white,/area/science/explab) +"brL" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/white,/area/science/explab) +"brM" = (/obj/machinery/libraryscanner,/turf/open/floor/plasteel/white,/area/science/explab) +"brO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"brR" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/science/xenobiology) +"brT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/l3closet,/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/xenobiology) +"brU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/xenobio{pixel_x = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) +"brW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"brX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bsa" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsb" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) +"bsc" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsd" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) +"bse" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsf" = (/obj/machinery/camera{c_tag = "Xenobiology Starboard"; network = list("ss13","rd")},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bsl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bsm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Arrivals Starboard Aft"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bsn" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/engine) +"bso" = (/obj/structure/flora/junglebush,/obj/structure/flora/grass/jungle/b,/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/medical/genetics) +"bsp" = (/obj/item/toy/beach_ball,/turf/open/floor/grass,/area/medical/genetics) +"bsq" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/medical/genetics) +"bsr" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bss" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bst" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) +"bsx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsz" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsA" = (/turf/closed/wall,/area/medical/sleeper) +"bsB" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsC" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsD" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsF" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsG" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsJ" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/structure/sign/poster/official/safety_eye_protection{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsK" = (/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsL" = (/obj/item/storage/box/beakers,/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsN" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) +"bsS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) +"bsT" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/white,/area/science/lab) +"bsU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bsV" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bsW" = (/obj/item/kirbyplants,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bsX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bsY" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bsZ" = (/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,/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bta" = (/obj/item/retractor,/obj/item/hemostat,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btb" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/machinery/camera{c_tag = "Robotics - Aft"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btc" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btd" = (/obj/item/mmi,/obj/item/mmi,/obj/item/mmi,/obj/structure/table,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/server) +"btf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access_txt = "30"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) +"btg" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/multitool,/obj/item/multitool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bth" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bti" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) +"btk" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"btl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bts" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"btt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btA" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/landmark/xeno_spawn,/obj/structure/sign/departments/xenobio{pixel_x = -32},/turf/open/floor/plasteel,/area/science/xenobiology) +"btB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"btE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"btK" = (/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) +"btL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"btM" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"btN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"btO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"btP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"btQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"btR" = (/obj/structure/flora/ausbushes/brflowers,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"btS" = (/turf/open/floor/grass,/area/medical/genetics) +"btT" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sunnybush,/obj/item/reagent_containers/food/snacks/grown/banana,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"btU" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btX" = (/obj/structure/table,/obj/item/book/manual/wiki/medical_cloning{pixel_y = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btY" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 24; pixel_y = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bub" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"buc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bud" = (/obj/item/wrench/medical,/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bue" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/medical/sleeper) +"buf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bug" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"buh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bui" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"buj" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/camera{c_tag = "Chemistry"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"buk" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bul" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bun" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bup" = (/obj/machinery/rnd/destructive_analyzer,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"buq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) +"bur" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/protolathe/department/science,/turf/open/floor/plasteel,/area/science/lab) +"bus" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Research and Development Lab"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"but" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buu" = (/obj/structure/chair{dir = 8},/obj/item/clothing/mask/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/science/robotics/lab) +"buw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"buy" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"buz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) +"buA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"buC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/explab) +"buD" = (/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buG" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buH" = (/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/white,/area/science/explab) +"buI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buK" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"buL" = (/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/dark,/area/science/xenobiology) +"buM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bva" = (/turf/closed/wall,/area/maintenance/department/engine) +"bvb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bvc" = (/turf/closed/wall/r_wall,/area/medical/genetics) +"bvd" = (/obj/machinery/door/airlock/research/glass{name = "Genetics"; req_access_txt = "9"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bve" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/genetics) +"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Port Hallway"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvh" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvk" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvm" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvo" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvq" = (/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvw" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"bvx" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) +"bvy" = (/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/circuit_imprinter/department/science,/turf/open/floor/plasteel,/area/science/lab) +"bvz" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/lab) +"bvA" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_y = 34},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvE" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/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,/area/hallway/primary/aft) +"bvG" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bvH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) +"bvI" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Science Access Airlock"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/explab) +"bvJ" = (/obj/structure/closet/firecloset/full,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/explab) +"bvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/science/explab) +"bvL" = (/obj/machinery/power/apc/highcap/ten_k{dir = 1; name = "Research Division APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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/dark,/area/science/explab) +"bvU" = (/obj/machinery/recharger,/obj/structure/table,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvV" = (/turf/open/floor/plasteel,/area/science/explab) +"bvW" = (/obj/machinery/magnetic_module,/obj/effect/landmark/blobstart,/obj/structure/target_stake,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"bvZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/dark,/area/science/explab) +"bwa" = (/turf/open/floor/plasteel/dark,/area/science/explab) +"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) +"bwc" = (/obj/machinery/chem_master,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/explab) +"bwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwm" = (/turf/closed/wall,/area/maintenance/department/science) +"bwn" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"bws" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/obj/item/electronics/airalarm,/turf/open/floor/plating,/area/maintenance/department/engine) +"bwt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bwu" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bwv" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bww" = (/obj/machinery/computer/scan_consolenew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwx" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwA" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/bodybags,/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/medical/genetics) +"bwB" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/table/glass,/obj/item/storage/box/gloves{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/masks,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/bloodbankgen,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwV" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwW" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bxa" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/research_and_development,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/turf/open/floor/plasteel/dark,/area/science/lab) +"bxc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/lab) +"bxd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 13},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bxe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/lab) +"bxf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"bxg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bxh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"bxi" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci9"; location = "Sci8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci8"; location = "Sci7"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxn" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxo" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxp" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bxq" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxu" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxz" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxC" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxD" = (/obj/structure/reagent_dispensers/watertank,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) +"bxH" = (/obj/effect/turf_decal/box/corners,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxJ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/chem_heater,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxK" = (/obj/structure/chair/stool,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxM" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxN" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxO" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/science) +"bxQ" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxR" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxS" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxT" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxY" = (/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bya" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"byb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plating,/area/maintenance/department/engine) +"byc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"byd" = (/obj/structure/flora/junglebush/c,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bye" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/grass,/area/medical/genetics) +"byf" = (/obj/structure/table,/obj/item/storage/box/disks,/obj/item/flashlight/pen,/obj/item/flashlight/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byg" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"byk" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/storage/box/monkeycubes,/obj/machinery/light{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byl" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bym" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"byn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"byo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/sleeper) +"byp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bys" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"byt" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"byu" = (/turf/closed/wall,/area/crew_quarters/heads/cmo) +"byv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"byw" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/headset/headset_med,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"byx" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"byz" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/door/window/eastright{dir = 1; name = "Chemistry Testing"; req_access_txt = "5; 33"},/obj/effect/turf_decal/stripes/line{dir = 9},/mob/living/simple_animal/mouse/white{name = "Labrette"},/turf/open/floor/engine,/area/medical/chemistry) +"byA" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/medical/chemistry) +"byC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/science/lab) +"byE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/lab) +"byF" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byH" = (/obj/structure/table,/obj/item/multitool,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci5"; location = "Sci4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byO" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"byP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) +"byQ" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"byR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/shower{dir = 8; name = "emergency shower"; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/science/explab) +"byT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants/photosynthetic{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byU" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byV" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byW" = (/obj/structure/chair/comfy{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byX" = (/obj/machinery/camera{c_tag = "Research Division Secure Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzb" = (/obj/structure/closet/radiation,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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/dark,/area/science/explab) +"bzc" = (/obj/structure/reagent_dispensers/fueltank,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"bzd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) +"bze" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) +"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bzh" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Experimentation Lab"; dir = 1; network = list("ss13","rd")},/obj/item/storage/toolbox/electrical{pixel_x = -4; pixel_y = 5},/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzi" = (/obj/structure/table,/obj/item/electropack,/obj/item/taperecorder,/obj/item/screwdriver,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzj" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzk" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzl" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzm" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) +"bzn" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzp" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzq" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzr" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzs" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) +"bzy" = (/obj/structure/grille,/turf/open/space,/area/space/nearstation) +"bzz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzA" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzB" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; dir = 8; name = "Monastery Monitor"; network = list("monastery"); pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzC" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bzD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bzE" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Aft"; dir = 4; network = list("ss13","medbay")},/obj/structure/flora/ausbushes/grassybush,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) +"bzF" = (/obj/machinery/door/window/eastleft{name = "Monkey Pen"; req_one_access_txt = "9"},/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) +"bzG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzH" = (/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzM" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzN" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzO" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzP" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bzQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzR" = (/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzT" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzU" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/medical/sleeper) +"bzV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzY" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/crew_quarters/heads/cmo) +"bzZ" = (/obj/machinery/suit_storage_unit/cmo,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAa" = (/obj/machinery/computer/crew,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAb" = (/obj/machinery/computer/med_data,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAc" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/keycard_auth{pixel_x = 26},/obj/machinery/button/door{dir = 4; id = "cmoshutters"; name = "Privacy shutters"; pixel_x = 38; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAf" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAg" = (/obj/structure/table/glass,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/stack/cable_coil/random,/obj/item/book/manual/wiki/chemistry,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/stack/sheet/mineral/plasma{amount = 2; layer = 2.9},/obj/item/screwdriver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAi" = (/obj/machinery/smoke_machine,/turf/open/floor/engine,/area/medical/chemistry) +"bAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bAo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Director's Office"; req_access_txt = "30"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bAq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/science) +"bAu" = (/turf/closed/wall,/area/security/checkpoint/science) +"bAv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAy" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bAA" = (/turf/closed/wall,/area/science/storage) +"bAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/science/storage) +"bAC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bAD" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"bAE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bAF" = (/turf/closed/wall,/area/science/mixing) +"bAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"bAH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) +"bAI" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bAJ" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAK" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAL" = (/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bAN" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) +"bAO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small,/turf/open/floor/grass,/area/medical/genetics) +"bAP" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/medical/genetics) +"bAQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/item/storage/pill_bottle/mutadone,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAV" = (/obj/machinery/shower{dir = 8},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics Requests Console"; pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAW" = (/turf/closed/wall,/area/medical/virology) +"bAX" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_exterior"; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/white,/area/medical/virology) +"bAY" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/virology) +"bBb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBd" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/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) +"bBf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bBg" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBh" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBi" = (/obj/effect/landmark/start/chief_medical_officer,/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBk" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/computer/security/telescreen/cmo{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBl" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBo" = (/turf/closed/wall,/area/hallway/primary/aft) +"bBp" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) +"bBq" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/power/apc{dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBu" = (/obj/item/kirbyplants/dead,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{desc = "A switch that controls privacy shutters."; id = "rdprivacy"; name = "Privacy Shutters"; pixel_x = 40; pixel_y = -5; req_access_txt = "30"},/obj/machinery/keycard_auth{pixel_x = 28; pixel_y = 6},/obj/machinery/button/door{id = "rndshutters"; name = "Research Lockdown"; pixel_x = 28; pixel_y = -5; req_access_txt = "47"},/obj/machinery/button/door{id = "research_shutters_2"; name = "RnD Shutters"; pixel_x = 40; pixel_y = 5; req_access_txt = "47"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBw" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBx" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBy" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_x = 28; 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},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBB" = (/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bBC" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) +"bBD" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) +"bBE" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bBF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bBG" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) +"bBH" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bBI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"bBJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bBK" = (/obj/structure/closet/bombcloset,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBL" = (/obj/structure/closet/bombcloset,/obj/machinery/airalarm/unlocked{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"bBO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bBP" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Toxins Lab APC"; pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Toxins Lab Starboard"; network = list("ss13","rd")},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/portable_atmospherics/pump,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBU" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) +"bBV" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bBW" = (/turf/open/space,/area/space) +"bBX" = (/turf/closed/wall/r_wall,/area/maintenance/department/engine) +"bBY" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/mesh,/obj/item/stack/medical/suture,/turf/open/floor/plating,/area/maintenance/department/engine) +"bBZ" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCa" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCb" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCc" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCe" = (/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 27},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCh" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; network = list("ss13","medbay")},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCi" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bCj" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bCl" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bCm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bCn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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) +"bCo" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bCp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bCq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Chief Medical Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"bCr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCs" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen{layer = 3.1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCt" = (/obj/structure/table/glass,/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCu" = (/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/medical/gauze,/obj/item/clothing/neck/stethoscope,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCw" = (/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 11},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bCz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCB" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bCD" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCE" = (/obj/machinery/computer/robotics{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCG" = (/obj/structure/displaycase/labcage,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bCK" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Science Security Post"; dir = 4; network = list("ss13","rd")},/obj/item/book/manual/wiki/security_space_law,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCL" = (/obj/effect/landmark/start/depsec/science,/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCN" = (/obj/structure/chair/comfy,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bCO" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) +"bCP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) +"bCQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bCR" = (/turf/open/floor/engine,/area/science/storage) +"bCS" = (/obj/structure/sign/warning/fire,/turf/closed/wall,/area/science/storage) +"bCT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bCU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bCV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) +"bCW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bCX" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bCZ" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDa" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDb" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDd" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/wrench,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDe" = (/obj/machinery/light{light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) +"bDf" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bDg" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDi" = (/turf/open/floor/plating,/area/maintenance/department/engine) +"bDj" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bDk" = (/obj/item/chair,/obj/item/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bDm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bDn" = (/obj/machinery/vending/wardrobe/gene_wardrobe,/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/white,/area/medical/genetics) +"bDo" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bDp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque,/turf/open/floor/plasteel/white,/area/medical/virology) +"bDq" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bDr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/sleeper) +"bDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/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) +"bDt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDv" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDx" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDy" = (/turf/closed/wall,/area/medical/exam_room) +"bDz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDA" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bDB" = (/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/machinery/computer/rdconsole{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDD" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDE" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/research_director,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDF" = (/obj/machinery/computer/card/minor/rd{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDG" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDK" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/light{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bDL" = (/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/engine,/area/science/storage) +"bDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) +"bDN" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) +"bDO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/storage) +"bDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) +"bDQ" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/turf/open/floor/plasteel/dark,/area/science/storage) +"bDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research/glass{name = "Toxins Lab"; req_access_txt = "8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"bEa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bEb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEf" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEj" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEk" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/obj/machinery/meter,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) +"bEl" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEm" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bEq" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEr" = (/turf/closed/wall/r_wall,/area/medical/virology) +"bEs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEu" = (/obj/structure/closet/l3closet,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEv" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/rnd/production/techfab/department/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEw" = (/obj/structure/table,/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEx" = (/obj/structure/table,/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southleft{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEy" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southright{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEz" = (/obj/structure/table,/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bED" = (/obj/structure/closet/secure_closet/CMO,/obj/item/valentine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEE" = (/obj/machinery/modular_computer/console/preset/civilian{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEF" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table,/obj/machinery/light,/obj/item/wrench/medical,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEG" = (/obj/item/folder/blue,/obj/item/stamp/cmo,/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEH" = (/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/light_switch{pixel_y = -22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEI" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/closet,/obj/item/clothing/under/rank/medical/doctor/nurse,/obj/item/clothing/head/nursehat,/obj/effect/decal/cleanable/cobweb,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/blobstart,/obj/item/melee/baton/cattleprod{preload_cell_type = /obj/item/stock_parts/cell/high},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "CMOCell"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEL" = (/obj/machinery/door/airlock/command{id_tag = "CMOCell"; name = "Personal Examination Room"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bEQ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bER" = (/obj/machinery/computer/mecha{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bES" = (/obj/item/aicard,/obj/item/circuitboard/aicore,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = -30; receive_ore_updates = 1},/obj/machinery/light,/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bET" = (/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 5},/obj/item/folder/white,/obj/item/pen,/obj/item/stamp/rd,/obj/machinery/status_display/ai{pixel_y = -32},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bEU" = (/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/structure/table/glass,/obj/machinery/computer/security/telescreen/rd{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bEV" = (/obj/machinery/newscaster{pixel_y = -30},/obj/machinery/modular_computer/console/preset/research{dir = 8},/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/dark,/area/crew_quarters/heads/hor) +"bEW" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bEY" = (/obj/machinery/power/apc{dir = 4; name = "Science Security APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/closet/secure_closet/security/science,/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,/area/security/checkpoint/science) +"bEZ" = (/obj/structure/chair/comfy{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bFa" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/science/storage) +"bFb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/science/storage) +"bFd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/science/storage) +"bFf" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bFh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFi" = (/obj/item/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/science/mixing) +"bFj" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFk" = (/obj/structure/table/reinforced,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 10},/obj/item/analyzer,/turf/open/floor/plasteel/white,/area/science/mixing) +"bFl" = (/turf/open/floor/plasteel/white,/area/science/mixing) +"bFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFn" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bFp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/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/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bFr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFu" = (/obj/machinery/button/massdriver{dir = 4; id = "toxinsdriver"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"bFy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) +"bFz" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/science) +"bFB" = (/obj/item/newspaper,/turf/open/floor/plating,/area/maintenance/department/science) +"bFC" = (/obj/item/wallframe/camera,/obj/machinery/button/door{id = "PottySci"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bFD" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/science) +"bFE" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_asteroid"; name = "monastery"; width = 5},/turf/open/space,/area/space/nearstation) +"bFF" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bFG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bFH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"bFI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFL" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFM" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_interior"; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bFN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/medical/virology) +"bFO" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) +"bFP" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFR" = (/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFU" = (/turf/closed/wall,/area/medical/surgery) +"bFV" = (/obj/structure/table/glass,/obj/item/flashlight/pen,/obj/item/clothing/neck/stethoscope,/obj/item/lipstick/black,/obj/machinery/power/apc{dir = 8; name = "Personal Examination Room APC"; pixel_x = -25},/obj/structure/cable,/obj/item/reagent_containers/pill/morphine,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFW" = (/obj/effect/decal/remains/human,/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFX" = (/obj/structure/bed,/obj/item/bedsheet/cmo,/obj/effect/decal/cleanable/blood/drip,/obj/item/restraints/handcuffs,/obj/item/clothing/mask/muzzle,/obj/machinery/light_switch{pixel_y = -22},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/departments/examroom{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"bGa" = (/obj/structure/sign/departments/science,/turf/closed/wall,/area/hallway/primary/aft) +"bGb" = (/obj/machinery/door/airlock/security/glass{name = "Research Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/science) +"bGc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) +"bGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bGe" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bGf" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine,/area/science/storage) +"bGg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) +"bGh" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bGi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/engine,/area/science/storage) +"bGj" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bGk" = (/obj/machinery/light,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark,/area/science/explab) +"bGl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/science/explab) +"bGm" = (/obj/structure/closet/emcloset,/obj/machinery/light_switch{dir = 8; pixel_x = -24; pixel_y = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGn" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGo" = (/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGp" = (/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = 5},/obj/item/transfer_valve{pixel_x = 5},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Toxins Lab Port"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGq" = (/obj/item/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/assembly/timer,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/white,/area/science/mixing) +"bGs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGt" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGu" = (/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGv" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGw" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bGx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) +"bGy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bGA" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/science/mixing) +"bGB" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bGD" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) +"bGE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/dock) +"bGF" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/chapel/dock) +"bGG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plating/airless,/area/chapel/dock) +"bGH" = (/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bGI" = (/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"bGK" = (/obj/structure/closet/boxinggloves,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bGM" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/department/engine) +"bGN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bGO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGP" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGQ" = (/obj/structure/window/reinforced,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGR" = (/obj/machinery/door/window/eastleft{dir = 2; name = "Monkey Pen"; req_one_access_txt = "39"},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGS" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/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) +"bGT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bGU" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Virology APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = 22},/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) +"bGV" = (/obj/machinery/shower{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGW" = (/turf/open/floor/plasteel/white,/area/medical/virology) +"bGX" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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) +"bHa" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bHb" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHc" = (/obj/machinery/computer/med_data,/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHd" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/surgery) +"bHf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHh" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHj" = (/obj/item/storage/belt/utility,/obj/item/clothing/glasses/science,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHk" = (/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/mask/gas,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bHu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/storage) +"bHv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/engine,/area/science/storage) +"bHw" = (/turf/closed/wall/r_wall,/area/science/storage) +"bHy" = (/turf/closed/wall/r_wall,/area/science/mixing) +"bHz" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/door/incinerator_vent_toxmix{pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bHA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/ignition{id = "toxigniter"; pixel_x = -6; pixel_y = -24},/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = 6; pixel_y = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bHC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Incinerator Output Pump"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bHD" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"bHE" = (/obj/structure/window/reinforced,/obj/machinery/doppler_array/research/science,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"bHI" = (/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) +"bHJ" = (/turf/open/floor/plating,/area/chapel/dock) +"bHK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/chapel/dock) +"bHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/chapel/dock) +"bHM" = (/turf/closed/wall/r_wall,/area/chapel/dock) +"bHN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bHP" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHQ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHR" = (/obj/effect/decal/cleanable/vomit/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHS" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHT" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/engine) +"bHU" = (/obj/machinery/vending/medical,/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) +"bHV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{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) +"bHY" = (/obj/machinery/camera{c_tag = "Virology"; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology) +"bIb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bIc" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bId" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIe" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/light,/obj/machinery/camera{c_tag = "Medbay Equipment Room"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIf" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIg" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/storage/box/syringes,/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/spray/cleaner,/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/white,/area/medical/medbay/central) +"bIh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/surgery) +"bIk" = (/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIl" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIm" = (/obj/machinery/camera{c_tag = "Medbay Recovery Room"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery) +"bIo" = (/obj/structure/closet/crate/freezer/blood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/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_switch{pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sink{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Surgery"; network = list("ss13","surgery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIs" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIt" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng2"; location = "Eng"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci6"; location = "Eng3"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIy" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci7"; location = "Sci6"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bID" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng"; location = "Sci5"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIE" = (/obj/machinery/vending/assist,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bIF" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) +"bIG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) +"bIH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/power/apc{name = "Toxins Storage APC"; pixel_y = -25},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/storage) +"bII" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bIJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) +"bIK" = (/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"bIL" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/turf/open/floor/engine,/area/science/mixing) +"bIM" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/science/mixing) +"bIN" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 4; layer = 4; name = "Test Chamber Telescreen"; network = list("toxins"); pixel_x = -32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"bIP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"bIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bIR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"bIT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"bIU" = (/obj/effect/spawner/structure/window/reinforced,/turf/closed/wall,/area/chapel/dock) +"bIV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/dock) +"bIW" = (/obj/machinery/computer/shuttle/monastery_shuttle,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bIX" = (/obj/machinery/atmospherics/components/unary/tank/air,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bIY" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space) +"bIZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/engine) +"bJa" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJb" = (/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJc" = (/obj/structure/chair/comfy/black,/obj/item/trash/pistachios,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJd" = (/obj/structure/chair/comfy/black,/obj/item/stack/spacecash/c100,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJe" = (/obj/structure/chair/comfy/black,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJf" = (/obj/structure/chair/comfy/black,/obj/item/cigbutt,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJg" = (/obj/item/trash/popcorn,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJh" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJi" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJj" = (/obj/structure/rack,/obj/item/cartridge/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJk" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/infections,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bJm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJo" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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) +"bJp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJq" = (/obj/machinery/door/airlock/medical/glass{name = "Recovery Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Surgery"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJw" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJy" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJz" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/camera{c_tag = "Research Division Entrance"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/space_heater,/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/poster/random{pixel_x = 32},/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJN" = (/turf/closed/wall/r_wall,/area/engine/atmos) +"bJO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Toxins Storage"; req_access_txt = "24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/storage) +"bJP" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) +"bJQ" = (/obj/machinery/atmospherics/components/binary/pump/on,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_x = -24},/turf/open/floor/engine,/area/science/mixing) +"bJR" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 8},/turf/open/floor/engine,/area/science/mixing) +"bJS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/science/mixing) +"bJT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) +"bJV" = (/obj/machinery/mass_driver{id = "toxinsdriver"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 8; name = "Mass Driver Door"; req_access_txt = "7"},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plating,/area/science/mixing) +"bJZ" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bKa" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKc" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKd" = (/obj/machinery/power/apc{dir = 4; name = "Monastery Docking Bay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bKf" = (/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bKh" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced{dir = 1},/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) +"bKi" = (/obj/structure/window/reinforced{dir = 1},/mob/living/simple_animal/chicken{name = "Bloodthirsty Peckins"},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKj" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKl" = (/obj/item/stack/medical/gauze,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bKm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bKn" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/virology) +"bKo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bKp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bKq" = (/obj/effect/spawner/structure/window,/obj/structure/sign/warning/deathsposal,/turf/open/floor/plating,/area/medical/virology) +"bKr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKt" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKu" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bKv" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/structure/mirror{pixel_x = -28},/obj/structure/curtain{layer = 4.5},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKw" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKx" = (/obj/machinery/button/door{id = "patientB"; name = "Privacy Shutters"; pixel_y = 25},/obj/machinery/camera{c_tag = "Patient Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKy" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bKB" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKD" = (/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKF" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKG" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26},/obj/structure/cable,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bKI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/aft) +"bKO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bKP" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bKQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) +"bKR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) +"bKS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) +"bKT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bKU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) +"bKY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"bLb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "mix_in"; name = "distro out"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLd" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLe" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLf" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/turf/open/floor/engine,/area/science/mixing) +"bLh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/science/mixing) +"bLn" = (/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLp" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLq" = (/obj/machinery/door/airlock/grunge{name = "Monastery Transit"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLr" = (/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,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLt" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bLu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) +"bLv" = (/turf/open/floor/engine,/area/maintenance/department/engine) +"bLx" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/engine,/area/maintenance/department/engine) +"bLy" = (/obj/structure/mineral_door/wood{name = "The Roosterdome"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bLz" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLB" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLC" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/plasma{amount = 2},/obj/item/storage/box/monkeycubes{layer = 3.1},/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical/virology) +"bLE" = (/obj/structure/table/glass,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/item/paper_bin{layer = 2.9},/obj/item/pen/red,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bLF" = (/obj/structure/table,/obj/item/clipboard,/obj/item/pen{layer = 3.1},/obj/item/clothing/neck/stethoscope{layer = 3.2},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLG" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLI" = (/obj/machinery/door/poddoor/shutters/preopen{id = "patientB"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) +"bLJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/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) +"bLK" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bLL" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bLM" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLO" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLQ" = (/obj/structure/table,/obj/item/surgical_drapes,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLR" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLS" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLT" = (/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) +"bLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) +"bLW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bLX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bLY" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest{pixel_x = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bLZ" = (/obj/machinery/meter/atmos/atmos_waste_loop,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMb" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMc" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Distro"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMe" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bMf" = (/turf/open/floor/plasteel,/area/engine/atmos) +"bMg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMh" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMi" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/engine/atmos) +"bMj" = (/obj/machinery/air_sensor{id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bMk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bMl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMm" = (/obj/machinery/igniter{id = "toxigniter"; luminosity = 2},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/science/mixing) +"bMq" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) +"bMr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"bMs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{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" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/dock) +"bMw" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bMx" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bMy" = (/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/dock) +"bMA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/maintenance/department/engine) +"bMB" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/engine,/area/maintenance/department/engine) +"bMC" = (/obj/item/stack/spacecash/c10,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bMD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bME" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bMF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bMG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bMH" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/syringes,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMJ" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{pixel_x = 32},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMK" = (/obj/item/soap/nanotrasen,/obj/item/clothing/neck/stethoscope,/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/gun/syringe/dart,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMM" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMN" = (/obj/structure/table,/obj/item/hemostat,/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMO" = (/obj/structure/table,/obj/item/surgicaldrill,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMP" = (/obj/structure/table,/obj/item/scalpel{pixel_y = 12},/obj/item/circular_saw,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMQ" = (/obj/structure/table,/obj/item/cautery{pixel_x = 4},/obj/item/razor{pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMR" = (/obj/structure/table,/obj/item/retractor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMU" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Atmospherics"; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) +"bMX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"bMY" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "External to Filter"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bNe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bNf" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) +"bNg" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bNh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bNl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bNm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bNn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"bNo" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bNp" = (/turf/open/floor/engine/vacuum,/area/science/mixing) +"bNq" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/turf/open/floor/plating,/area/maintenance/department/science) +"bNr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bNs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bNt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Monastery Dock"; dir = 1; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bNu" = (/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" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light/small,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bNw" = (/turf/closed/wall,/area/chapel/dock) +"bNx" = (/obj/structure/transit_tube/station/reverse{dir = 1},/turf/open/floor/plating,/area/chapel/dock) +"bNy" = (/obj/structure/transit_tube/horizontal,/obj/machinery/camera{c_tag = "Monastery Transit"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating,/area/chapel/dock) +"bNz" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/chapel/dock) +"bNA" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/dock) +"bNB" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bNE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"bNF" = (/obj/item/stack/medical/suture,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bNG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) +"bNH" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/maintenance/department/engine) +"bNI" = (/obj/structure/window/reinforced,/mob/living/simple_animal/chicken{name = "Killer Cluck"},/turf/open/floor/engine,/area/maintenance/department/engine) +"bNJ" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced,/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) +"bNK" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNL" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNM" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNN" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNO" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNP" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNR" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNS" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNT" = (/obj/structure/closet/firecloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bNU" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNV" = (/obj/item/wrench/medical,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNW" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bNX" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bNZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) +"bOf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bOg" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bOi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bOk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bOl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bOm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bOp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bOq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) +"bOr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bOs" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) +"bOt" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) +"bOu" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/mixing) +"bOv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bOw" = (/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bOx" = (/obj/structure/cable{icon_state = "1-2"},/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/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bOy" = (/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{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bOz" = (/obj/structure/chair/comfy/black{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bOA" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bOB" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"bOC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/virology) +"bOD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) +"bOE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/virology) +"bOF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) +"bON" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) +"bOO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) +"bOR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plating,/area/engine/atmos) +"bOS" = (/obj/effect/turf_decal/vg_decals/atmos/mix,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bOT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall,/area/engine/atmos) +"bOU" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOV" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/turf/open/floor/plasteel,/area/engine/atmos) +"bOX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"bPa" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bPe" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bPg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "n2o_out"; name = "n2o out"},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bPh" = (/turf/open/floor/engine/n2o,/area/engine/atmos) +"bPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) +"bPn" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/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/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bPo" = (/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/dock) +"bPp" = (/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPq" = (/obj/item/trash/chips,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPr" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPs" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"bPt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) +"bPv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) +"bPz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPB" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bPC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPD" = (/obj/structure/table,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPE" = (/turf/closed/wall,/area/storage/tech) +"bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Tech Storage Maintenance"; req_access_txt = "23"},/turf/open/floor/plating,/area/storage/tech) +"bPG" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPJ" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPK" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/wrench,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPL" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPM" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPN" = (/obj/machinery/conveyor_switch{id = "atmosdeliver"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bPO" = (/obj/structure/disposalpipe/sorting/mail{sortType = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bPP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPQ" = (/turf/closed/wall,/area/engine/atmos) +"bPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bPS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bPT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) +"bPU" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bPV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPX" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bPZ" = (/obj/machinery/air_sensor{id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQa" = (/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQc" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQd" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQe" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQf" = (/obj/structure/cable{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" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"bQh" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Staboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bQj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQm" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQo" = (/obj/machinery/camera{c_tag = "Gravity Generator"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQr" = (/turf/closed/wall/r_wall,/area/storage/tech) +"bQs" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/aicard,/obj/item/aiModule/reset,/obj/item/assembly/flash/handheld,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQu" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQv" = (/obj/structure/rack,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQw" = (/obj/structure/rack,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/camera{c_tag = "Tech Storage"},/obj/item/circuitboard/computer/monastery_shuttle,/obj/effect/spawner/lootdrop/techstorage/service,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQy" = (/obj/structure/rack,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/electronics/firealarm,/obj/item/electronics/firelock,/obj/item/electronics/tracker,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQz" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQA" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQB" = (/obj/machinery/power/apc{dir = 8; name = "Aft Hall APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng3"; location = "Eng2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQD" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) +"bQF" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bQH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"bQI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bQJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Ports to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) +"bQK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bQL" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bQM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Unfiltered to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) +"bQO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bQP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bQR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bQS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bQT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQU" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRa" = (/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"bRb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bRd" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRe" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tech) +"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRj" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRm" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) +"bRs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/atmos) +"bRt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bRw" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bRx" = (/obj/machinery/computer/atmos_control,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bRy" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) +"bRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/atmos) +"bRA" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) +"bRB" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bRC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bRD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bRE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"bRF" = (/obj/structure/girder,/turf/closed/wall,/area/maintenance/department/engine) +"bRG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRH" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tech) +"bRL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/tcomms,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRR" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRT" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRU" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSa" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/conveyor{dir = 4; id = "atmosdeliver"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bSb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/conveyor_switch{id = "atmosdeliver"},/turf/open/floor/plasteel,/area/engine/atmos) +"bSc" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bSd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bSe" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bSh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bSj" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "tox_out"; name = "toxin out"},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSk" = (/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSl" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSm" = (/obj/structure/flora/ausbushes,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bSn" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) +"bSo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bSp" = (/obj/structure/disposalpipe/junction/yjunction{dir = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bSq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bSs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bSt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSu" = (/obj/item/broken_bottle,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSv" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSw" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bSx" = (/obj/structure/closet,/obj/item/restraints/handcuffs/cable,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSy" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bSA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bSB" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bSC" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/storage/tech) +"bSE" = (/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSN" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Engineering"; dir = 1; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSP" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSQ" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bSR" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bSS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bST" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bSU" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bSV" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bSW" = (/obj/machinery/air_sensor{id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSX" = (/obj/effect/turf_decal/vg_decals/atmos/plasma,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSY" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSZ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) +"bTa" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bTb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"bTd" = (/obj/item/stack/sheet/cardboard{amount = 14},/obj/item/vending_refill/cola,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bTf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Virology Waste to Space"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bTg" = (/obj/machinery/atmospherics/components/binary/pump{name = "Virology Waste to Atmospherics"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bTh" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bTi" = (/obj/item/picket_sign,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTj" = (/obj/structure/bonfire,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTk" = (/obj/structure/closet,/obj/item/cigbutt/cigarbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTl" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTm" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTo" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTr" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/gravity_generator) +"bTs" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes{charge = 5e+006},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/gravity_generator) +"bTt" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate/engineering/electrical,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTw" = (/obj/structure/rack,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTx" = (/obj/structure/rack,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTy" = (/obj/structure/rack,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTz" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTA" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/multitool,/obj/machinery/requests_console{department = "Tech storage"; pixel_y = -32},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTB" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable,/obj/structure/closet/crate/solarpanel_small,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/engineering) +"bTD" = (/turf/closed/wall,/area/security/checkpoint/engineering) +"bTE" = (/turf/closed/wall,/area/engine/engineering) +"bTF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"bTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/break_room) +"bTH" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bTI" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Entrance"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/engine/atmos) +"bTL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser/disposal,/turf/open/floor/plasteel,/area/engine/atmos) +"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bTN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"bTO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/atmos) +"bTP" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bTQ" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"bTR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bTS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bTT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bTV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bTW" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bTX" = (/obj/structure/table,/obj/item/storage/box/mousetraps,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUb" = (/obj/structure/grille/broken,/obj/structure/musician/piano,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUc" = (/obj/item/reagent_containers/food/snacks/beans,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUd" = (/obj/structure/closet,/obj/item/shard,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUe" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUf" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) +"bUg" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bUh" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) +"bUi" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/camera{c_tag = "Engineering Security Post"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUj" = (/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/checkpoint/engineering) +"bUk" = (/obj/machinery/computer/secure_data,/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/checkpoint/engineering) +"bUl" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Engineering Foyer APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/break_room) +"bUm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room) +"bUn" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Access"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/break_room) +"bUo" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/break_room) +"bUp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bUr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bUs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"bUt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bUv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bUw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bUy" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bUA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bUC" = (/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bUD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space,/area/space/nearstation) +"bUE" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space,/area/space/nearstation) +"bUF" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUG" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) +"bUI" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUJ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/obj/machinery/computer/security/telescreen/ce{pixel_y = 30},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUK" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/computer/apc_control,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUL" = (/obj/machinery/computer/station_alert,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUM" = (/obj/machinery/computer/card/minor/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/stairs,/area/storage/tech) +"bUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) +"bUP" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall,/area/engine/engine_smes) +"bUQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUR" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUS" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUT" = (/turf/closed/wall,/area/engine/engine_smes) +"bUU" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) +"bUV" = (/obj/structure/table,/obj/item/pen,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUW" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUY" = (/obj/machinery/door/airlock/security/glass{name = "Engineering Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/engineering) +"bUZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/break_room) +"bVa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/goonplaque,/area/engine/break_room) +"bVb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"bVc" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) +"bVd" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bVe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bVf" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bVg" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"bVh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating,/area/engine/atmos) +"bVi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plating,/area/engine/atmos) +"bVj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{name = "incinerator mix pump"},/turf/open/floor/plasteel,/area/engine/atmos) +"bVk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bVl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bVm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating,/area/engine/atmos) +"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) +"bVo" = (/turf/open/floor/engine/co2,/area/engine/atmos) +"bVp" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bVr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space/nearstation) +"bVs" = (/obj/structure/mopbucket,/obj/item/mop,/turf/open/floor/plating,/area/maintenance/department/engine) +"bVu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"bVv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVw" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVy" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bVz" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/engine) +"bVD" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -10; req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; req_access_txt = "11"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 10; req_access_txt = "24"},/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/paper/monitorkey,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVE" = (/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVG" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVH" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/lighter,/obj/item/stamp/ce,/obj/item/stock_parts/cell/high/plus,/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = 26},/obj/machinery/power/apc{dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-8"},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVL" = (/obj/structure/table,/obj/item/storage/box/smart_metal_foam{pixel_x = 4; pixel_y = 7},/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVM" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVN" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/engineering"; dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) +"bVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) +"bVT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) +"bVU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 27; pixel_y = -25},/turf/open/floor/plasteel,/area/engine/break_room) +"bVW" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bVY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bVZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bWb" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bWe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWf" = (/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWh" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"bWi" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/obj/machinery/camera{c_tag = "Monastery Asteroid Primary Entrance"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bWj" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bWk" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bWl" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bWn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/clothing/glasses/meson/gar,/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) +"bWo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWr" = (/obj/machinery/modular_computer/console/preset/engineering{dir = 8},/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) +"bWt" = (/obj/structure/rack,/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 1},/obj/effect/spawner/lootdrop/techstorage/command,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) +"bWu" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) +"bWv" = (/obj/structure/table,/obj/item/stack/sheet/plasteel/twenty{pixel_x = -3; pixel_y = 3},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWy" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWz" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWA" = (/obj/structure/filingcabinet,/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bWB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bWC" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/structure/closet/secure_closet/security/engine,/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,/area/security/checkpoint/engineering) +"bWD" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) +"bWE" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"bWF" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"bWG" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/shower{dir = 8; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/break_room) +"bWH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/engine/break_room) +"bWI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bWJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bWM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bWO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bWP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"bWQ" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bWR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bWT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) +"bWV" = (/turf/closed/wall,/area/chapel/main/monastery) +"bWW" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/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/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"bWZ" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bXa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bXd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"bXe" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bXf" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXg" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXi" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "ce_privacy"; name = "Privacy Shutters"; pixel_x = 24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXk" = (/turf/closed/wall/r_wall,/area/engine/engineering) +"bXl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engine_smes"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXm" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"bXr" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/binary/pump{name = "Waste to Space"},/turf/open/floor/plasteel,/area/engine/atmos) +"bXs" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXt" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXu" = (/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXw" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plasteel,/area/engine/atmos) +"bXx" = (/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bXy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bXA" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXB" = (/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXC" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) +"bXI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bXJ" = (/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bXL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXN" = (/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXS" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bXU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bXV" = (/obj/item/shard{icon_state = "small"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bXY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"bXZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"bYa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bYb" = (/turf/closed/wall,/area/crew_quarters/heads/chief) +"bYc" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYd" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYe" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes) +"bYg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engine_smes) +"bYh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Storage"; req_access_txt = "11"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bYi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engine_smes) +"bYj" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYk" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYl" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYm" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"bYn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"bYp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bYs" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bYt" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal/incinerator) +"bYu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Incinerator"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bYv" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 9},/turf/closed/wall,/area/maintenance/disposal/incinerator) +"bYw" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bYz" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bYA" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"bYB" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"bYF" = (/obj/item/trash/pistachios,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/department/engine) +"bYI" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYK" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Port Fore"},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYT" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"bYU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Starboard Fore"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZa" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZc" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZf" = (/obj/machinery/power/apc{dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZg" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZl" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"bZm" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"bZn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"bZo" = (/turf/open/floor/carpet,/area/chapel/main/monastery) +"bZr" = (/obj/item/trash/tray,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bZs" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/engine) +"bZt" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bZx" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/storage/belt/utility,/obj/item/flashlight,/obj/item/flashlight,/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"bZz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bZF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"bZI" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"bZJ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"bZK" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/atmos) +"bZL" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bZM" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/engine/atmos) +"bZN" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/engine/atmos) +"bZO" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZQ" = (/obj/machinery/computer/turbine_computer{dir = 8; id = "incineratorturbine"},/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = 24; pixel_y = 6},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZR" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airlock_sensor/incinerator_atmos{pixel_y = 22},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"bZT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 8},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = 32; pixel_y = -32},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"bZV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bZY" = (/turf/closed/wall,/area/chapel/office) +"caa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"cab" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"cae" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/engine/engineering) +"caf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"cah" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"caj" = (/obj/structure/table,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cak" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cam" = (/turf/open/floor/plasteel,/area/engine/engineering) +"can" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"caq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"car" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"caw" = (/obj/structure/table,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) +"cax" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"caz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"caA" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) +"caB" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"caC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"caD" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) +"caE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"caF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"caG" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) +"caH" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"caI" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Incinerator"; dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 4; name = "turbine vent monitor"; network = list("turbine"); pixel_x = -29},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{pixel_x = -6; pixel_y = -26},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caQ" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 8; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caR" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/turbine{dir = 4; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caS" = (/turf/closed/wall,/area/chapel/asteroid/monastery) +"caT" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"caV" = (/obj/machinery/holopad,/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"caW" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"caZ" = (/obj/structure/table,/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"cba" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/maintenance/department/engine) +"cbb" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"cbc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cbd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbe" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) +"cbf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cbg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"cbh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cbi" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"cbj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"cbk" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"cbm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"cbo" = (/obj/structure/rack,/obj/item/storage/belt/utility,/obj/item/wrench,/obj/item/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/item/airlock_painter,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) +"cbp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cbs" = (/turf/open/floor/engine/n2,/area/engine/atmos) +"cbt" = (/obj/effect/turf_decal/vg_decals/atmos/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) +"cbu" = (/turf/open/floor/engine/o2,/area/engine/atmos) +"cbv" = (/obj/effect/turf_decal/vg_decals/atmos/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) +"cbw" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) +"cbx" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/vg_decals/atmos/air,/turf/open/floor/engine/air,/area/engine/atmos) +"cby" = (/turf/open/floor/engine/air,/area/engine/atmos) +"cbz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"cbA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Incinerator to Output"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbC" = (/obj/machinery/button/ignition/incinerator/atmos{pixel_x = 26; pixel_y = -6},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cbE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"cbF" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"cbG" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) +"cbK" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cbM" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"cbN" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cbO" = (/obj/structure/table/wood,/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" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"cbR" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cbS" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"cbT" = (/obj/item/shovel,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/engine) +"cbV" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) +"cbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) +"cbX" = (/turf/open/floor/plating,/area/engine/engineering) +"cbY" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cca" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"ccb" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"ccc" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/engineering) +"cci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"ccm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) +"ccn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) +"cco" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) +"ccp" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccq" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccr" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Incinerator Output Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccs" = (/obj/structure/lattice,/turf/closed/wall,/area/maintenance/department/cargo) +"ccu" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ccE" = (/obj/structure/cable{icon_state = "1-8"},/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/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ccH" = (/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"ccJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ccM" = (/obj/structure/chair,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ccN" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/gauze,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"ccO" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/department/engine) +"ccQ" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) +"ccR" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps/engineering,/turf/open/floor/plating,/area/engine/engineering) +"ccW" = (/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"ccX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"ccY" = (/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) +"cda" = (/obj/structure/reflector/single/anchored{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) +"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdg" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdh" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdj" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdl" = (/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdm" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"cdo" = (/turf/open/floor/carpet,/area/chapel/office) +"cdp" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/carpet/black,/area/chapel/office) +"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main/monastery) +"cdr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cds" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Port Access"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdu" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"cdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdC" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdD" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/kitchen/fork,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"cdE" = (/obj/structure/chair,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/engine) +"cdI" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/open/floor/plasteel,/area/engine/engineering) +"cdL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Engineering Port Aft"; dir = 1; pixel_x = 23},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cdR" = (/obj/machinery/door/airlock/engineering/glass{name = "Laser Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cdT" = (/obj/machinery/power/emitter/anchored{dir = 4; state = 2},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) +"cdW" = (/obj/structure/reflector/box/anchored,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceb" = (/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cec" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"ced" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cee" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"cef" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"ceg" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/office) +"cei" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cej" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cek" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cel" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cen" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ceq" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) +"cer" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Transit Tube"; req_access_txt = "10; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cet" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"ceu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering) +"cey" = (/obj/structure/girder,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"ceB" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) +"ceC" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Crematorium"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceF" = (/obj/structure/filingcabinet,/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},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceK" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceL" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceT" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) +"ceU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching telecomms."; layer = 4; name = "Telecomms Telescreen"; network = list("tcomms"); pixel_y = 28},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceX" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cfa" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cff" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"cfl" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfm" = (/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"cfn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfr" = (/obj/structure/transit_tube_pod,/obj/structure/transit_tube/station/reverse{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) +"cfs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfu" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/engine/engineering) +"cfC" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cfD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Monastery APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) +"cfI" = (/turf/open/floor/plating,/area/chapel/main/monastery) +"cfJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) +"cfL" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Starboard Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"cfN" = (/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cfO" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) +"cfP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfQ" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"cfS" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfX" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"cfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Engine"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) +"cgb" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cgd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cgf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) +"cgg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cgk" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/camera{c_tag = "Monastery Garden"; network = list("ss13","monastery")},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgm" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cgp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"cgr" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/engine/engineering) +"cgs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/engine/engineering) +"cgu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"cgv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"cgx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"cgG" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main/monastery) +"cgH" = (/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgI" = (/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgJ" = (/obj/item/cultivator,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgK" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgL" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgM" = (/obj/structure/dresser,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgN" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4},/obj/item/flashlight/lantern,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgO" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cgP" = (/obj/structure/transit_tube,/turf/open/floor/plating/airless,/area/space/nearstation) +"cgQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"cgU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cgV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"cgY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) +"chb" = (/obj/machinery/camera{c_tag = "Monastery Kitchen"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chc" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chd" = (/obj/item/clothing/suit/apron/chef,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chf" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"chi" = (/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chk" = (/obj/structure/sink/puddle,/obj/item/reagent_containers/glass/bucket,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chl" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"chp" = (/obj/machinery/door/airlock{id_tag = "Cell1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chr" = (/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cht" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"chv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"chB" = (/obj/item/seeds/banana,/obj/item/seeds/grass,/obj/item/seeds/grape,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chC" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chD" = (/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"chG" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) +"chK" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/instrument/violin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chL" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chM" = (/obj/structure/bed,/obj/item/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chN" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"chU" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chV" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chW" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 3; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/obj/item/storage/box/ingredients/wildcard{layer = 3.1},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chX" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/flour,/obj/item/kitchen/rollingpin,/obj/item/kitchen/knife,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chY" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chZ" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cib" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cic" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cid" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cif" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/cable_coil/yellow,/turf/open/floor/plating,/area/maintenance/department/engine) +"cig" = (/obj/structure/transit_tube/crossing,/turf/open/floor/plating/airless,/area/space/nearstation) +"cio" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cip" = (/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciq" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cit" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) +"civ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"ciy" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"ciz" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciE" = (/obj/structure/flora/ausbushes/genericbush,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciF" = (/obj/machinery/door/airlock{id_tag = "Cell2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciG" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"ciI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Chamber"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"ciJ" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciK" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciN" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/condiment/saltshaker{layer = 3.1; pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciS" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciT" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/harebell,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciV" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciW" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciX" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciY" = (/obj/structure/bed,/obj/item/bedsheet/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciZ" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cjf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjl" = (/obj/machinery/door/airlock/grunge{name = "Monastery Cemetary"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjm" = (/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"cjo" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjp" = (/turf/closed/wall,/area/library) +"cjq" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjr" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"cju" = (/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) +"cjv" = (/turf/closed/wall,/area/asteroid/nearstation/bomb_site) +"cjw" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) +"cjx" = (/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cjB" = (/obj/docking_port/stationary{dir = 8; dwidth = 11; height = 22; id = "whiteship_home"; name = "monastery"; width = 35},/turf/open/space/basic,/area/space) +"cjC" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) +"cjH" = (/obj/machinery/door/airlock/grunge{name = "Chapel Garden"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjO" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cjP" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) +"cjR" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"cjV" = (/obj/machinery/camera/preset/toxins,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cjZ" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cka" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckb" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ckc" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckd" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cke" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckf" = (/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckg" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckh" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cki" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckk" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/stack/rods/fifty,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library) +"cko" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library) +"ckp" = (/obj/structure/bookcase/random/religion,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckt" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cku" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ckv" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/machinery/door/window/eastleft{dir = 8; name = "Mass Driver"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckw" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cky" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckz" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckA" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckB" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckC" = (/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckD" = (/obj/structure/chair/wood/normal,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"ckG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckH" = (/turf/open/floor/plasteel/dark,/area/library) +"ckI" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckJ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) +"ckK" = (/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) +"ckL" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/asteroid/nearstation/bomb_site) +"ckM" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckN" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckO" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckP" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"ckR" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckS" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/camera{c_tag = "Monastery Library"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckT" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckU" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckV" = (/obj/structure/bookcase/random/reference,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library) +"ckX" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clb" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "mass driver door"},/turf/open/floor/plating,/area/chapel/main/monastery) +"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"cle" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"clf" = (/obj/machinery/light/small{dir = 1},/obj/item/storage/box/lights/bulbs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"clg" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cli" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"clj" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"clk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/libraryscanner,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clm" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cln" = (/obj/structure/bookcase/random/adult,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/dark,/area/library) +"cls" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) +"clv" = (/turf/closed/mineral/iron,/area/asteroid/nearstation/bomb_site) +"clw" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"clA" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/tcommsat/computer) +"clD" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clF" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) +"clG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/computer) +"clH" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"clJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clL" = (/turf/closed/wall,/area/tcommsat/computer) +"clM" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Waste to Space"},/turf/open/floor/plating,/area/tcommsat/computer) +"clN" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) +"clP" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"clQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall,/area/tcommsat/computer) +"clU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/wrench,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"clV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) +"clX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clY" = (/obj/item/beacon,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"clZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cma" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/turf/open/floor/plating,/area/tcommsat/computer) +"cmb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"cmc" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/tcommsat/computer) +"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cmf" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmg" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmh" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmj" = (/obj/machinery/door/airlock/command/glass{name = "Control Room"; req_access_txt = "19; 61"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmk" = (/obj/machinery/power/apc{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Monitoring APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cml" = (/obj/machinery/announcement_system,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmm" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"cmr" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cms" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmt" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port"; dir = 8; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cmu" = (/obj/machinery/status_display/evac{pixel_x = -32},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmv" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"cmx" = (/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmy" = (/obj/machinery/computer/message_monitor{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard"; dir = 4; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cmB" = (/turf/closed/wall/r_wall,/area/tcommsat/server) +"cmF" = (/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"cmG" = (/obj/machinery/blackbox_recorder,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmH" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmK" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmL" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmM" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmN" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmO" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmP" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmQ" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmR" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmU" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmV" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmW" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmY" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmZ" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cna" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnb" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnc" = (/obj/machinery/power/terminal,/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnd" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cne" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnj" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnk" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnl" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnm" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnn" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cno" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnp" = (/obj/machinery/camera/preset/toxins{c_tag = "Bomb Testing Asteroid Aft"; dir = 1},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cnq" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) +"cnr" = (/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) +"cns" = (/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) +"cnt" = (/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) +"cnu" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnv" = (/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) +"cnw" = (/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) +"cnx" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cny" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cnz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cnC" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"cnD" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnG" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAS) +"cnH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnN" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/camera{c_tag = "Brig Equipment Room"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnP" = (/obj/machinery/vending/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnQ" = (/obj/machinery/suit_storage_unit/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnT" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnV" = (/obj/structure/punching_bag,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cod" = (/obj/structure/table,/obj/item/clothing/under/color/grey,/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"coe" = (/obj/machinery/power/apc{dir = 8; name = "Dormitory Maintenance APC"; pixel_x = -24},/obj/structure/cable,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"coi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"coj" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"cok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"col" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"com" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"con" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"cop" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"cor" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"cos" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cou" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"coy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"coz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Primary Hallway Bridge"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/bar) +"coG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"coH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"coJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"coL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) +"coN" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"coV" = (/obj/machinery/vending/cigarette,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"coW" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"cpa" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar) +"cpb" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/goldschlager{pixel_x = -8; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vermouth{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 7; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/kahlua{pixel_x = 9; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/absinthe{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpc" = (/obj/machinery/chem_dispenser/drinks,/obj/structure/table,/obj/machinery/camera{c_tag = "Bar Drinks"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpe" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpg" = (/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = 26; req_access_txt = "28"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cph" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpk" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpl" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpm" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpn" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpo" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpq" = (/obj/machinery/deepfryer,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpt" = (/obj/item/beacon,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpu" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpx" = (/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/button/door{id = "kitchenshutters"; name = "Kitchen Shutters Control"; pixel_x = 5; pixel_y = -24; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpz" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpA" = (/obj/structure/rack,/obj/item/reagent_containers/food/snacks/mint,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/bar) +"cpH" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpI" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpK" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpL" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpM" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpQ" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpT" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpU" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cpY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cpZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqc" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqe" = (/obj/effect/turf_decal/plaque,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Med"; location = "Sci9"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cql" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"cqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqD" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqE" = (/obj/item/kirbyplants{icon_state = "plant-18"; layer = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cqH" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"cqS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/space/nearstation) +"cqU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"cqV" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_engineer,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cqW" = (/obj/structure/chair,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"cqX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"crb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/office) +"cre" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"crg" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crh" = (/obj/machinery/button/crematorium{id = "foo"; pixel_x = 25},/obj/structure/bodycontainer/crematorium{id = "foo"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cri" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/engine/engineering) +"crj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"crm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space,/area/space/nearstation) +"crt" = (/obj/structure/table/wood/fancy,/obj/item/folder,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/chapel/office) +"cru" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crv" = (/turf/open/floor/plasteel/dark,/area/chapel/office) +"crx" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cry" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space,/area/space/nearstation) +"crz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crA" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"crC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crD" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/bodybags,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crH" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Chapel Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crL" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"crM" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"crN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crO" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"crT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crU" = (/obj/machinery/power/apc{dir = 4; name = "Chapel Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crY" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/breadslice/plain,/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 4},/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csd" = (/turf/open/floor/carpet/black,/area/chapel/office) +"cse" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/black,/area/chapel/office) +"csf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csi" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/wine{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_x = -32},/obj/structure/closet,/obj/item/storage/backpack/cultpack,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/suit/chaplain/holidaypriest,/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},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cso" = (/obj/structure/table/wood,/obj/item/nullrod,/turf/open/floor/carpet/black,/area/chapel/office) +"csp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet/black,/area/chapel/office) +"csq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"css" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"csv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csy" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"csB" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/black,/area/chapel/office) +"csC" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/turf/open/floor/carpet/black,/area/chapel/office) +"csE" = (/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) +"csF" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) +"csG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) +"csM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Chapel Office Tunnel"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"csN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Starboard Access"; network = list("ss13","monastery")},/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/main/monastery) +"csY" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/newscaster{pixel_x = -32},/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},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cta" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"ctg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cth" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctu" = (/obj/machinery/light/small,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"ctJ" = (/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctK" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctL" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctM" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Fore"; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctQ" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) +"ctS" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) +"ctX" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/carpet,/area/chapel/office) +"cuc" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Xenobiology Central"; dir = 1; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"cuk" = (/obj/structure/closet{name = "beekeeping wardrobe"},/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cul" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cum" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cun" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small{dir = 1},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuo" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cup" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small{dir = 1},/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cus" = (/obj/structure/closet{name = "beekeeping supplies"},/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cut" = (/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuu" = (/obj/item/storage/bag/plants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/storage/bag/plants/portaseeder,/obj/item/storage/bag/plants/portaseeder,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuv" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuw" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cux" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/mug/tea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuy" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuA" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuE" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuG" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuH" = (/obj/item/hatchet,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuJ" = (/obj/item/shovel/spade,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Dining Room"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuM" = (/obj/machinery/power/apc{dir = 8; name = "Garden APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuO" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuS" = (/obj/machinery/door/airlock{name = "Kitchen"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuU" = (/obj/machinery/door/airlock{name = "Dining Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuV" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Garden"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuY" = (/obj/machinery/door/airlock{name = "Garden"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuZ" = (/obj/item/wrench,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cvb" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvd" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cve" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvf" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"cvg" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvh" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvi" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvj" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvk" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Monastery Cloister Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvq" = (/obj/machinery/camera{c_tag = "Monastery Secondary Dock"; dir = 8; network = list("ss13","monastery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{dir = 1; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvA" = (/obj/machinery/door/airlock/external{name = "Dock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvB" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvC" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvH" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvI" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Monastery Cloister Aft"; dir = 1; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvJ" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/machinery/camera{c_tag = "Monastery Cemetary"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvS" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvT" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cvV" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvX" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cvY" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cvZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cwa" = (/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cwc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Monastery Maintenance"; req_one_access_txt = "22;24;10;11;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwe" = (/turf/closed/wall/mineral/iron,/area/library/lounge) +"cwg" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cwj" = (/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwl" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/fancy/candle_box,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwn" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwo" = (/obj/machinery/power/apc{dir = 1; name = "Monastery Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwr" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Library Lounge APC"; pixel_x = 24},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cww" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwx" = (/obj/structure/table/wood/fancy,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwy" = (/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/candle,/obj/item/candle{pixel_x = 6; pixel_y = 8},/obj/item/candle{pixel_x = -8; pixel_y = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwz" = (/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwA" = (/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwG" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/massdriver{id = "chapelgun"; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library/lounge) +"cwM" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space,/area/space/nearstation) +"cwO" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwR" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cwS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwU" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"cxe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"cxg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space/basic,/area/space/nearstation) +"cxh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cxk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cxn" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"cxt" = (/obj/effect/turf_decal/box/corners{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"cxz" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/library/lounge) +"cxC" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxD" = (/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/library/lounge) +"cxJ" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/library/lounge) +"cxK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxM" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library/lounge) +"cxX" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Access Tunnel"; dir = 4; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cym" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/library/lounge) +"cyz" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyA" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/library/lounge) +"cyL" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cyM" = (/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cyP" = (/obj/structure/bookcase/random/nonfiction,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cyQ" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Monastery Archives Fore"; network = list("ss13","monastery")},/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/library) +"cyR" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/library) +"cyS" = (/obj/structure/bookcase/random/religion,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cyT" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) +"cyU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) +"cyY" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cyZ" = (/obj/structure/displaycase/trophy,/turf/open/floor/plasteel/dark,/area/library) +"czl" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/library) +"czo" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/library) +"czp" = (/obj/structure/table/wood,/obj/item/disk/nuclear/fake,/obj/item/barcodescanner,/turf/open/floor/plasteel/dark,/area/library) +"czq" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/library) +"czr" = (/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/library) +"czt" = (/obj/structure/table/wood/fancy,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/library) +"czu" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/library) +"czv" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"czw" = (/obj/machinery/newscaster{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/library) +"czB" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/turf/open/floor/carpet,/area/library) +"czC" = (/obj/structure/table/wood/fancy,/obj/item/flashlight/lantern{icon_state = "lantern-on"; pixel_y = 8},/turf/open/floor/carpet,/area/library) +"czD" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) +"czH" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"czI" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/library) +"czL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/library) +"czM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/library) +"czN" = (/obj/structure/table/wood,/obj/item/storage/bag/books,/turf/open/floor/plasteel/dark,/area/library) +"czO" = (/obj/structure/table/wood,/obj/item/instrument/saxophone,/turf/open/floor/plasteel/dark,/area/library) +"czP" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/coin/gold,/turf/open/floor/plasteel/dark,/area/library) +"czQ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Archives Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"czV" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAg" = (/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},/turf/open/floor/plasteel/dark,/area/library) +"cAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) +"cAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) +"cAr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 2; icon_state = "left"; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAs" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/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},/turf/open/floor/plasteel/dark,/area/library) +"cAt" = (/obj/structure/table/wood,/obj/item/flashlight/lantern{pixel_y = 8},/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},/turf/open/floor/plasteel/dark,/area/library) +"cAu" = (/obj/structure/table/wood,/obj/item/clothing/head/pharaoh,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) +"cAv" = (/obj/structure/table/wood,/obj/item/camera,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) +"cAy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window/northright{dir = 2; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAB" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/wood/wings{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/wood/wings{dir = 1},/obj/effect/landmark/start/librarian,/turf/open/floor/plasteel/dark,/area/library) +"cAH" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/library) +"cAK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/library) +"cAM" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"cAS" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/plasteel/dark,/area/library) +"cAT" = (/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel/dark,/area/library) +"cAU" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/book/codex_gigas,/obj/machinery/camera{c_tag = "Monastery Archives Aft"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"cAV" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel/dark,/area/library) +"cBi" = (/obj/machinery/flasher/portable,/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/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/armory) +"cBk" = (/obj/machinery/vending/boozeomat/pubby_maint,/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) +"cBl" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBm" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"cBn" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"cBo" = (/obj/structure/table,/obj/item/lighter,/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBp" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBq" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBr" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBs" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBv" = (/obj/item/cigbutt/roach,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBw" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBA" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"cBB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"cBK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"cBL" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) +"cBM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/office) +"cBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) +"cBT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"cBU" = (/turf/closed/wall/r_wall,/area/gateway) +"cCl" = (/turf/closed/wall/r_wall,/area/science/lab) +"cCt" = (/turf/open/floor/plasteel/white,/area/science/lab) +"cCB" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cCF" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCH" = (/obj/effect/turf_decal/bot/left,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCI" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cCP" = (/obj/effect/turf_decal/bot/right,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/chapel/monastery) +"cCS" = (/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel/dark,/area/security/main) +"cCT" = (/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel,/area/quartermaster/storage) +"cCU" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/tcomms{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) +"cCV" = (/obj/machinery/rnd/production/protolathe/department/engineering,/turf/open/floor/plasteel,/area/engine/engineering) +"cCW" = (/obj/machinery/vending/games,/turf/open/floor/plasteel/dark,/area/library) +"cCX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cCY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cCZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cDa" = (/turf/closed/wall,/area/quartermaster/warehouse) +"cDB" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"cFB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) +"cHS" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"cJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"cKA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"cKV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cLw" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) +"cOp" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel,/area/science/xenobiology) +"cPy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/structure/sign/warning/nosmoking{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cPO" = (/obj/item/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"cPT" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/window/reinforced,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cSJ" = (/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2; pixel_y = 9},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5; pixel_y = 9},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6; pixel_y = 2},/obj/item/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 4; name = "Treatment Center APC"; pixel_x = 24},/obj/structure/cable,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"cSK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 8; freq = 1400; location = "Research Division"},/turf/open/floor/plasteel/dark,/area/science/lab) +"cXW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"cZt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"daY" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"dbi" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"dci" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"dcL" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"deJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/gps/mining{gpstag = "MINE_PUB"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"dgg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"dgj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) +"dgz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dgI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"dhz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"dir" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dkR" = (/obj/effect/turf_decal/box/corners{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"dmP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/science) +"dmT" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/science/xenobiology) +"dnS" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"doo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"dpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"dpb" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) +"dpc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"dps" = (/obj/machinery/status_display/ai,/turf/closed/wall,/area/quartermaster/qm) +"dqw" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"dqG" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"dqY" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"dse" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"dsv" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plating,/area/maintenance/department/cargo) +"dsz" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"dtm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"duF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = 1; pixel_y = 5},/obj/item/reagent_containers/glass/beaker{pixel_x = -2},/obj/item/reagent_containers/glass/beaker{pixel_x = 2; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/lab) +"duQ" = (/obj/machinery/camera{c_tag = "Departure Lounge Aft"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"dxc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dye" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/structure/sign/departments/science{pixel_y = 32},/obj/item/kitchen/knife,/turf/open/floor/plating,/area/maintenance/department/engine) +"dym" = (/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"dAF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/science/mixing) +"dAG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"dEy" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/reflector/double/anchored{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"dFJ" = (/turf/open/floor/engine,/area/engine/supermatter) +"dHr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"dHZ" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/machinery/button/door{id = "chemistry_shutters"; name = "Shutters Control"; pixel_x = 26; pixel_y = 4; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"dJk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) +"dJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Pit"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) +"dKs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"dLY" = (/obj/structure/table,/obj/item/assembly/igniter,/turf/open/floor/plating,/area/maintenance/department/cargo) +"dMB" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) +"dMG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"dMI" = (/obj/item/clothing/suit/apron/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"dMO" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"dNr" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) +"dSp" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{dir = 1},/turf/open/floor/plating/airless,/area/engine/engineering) +"dSr" = (/obj/item/chair,/turf/open/floor/wood,/area/maintenance/department/engine) +"dTV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"dVI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"dVJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"dWk" = (/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"dWp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"dYe" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/security/prison) +"dZj" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/airalarm/engine{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) +"eaw" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ebD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) +"edl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) +"edJ" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"eex" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/office) +"eeQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office) +"efu" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/dark,/area/science/explab) +"efU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"egK" = (/obj/structure/girder,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"ehM" = (/obj/effect/decal/remains/human,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"eiV" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ekU" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"elk" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/lawoffice) +"epj" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"epJ" = (/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"epV" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) +"eqD" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) +"eta" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"euQ" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"eyj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) +"ezF" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ezJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"eAp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"eAH" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) +"eAZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"eCw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"eCK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"eDC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"eEp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/lawoffice) +"eFj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"eFG" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 8; pixel_x = -32; pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) +"eHI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"eIL" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"eLt" = (/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"eMC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"eNc" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"eNq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"eNF" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) +"eOZ" = (/obj/structure/closet,/obj/item/clothing/suit/judgerobe,/obj/item/gavelblock,/obj/item/gavelhammer,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ePU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) +"eQN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"eQR" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/turf/open/floor/engine,/area/science/xenobiology) +"eQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"eRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"eSB" = (/obj/machinery/computer/cryopod{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/security/prison) +"eSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"eVy" = (/obj/effect/turf_decal/arrows{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"eWi" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) +"eXo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/engine,/area/science/explab) +"eYr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"eZA" = (/obj/item/stack/cable_coil/cut/random,/turf/open/floor/plating,/area/maintenance/department/cargo) +"fdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"fdS" = (/obj/machinery/door/window/southleft{dir = 4; name = "Engineering Delivery"; req_access_txt = "10"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Engineering"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"fef" = (/obj/machinery/door/airlock/maintenance{name = "Menagerie"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"ffJ" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"fgS" = (/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},/mob/living/simple_animal/opossum/poppy,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"fhM" = (/obj/item/storage/secure/safe{pixel_x = -22},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"fjs" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"fjD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) +"fkH" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light,/obj/machinery/camera{c_tag = "Experimentation Lab Testing Zone"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/explab) +"fmh" = (/turf/open/floor/wood,/area/maintenance/department/engine) +"fmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"fmU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"fon" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) +"fow" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"fpT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"frj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) +"ftp" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"ftW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"fuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/wood,/area/lawoffice) +"fvb" = (/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/maintenance/department/engine) +"fwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"fwl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"fwr" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"fwI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"fxC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"fym" = (/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) +"fyF" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"fyO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter) +"fzu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/gloves/color/black,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"fAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"fBt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"fBz" = (/obj/effect/turf_decal/loading_area{dir = 4},/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/science/mixing) +"fBZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) +"fFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"fIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"fIN" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"fIT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main/monastery) +"fKj" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Mineral Room"},/turf/open/floor/plating,/area/maintenance/department/science) +"fLG" = (/obj/effect/decal/remains/xeno,/turf/open/floor/plating,/area/maintenance/department/engine) +"fNv" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"fQf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"fRr" = (/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"fRs" = (/turf/closed/wall,/area/crew_quarters/heads/hor) +"fTY" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"fUA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"fWv" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library/lounge) +"fZK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"gam" = (/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"gdJ" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"gdL" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"geU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"gfi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"ggg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"giI" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/office) +"giO" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gjp" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"gjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gjv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Space Loop In"},/turf/open/floor/plating,/area/maintenance/department/science) +"gjN" = (/obj/item/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gkR" = (/obj/item/kirbyplants/random,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"gkS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"gkX" = (/obj/machinery/door/airlock/maintenance{name = "Storage"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"glf" = (/obj/structure/closet/emcloset,/obj/structure/sign/poster/official/random{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"gmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/science) +"gmO" = (/obj/structure/chair{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/exit/departure_lounge) +"gmZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"gna" = (/turf/open/floor/plasteel/stairs/medium,/area/maintenance/department/crew_quarters/dorms) +"gnq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/engineering) +"gpC" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"gpI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"gue" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gvf" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"gwn" = (/obj/structure/sign/warning{pixel_y = 32},/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gxe" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/structure/light_construct/small{dir = 8},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"gxq" = (/obj/structure/chair{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"gxK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"gAG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/lawoffice) +"gBb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"gDR" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"gDZ" = (/obj/effect/turf_decal/box/corners{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"gEo" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"gFo" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters_2"; name = "Shutters Control Button"; pixel_x = -28; pixel_y = -7; req_access_txt = "47"},/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/item/wrench,/obj/item/crowbar,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/dark,/area/science/lab) +"gGy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gGA" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"gHZ" = (/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/maintenance/department/engine) +"gIC" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) +"gIG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"gKz" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"gKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gLF" = (/obj/machinery/vending/snack/random,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"gMm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/mixing) +"gMO" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating,/area/maintenance/department/engine) +"gNv" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) +"gNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"gPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice) +"gQf" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) +"gQo" = (/obj/machinery/vending/wardrobe/det_wardrobe,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"gSH" = (/turf/closed/wall,/area/lawoffice) +"gSI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"gUb" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"gVc" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) +"gXg" = (/obj/item/extinguisher,/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/science) +"gXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"gYo" = (/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) +"haA" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"hbl" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/space) +"heC" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Science Maintenance APC"; pixel_x = -25},/obj/structure/cable,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"hfZ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"hgD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/science) +"hiw" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hiY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci4"; location = "Sci3"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"hjk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"hjD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"hka" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/camera{c_tag = "Atmospherics Console"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"hkQ" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"hnu" = (/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_x = 34; pixel_y = -1; req_access_txt = "38"},/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) +"hon" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Filter"},/turf/open/floor/engine,/area/engine/engineering) +"hoS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/engine,/area/engine/engineering) +"hqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"hvW" = (/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"hwd" = (/obj/machinery/camera{c_tag = "Departure Lounge Port"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"hwj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/security/execution/transfer) +"hxn" = (/obj/structure/chair,/obj/item/clothing/glasses/regular,/turf/open/floor/plating,/area/maintenance/department/science) +"hxI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"hyh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"hzc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/wrench,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"hzd" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) +"hDG" = (/obj/machinery/door/airlock/engineering{name = "Auxillary Base Construction"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"hEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"hFp" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"hFy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"hGB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hHr" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"hKp" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"hMx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"hOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hOz" = (/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/cargo) +"hPN" = (/obj/structure/table/glass,/obj/item/clothing/glasses/science,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"hPU" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/surgical_drapes,/obj/item/clothing/mask/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"hQz" = (/obj/structure/closet/emcloset/anchored,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"hQC" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"hSt" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Cooling Loop"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hSC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hSM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"hTl" = (/obj/structure/sink{dir = 4; pixel_x = 12},/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/department/science) +"hUt" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"hUw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering) +"hUJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"hVx" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"hXt" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/science) +"hXK" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"hYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) +"hZB" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"iab" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"ick" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/library) +"iej" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"igB" = (/obj/machinery/camera{c_tag = "Turbine Chamber"; network = list("turbine")},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"igE" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"ihj" = (/obj/item/clothing/suit/toggle/labcoat/science,/turf/open/floor/plating,/area/maintenance/department/engine) +"ihk" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"ijF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library) +"ijU" = (/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"ikB" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plating,/area/maintenance/department/science) +"ikO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"ilD" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"ilE" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"imE" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ioj" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light{light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"iop" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ioF" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"iqc" = (/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) +"irM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"itl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"iuM" = (/obj/machinery/door/window/southleft{dir = 8; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ivO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/bot/secbot{arrest_type = 1; health = 45; icon_state = "secbot1"; idcheck = 1; name = "Sergeant-at-Armsky"; weaponscheck = 1},/turf/open/floor/plasteel/dark,/area/security/armory) +"iwe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"iyg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"iyJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"izB" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) +"izF" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"iAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"iBJ" = (/obj/machinery/camera{c_tag = "Telecomms External Fore"; dir = 1; network = list("tcomms"); start_active = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"iCe" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plating,/area/maintenance/department/cargo) +"iCs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"iCV" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/security/execution/transfer) +"iEQ" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/engine) +"iEU" = (/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"iFI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/engine/engineering) +"iGJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"iJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"iKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) +"iLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"iLl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"iLR" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"iPj" = (/obj/machinery/igniter{id = "xenoigniter"; luminosity = 2},/turf/open/floor/engine,/area/science/xenobiology) +"iPz" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Test Lab"; dir = 4; network = list("xeno","rd")},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"iPH" = (/obj/machinery/vr_sleeper{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"iPO" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"iPU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) +"iSz" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"iTF" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/engine/supermatter) +"iVJ" = (/obj/effect/spawner/lootdrop/organ_spawner,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"iWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"iXx" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"jcT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"jen" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"jeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"jgr" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) +"jhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jhD" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"jjC" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/open/floor/wood,/area/lawoffice) +"jrG" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4; name = "emergency shower"},/turf/open/floor/plasteel,/area/engine/engineering) +"jsf" = (/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jsj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"jsD" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) +"jtf" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"juw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"jvi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"jwe" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"jxl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"jxK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"jzz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/entry) +"jzE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"jAy" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"jBh" = (/obj/structure/rack,/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating,/area/maintenance/department/cargo) +"jBn" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"jCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"jDA" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"jEX" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) +"jFw" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"jFO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"jHP" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{pixel_x = 6; pixel_y = 10},/obj/item/reagent_containers/food/drinks/bottle/tequila{pixel_x = -6; pixel_y = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"jOB" = (/turf/open/floor/plating,/area/storage/emergency/starboard) +"jPf" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/kitchen/knife,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"jQh" = (/obj/item/stack/sheet/animalhide/xeno,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"jRG" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"jSa" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/chapel/main/monastery) +"jTh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jTu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/carpet,/area/lawoffice) +"jTU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"jUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"jXh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"jXA" = (/obj/structure/table,/obj/item/stack/ore/iron,/turf/open/floor/plating,/area/maintenance/department/science) +"jXF" = (/obj/machinery/cryopod{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison) +"jXV" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"jYe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"jYh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Supply to Virology"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"jZG" = (/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) +"kas" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"kaR" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"kfh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/mixing) +"kfM" = (/obj/structure/closet,/obj/machinery/light/small,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/office) +"kgR" = (/obj/structure/toilet/secret/low_loot{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"khk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"kjK" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"kkk" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"kkQ" = (/obj/machinery/vending/cola/pwr_game,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"klb" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/sorting) +"klo" = (/obj/structure/dresser,/obj/structure/mirror{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/department/engine) +"klB" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"klV" = (/obj/item/clothing/under/rank/civilian/clown/sexy,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"kmd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"kmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"koz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"kpK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"krU" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"ksf" = (/obj/item/stack/tile/carpet,/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/engine) +"kvj" = (/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"kwm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"kxj" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/lawoffice) +"kxs" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kyv" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"kAa" = (/obj/structure/chair{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"kDf" = (/obj/machinery/light/small,/turf/open/floor/carpet/black,/area/chapel/office) +"kDJ" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/engineering) +"kDY" = (/obj/item/shard{icon_state = "small"},/turf/open/floor/wood,/area/maintenance/department/engine) +"kEM" = (/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"kEW" = (/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) +"kFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/tcommsat/computer) +"kFu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"kFx" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kFD" = (/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/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) +"kGe" = (/obj/structure/transit_tube/horizontal,/obj/structure/sign/departments/holy{pixel_x = -32},/turf/open/floor/plating,/area/hallway/secondary/entry) +"kIo" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"kIO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"kJo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kJw" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range Target"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"kKI" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) +"kNf" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #4"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"kPi" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"kQy" = (/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/white,/area/medical/sleeper) +"kQZ" = (/obj/structure/closet,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kRq" = (/turf/open/floor/plasteel,/area/maintenance/department/engine) +"kRK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/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) +"kSb" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space) +"kSF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"kSO" = (/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/turf/open/floor/plating,/area/storage/emergency/port) +"kTj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"kTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"kWQ" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"kXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"kYM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"lcU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lcZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) +"ldQ" = (/obj/structure/floodlight_frame,/turf/open/floor/plating,/area/maintenance/department/science) +"lem" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_y = 25},/obj/machinery/igniter{id = "secigniter"},/turf/open/floor/plating,/area/security/execution/transfer) +"lfx" = (/obj/structure/table,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"lhA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"liR" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"lje" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"lms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/department/engine) +"lnn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"lnr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) +"loz" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"loL" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4; filter_type = "n2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"lqc" = (/obj/item/toy/gun,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lqy" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"lrM" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"lxI" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/chapel/monastery) +"lzJ" = (/obj/structure/closet/crate/bin,/turf/open/floor/carpet,/area/chapel/office) +"lAf" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"lAs" = (/turf/closed/wall,/area/quartermaster/sorting) +"lAR" = (/obj/effect/turf_decal/stripes/line{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/explab) +"lBP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"lEn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"lFh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"lGp" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/dark,/area/security/prison) +"lGv" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"lGS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"lHc" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lHX" = (/obj/structure/bed,/obj/item/bedsheet/orange,/turf/open/floor/plating,/area/maintenance/department/engine) +"lIr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"lJr" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/science) +"lJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"lKL" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) +"lMU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lNW" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/science) +"lQn" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"lQQ" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) +"lQX" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"lTC" = (/obj/item/shard,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"lUO" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/supermatter) +"lWy" = (/turf/open/floor/plating,/area/maintenance/department/science) +"lWH" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel,/area/science/xenobiology) +"lWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"lXb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Mix"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"lXc" = (/obj/structure/table,/obj/item/clothing/head/beret,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lXJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"mau" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) +"maW" = (/obj/structure/table/glass,/obj/item/weldingtool/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"mbe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"mci" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) +"mdL" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"meF" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall,/area/engine/supermatter) +"mfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"mgz" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"mhl" = (/obj/machinery/power/emitter,/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/engine/engineering) +"mhn" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/random{pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"mhK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/space/basic,/area/space/nearstation) +"miw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) +"mjn" = (/obj/machinery/jukebox,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"mjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering) +"mlr" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"mmv" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mnG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"mpd" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"mpy" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/blue,/turf/open/floor/wood,/area/lawoffice) +"mql" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"mqp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"msX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"mtu" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/light/small{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) +"mtI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Xenobiology APC"; pixel_x = -25},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"mvm" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Starboard Solar APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"mwg" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox,/obj/item/gun/ballistic/shotgun/toy,/obj/item/gun/ballistic/shotgun/toy,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"mwG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"mxy" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/tcommsat/computer) +"myu" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/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},/turf/open/floor/plasteel/dark,/area/bridge) +"mzl" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating,/area/security/execution/transfer) +"mzE" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) +"mzU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"mCe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/open/floor/plating,/area/security/checkpoint/engineering) +"mDW" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"mEu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mES" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Surgical Room"},/turf/open/floor/plating,/area/maintenance/department/science) +"mHy" = (/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/wood,/area/maintenance/department/engine) +"mIa" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"mJp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"mKc" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library/lounge) +"mKk" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"mLB" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) +"mMz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"mQm" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"mSc" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/science) +"mTS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"mVM" = (/turf/open/floor/plating/airless,/area/space/nearstation) +"mXq" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice) +"mZE" = (/turf/open/space/basic,/area/space/nearstation) +"naq" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"naS" = (/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"nbu" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/space) +"ncm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"ndI" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"nev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"new" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"nfi" = (/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"nfz" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nge" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"ngp" = (/obj/item/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"nih" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"niy" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie,/obj/machinery/airalarm{pixel_y = 22},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"nku" = (/obj/machinery/door/airlock/centcom{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"nnh" = (/obj/structure/chair{dir = 8},/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"noC" = (/obj/machinery/vending/kink,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"noM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"npE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nqu" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"nqV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nsy" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/power/apc{areastring = "/area/construction/mining/aux_base"; dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"nsD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) +"nsJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ntj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"nuv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nxT" = (/obj/machinery/smartfridge/extract/preloaded,/turf/open/floor/plasteel,/area/science/xenobiology) +"nyB" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) +"nyO" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"nzD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/science) +"nAs" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"nAY" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"nBw" = (/obj/machinery/computer/crew{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"nBL" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"nDo" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/engine) +"nDx" = (/obj/machinery/vending/coffee,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"nEb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"nGi" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"nIm" = (/obj/machinery/computer/security/telescreen{dir = 8; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) +"nIU" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"nJI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/turf/open/floor/engine,/area/science/explab) +"nKo" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"nLl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"nMG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/camera/motion{c_tag = "Telecomms Monitoring"; network = list("tcomms")},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"nNJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"nNN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) +"nOY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nPA" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"nQc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"nRM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"nSj" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) +"nTr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"nUQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"nVU" = (/obj/item/spear,/turf/open/floor/plating,/area/maintenance/department/engine) +"nWP" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/engine) +"nYb" = (/obj/structure/table_frame/wood,/turf/open/floor/wood,/area/maintenance/department/engine) +"nYn" = (/obj/structure/sign/warning/docking,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"nZw" = (/obj/machinery/door/airlock/abandoned{name = "Backup Laboratory"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"obj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"obP" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plating,/area/maintenance/department/science) +"odM" = (/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"oep" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ofN" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ofX" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ohR" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/engine) +"olc" = (/obj/machinery/door/airlock/maintenance{name = "Bedroom"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"onX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) +"ooh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/wrench/medical,/turf/open/floor/engine,/area/medical/chemistry) +"opz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"ore" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/engine/engineering) +"ost" = (/obj/structure/table/glass,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/stripes/corner,/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) +"ous" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_y = -24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) +"ouv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"ovB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"ovM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Port Fore"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"owS" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"oxw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"oyF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary) +"ozO" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"oAw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/engine/engineering) +"oAW" = (/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"oBb" = (/obj/structure/sign/warning/biohazard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) +"oCn" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet,/area/lawoffice) +"oCX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"oDP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"oEA" = (/turf/closed/wall,/area/construction/mining/aux_base) +"oEG" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/item/shard{icon_state = "medium"},/obj/item/circuitboard/computer/operating,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"oEW" = (/obj/machinery/button/door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/button/ignition{id = "xenoigniter"; pixel_y = 7},/turf/open/floor/plasteel,/area/science/xenobiology) +"oFf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"oFo" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/emergency/starboard) +"oFI" = (/obj/structure/closet,/obj/effect/decal/cleanable/blood/old,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"oGw" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal/incinerator) +"oHa" = (/obj/machinery/power/emitter/anchored{dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) +"oKa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"oKv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) +"oKJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) +"oLR" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) +"oMN" = (/turf/open/floor/plasteel/stairs/left,/area/maintenance/department/crew_quarters/dorms) +"oNE" = (/obj/structure/chair/office/light,/obj/structure/sign/warning/deathsposal{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"oPx" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"oPy" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock) +"oQm" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "commonmining_home"; name = "SS13: Common Mining Dock"; roundstart_template = /datum/map_template/shuttle/mining_common/meta; width = 7},/turf/open/space/basic,/area/space) +"oRX" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) +"oSc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"oSL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"oTl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"oTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"oTC" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"oUa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"oWu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"oWw" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"oXe" = (/obj/structure/table/glass,/obj/item/mmi,/obj/item/clothing/mask/balaclava,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"oXq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Cooling Loop Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"oYj" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"oZW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"paU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating/airless,/area/engine/engineering) +"pbm" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/chapel/dock) +"pbI" = (/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/explab) +"pbR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"pdq" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"pdW" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/explab) +"peE" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) +"pfz" = (/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/security/execution/transfer) +"pfB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"pfP" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/machinery/camera{c_tag = "Xenobiology Computers"; dir = 4; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/xenobiology) +"pgH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"phJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"phS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"pia" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/rack,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"pjH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"pkM" = (/obj/machinery/door/airlock/external{req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/office) +"plA" = (/obj/structure/musician/piano,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"pmB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"pnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"poP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"pps" = (/turf/closed/wall,/area/engine/break_room) +"ppQ" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"pqP" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) +"prQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/engine/supermatter) +"psd" = (/obj/machinery/atmospherics/components/binary/pump{name = "Gas to Filter"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"puw" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter) +"pvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"pwj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"pwS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"pxD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) +"pzF" = (/mob/living/simple_animal/opossum,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"pBD" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) +"pBJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"pCo" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) +"pDP" = (/obj/machinery/vending/assist,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"pEH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"pEL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/lawoffice) +"pFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"pFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"pGe" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"pHo" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"pKd" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) +"pMG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"pNy" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Toxins Launch Area"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"pOr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"pQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"pVD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) +"pWm" = (/obj/machinery/door/window/southleft{dir = 4; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"pWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) +"pWT" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"pXc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/library) +"pXg" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/extinguisher,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"pXT" = (/obj/item/kirbyplants,/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 8; name = "Law Office APC"; pixel_x = -24},/obj/structure/cable,/turf/open/floor/wood,/area/lawoffice) +"pYh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/engine/engineering) +"pYw" = (/obj/item/kirbyplants{icon_state = "plant-03"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/dark,/area/science/lab) +"pYC" = (/obj/structure/sign/warning{pixel_y = -32},/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"qar" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"qbp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"qbZ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/storage/emergency/starboard) +"qcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qcH" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qdi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Containment Pen Access"; req_access_txt = "55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"qdj" = (/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"qeY" = (/turf/closed/wall/r_wall,/area/engine/supermatter) +"qhE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"qjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"qkM" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) +"qni" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/surgery) +"qnT" = (/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/department/science) +"qpd" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"qpS" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"qtA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"qtF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qtO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"qxq" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Air Out"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"qyF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"qAM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/cargo) +"qBv" = (/obj/item/clothing/head/ushanka,/turf/open/floor/plating,/area/maintenance/department/engine) +"qDJ" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/debugger,/obj/structure/sign/warning/securearea{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"qEN" = (/obj/machinery/rnd/production/techfab/department/service,/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/crew_quarters/bar) +"qFu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"qGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"qGZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"qHI" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"qIC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"qIO" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/science) +"qLI" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"qMi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/turf/open/floor/plating,/area/security/execution/transfer) +"qOE" = (/turf/open/floor/plasteel/dark,/area/library/lounge) +"qOH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"qPB" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"qRl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"qRm" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) +"qTV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"qUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"qVk" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/space/basic,/area/maintenance/disposal/incinerator) +"qVP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qWo" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel/monastery) +"qWG" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/engine/engineering) +"qWM" = (/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"qXq" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"qXH" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"qYi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"qYq" = (/obj/structure/cable{icon_state = "2-4"},/obj/item/wrench,/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/dark,/area/science/xenobiology) +"qYS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"rar" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"rdB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"reH" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/maintenance/department/engine) +"reV" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/engine) +"rgn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"rgs" = (/obj/structure/table,/obj/item/instrument/eguitar,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"rhr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) +"riF" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"riW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"rjF" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"rmC" = (/turf/open/space/basic,/area/space/station_ruins) +"rnr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating/airless,/area/space/nearstation) +"rnE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"roc" = (/obj/structure/cable,/turf/open/floor/plating/airless,/area/space/nearstation) +"ros" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"rrb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"rrU" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"rse" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"rsZ" = (/obj/machinery/camera/motion{c_tag = "Telecomms External Access"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"rui" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/science) +"rvH" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; dir = 4; freq = 1400; location = "Medbay"},/obj/machinery/door/window/southleft{dir = 4; name = "Medbay Delivery"; req_access_txt = "28"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"rxa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"rxQ" = (/obj/machinery/door/airlock/abandoned{id_tag = "PottySci"; name = "Science Bathroom"},/turf/open/floor/plating,/area/maintenance/department/science) +"rxV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"rzp" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"rzF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"rBh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"rEh" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs/cable/zipties,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/department/science) +"rFq" = (/obj/structure/chair,/obj/item/reagent_containers/food/snacks/donkpocket,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"rHA" = (/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"rJg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"rJZ" = (/obj/docking_port/stationary{area_type = /area/construction/mining/aux_base; dheight = 4; dwidth = 4; height = 9; id = "aux_base_zone"; name = "aux base zone"; roundstart_template = /datum/map_template/shuttle/aux_base/small; width = 9},/turf/open/floor/plating,/area/construction/mining/aux_base) +"rKr" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) +"rKL" = (/obj/item/trash/cheesie,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"rLi" = (/obj/machinery/button/door{id = "shootshut"; name = "shutters control"; pixel_x = 28},/obj/item/ammo_casing/shotgun/improvised,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"rMV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"rNi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/open/floor/plasteel,/area/engine/atmos) +"rNB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/science) +"rPg" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"rPW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/mixing) +"rSH" = (/obj/item/trash/can,/turf/open/floor/wood,/area/maintenance/department/engine) +"rTd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"rWE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"rXT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"rYC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"sbk" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"sbY" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/lawoffice) +"sci" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/science) +"scp" = (/obj/machinery/door/airlock/maintenance{name = "Auxillary Base Maintenance"; req_access_txt = "12"; req_one_access_txt = "32;47;48"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/mining/aux_base) +"scz" = (/obj/machinery/power/apc/highcap/fifteen_k{dir = 8; name = "Engineering APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"sdk" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory External"; dir = 1},/turf/open/space,/area/space/nearstation) +"sgc" = (/obj/machinery/vending/cigarette,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"shH" = (/turf/closed/wall/r_wall,/area/space/nearstation) +"sij" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"sjC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/engine/engineering) +"skw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) +"slJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"smv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Cooling Loop to Gas"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"spz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"sqh" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = 32},/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"sqQ" = (/turf/open/floor/plating,/area/maintenance/disposal) +"srZ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) +"ssx" = (/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/engine) +"stQ" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/departments/science{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"sut" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"svA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) +"svN" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"swg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"sww" = (/obj/effect/decal/cleanable/blood/old,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"syn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) +"syQ" = (/obj/machinery/vending/games,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"szG" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) +"sAK" = (/obj/item/clothing/mask/gas/plaguedoctor,/turf/open/floor/plating,/area/maintenance/department/science) +"sBA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"sEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/science) +"sEN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"sGr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"sIK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/flashlight,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"sJp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/execution/transfer) +"sJr" = (/turf/open/floor/wood,/area/lawoffice) +"sKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"sNz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"sOC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/execution/transfer) +"sQt" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) +"sUP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"sWj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"sWW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) +"sXi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/deathsposal{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/department/engine) +"sXR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) +"sYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"sZh" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/disposal) +"sZu" = (/obj/item/storage/backpack/satchel/explorer,/turf/open/floor/plating,/area/maintenance/department/science) +"tan" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"tap" = (/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"taA" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"taT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4; name = "euthanization chamber freezer"},/turf/open/floor/plasteel,/area/science/xenobiology) +"tcY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) +"tdp" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/hand_labeler,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/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/explab) +"tdB" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"tdL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"tfw" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating/airless,/area/space/nearstation) +"tfx" = (/obj/machinery/atmospherics/components/binary/valve{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) +"tfP" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) +"tfZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) +"thA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"thW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"tim" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/science/explab) +"tix" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"tkL" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"tlc" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"tlp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"tlw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"tlN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"tlV" = (/obj/structure/reflector/single/anchored{dir = 6},/turf/open/floor/plating,/area/engine/engineering) +"tnP" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"tnY" = (/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = -26; req_one_access_txt = "32;47;48"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"tpb" = (/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"tqO" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"tqX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"ttS" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/mob/living/simple_animal/pet/bumbles,/turf/open/floor/plasteel,/area/hydroponics) +"tue" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"tuy" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 8; network = list("xeno","rd")},/obj/machinery/light{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"tvj" = (/obj/structure/festivus{anchored = 1; desc = "A pole for dancing."; name = "pole"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"tvP" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"twv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"typ" = (/obj/structure/table/glass,/obj/item/hemostat,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"tyL" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"tzH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) +"tAK" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/explab) +"tCP" = (/obj/docking_port/stationary/public_mining_dock,/turf/open/floor/plating,/area/construction/mining/aux_base) +"tDn" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/cargo) +"tHk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/central) +"tIS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"tJr" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plasteel,/area/science/lab) +"tLP" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/warehouse) +"tOD" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"tRc" = (/obj/structure/ore_box,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"tSL" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"tTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"tTZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"tXn" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/corner{dir = 8},/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/xenobiology) +"uaC" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"uaE" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"uaO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"uaP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ubW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/science/mixing) +"udl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"uek" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/science) +"ueP" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"ueV" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"ueX" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) +"ufa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ugC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"uiP" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/wood,/area/maintenance/department/engine) +"ujI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ukn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) +"ukp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Gas"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ulu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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/storage/primary) +"ulY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"ume" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"uoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) +"uos" = (/obj/machinery/computer/camera_advanced/base_construction,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"uoS" = (/turf/open/floor/plating,/area/construction/mining/aux_base) +"upc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"uqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) +"urP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/explab) +"utg" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"uug" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"uun" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) +"uuS" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/lawoffice) +"uvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"uvq" = (/obj/structure/table,/obj/item/dice/d20,/turf/open/floor/plating,/area/maintenance/department/science) +"uwb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"uwX" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/maintenance/department/engine) +"uxP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair{dir = 8; name = "Defense"},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"uzh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/engine,/area/engine/supermatter) +"uzn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"uAU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/lawoffice) +"uAZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Experimentation Lab Mixing Area"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) +"uCS" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"uHG" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"uIn" = (/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"uIB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"uLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"uMe" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"uMo" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel,/area/engine/engineering) +"uMt" = (/obj/effect/turf_decal/plaque,/turf/open/floor/plating,/area/maintenance/department/engine) +"uQR" = (/obj/item/ammo_casing/shotgun/beanbag,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"uRk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"uUQ" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"uVf" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/fountain,/obj/item/stamp/law,/turf/open/floor/carpet,/area/lawoffice) +"uXG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"uXH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"uZb" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"vay" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"vco" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"veF" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space) +"veM" = (/obj/machinery/suit_storage_unit/rd,/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"vgp" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"vhk" = (/obj/structure/chair,/turf/open/floor/carpet,/area/lawoffice) +"vjd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vli" = (/obj/structure/table,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"vlC" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vlF" = (/obj/item/coin/silver,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"vmG" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/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},/turf/open/floor/plasteel/dark,/area/science/explab) +"vmY" = (/obj/structure/sign/warning/deathsposal{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"voh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"vsk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"vsw" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 8; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"vsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"vtl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"vtT" = (/turf/open/floor/plating,/area/maintenance/solars/port) +"vuP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) +"vuQ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/department/science) +"vxp" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced,/obj/item/assembly/mousetrap,/turf/open/floor/engine,/area/science/explab) +"vxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vzz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"vzA" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"vzP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"vzT" = (/obj/structure/table,/obj/item/stack/rods{amount = 5; layer = 3.3},/obj/effect/spawner/lootdrop/maintenance,/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"vAq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vBE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vCC" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"vHf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/science) +"vIc" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vKq" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"vMx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"vOw" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) +"vRi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"vRm" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow{pixel_x = -1; pixel_y = 3},/obj/item/clothing/gloves/color/yellow,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Port Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vTL" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"vTN" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) +"vVO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vYN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"wbB" = (/obj/machinery/atmospherics/components/binary/pump{name = "External Gas to Loop"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"wbF" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/camera{c_tag = "Engineering Starboard Aft"; dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"wcs" = (/turf/open/floor/plasteel/dark,/area/engine/engineering) +"wdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) +"weL" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) +"wfc" = (/obj/structure/ore_box,/turf/open/floor/plating,/area/maintenance/department/science) +"wfs" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/science/xenobiology) +"wfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) +"wfO" = (/mob/living/simple_animal/hostile/retaliate/poison/snake,/turf/open/floor/plating,/area/maintenance/department/engine) +"wfP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"wig" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wiB" = (/obj/item/shard{icon_state = "small"},/obj/item/stack/cable_coil/red,/turf/open/floor/plating,/area/maintenance/department/engine) +"wjm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"wjQ" = (/obj/machinery/computer/shuttle/mining/common{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"wkZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/shower{dir = 4; name = "emergency shower"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"wlK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"wnJ" = (/obj/structure/sign/warning,/turf/closed/wall,/area/science/mixing) +"woq" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wqu" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"wrU" = (/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/wood,/area/lawoffice) +"wtE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"wun" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"wwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"wwG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wxb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wxJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/turf/open/floor/plasteel/dark,/area/security/brig) +"wzb" = (/obj/structure/chair,/turf/open/floor/wood,/area/maintenance/department/engine) +"wAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) +"wBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"wBg" = (/obj/machinery/door/airlock/maintenance{id_tag = "Potty1"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"wDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) +"wDm" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wDZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"wEn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"wFT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) +"wIo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"wIv" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Engineering Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"wKa" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"wLo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"wMF" = (/obj/effect/spawner/lootdrop/three_course_meal,/obj/effect/spawner/lootdrop/three_course_meal,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"wMM" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"wMX" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/supermatter) +"wNq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"wOa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"wOf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"wOS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/science/mixing) +"wQU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"wRk" = (/obj/structure/rack,/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"wRz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wRI" = (/obj/machinery/power/apc{dir = 1; name = "Brig Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wTD" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/carpet,/area/lawoffice) +"wTO" = (/obj/structure/frame/computer,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"wUf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"wUz" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"wVC" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci"; location = "Bar1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"wXu" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"wYu" = (/obj/machinery/door/poddoor/shutters{id = "shootshut"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wYK" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine,/area/engine/supermatter) +"xah" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"xaO" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"xaQ" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"xbJ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"xee" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"xer" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"xeB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) +"xgh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"xgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"xhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"xhE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"xhI" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) +"xja" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/library) +"xjc" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/library) +"xje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"xjg" = (/mob/living/simple_animal/hostile/retaliate/goose,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"xjK" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/structure/rack,/obj/item/taperecorder,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"xjT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xlg" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/turf/open/floor/plating,/area/maintenance/department/science) +"xlA" = (/obj/machinery/door/airlock/maintenance/abandoned,/turf/open/floor/plating,/area/maintenance/department/science) +"xmp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"xmE" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"xnm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) +"xnP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"xpr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"xsO" = (/obj/item/ectoplasm,/turf/open/floor/plating,/area/maintenance/department/science) +"xuv" = (/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/solars/port) +"xvO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"xxw" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xxO" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"xxS" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"xyl" = (/obj/structure/table,/obj/item/assembly/timer,/turf/open/floor/plating,/area/maintenance/department/cargo) +"xyB" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"xzp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xzR" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"xCV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"xDj" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"xEx" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"xFl" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/tcommsat/server"; dir = 1; layer = 4; name = "Telecomms Server APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"xGc" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space/station_ruins) +"xIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) +"xJy" = (/obj/structure/chair/comfy/black,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the Third University of Harvard."; name = "\improper 'Diploma' frame"; pixel_y = 32},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/lawoffice) +"xKc" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/xenobiology) +"xLi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"xLC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/lawoffice) +"xNx" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction/flip,/turf/open/space/basic,/area/space/nearstation) +"xNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"xOC" = (/obj/machinery/door/airlock/external{name = "Construction Zone"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/construction/mining/aux_base) +"xPa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/engine,/area/science/explab) +"xQc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"xQk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"xSd" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"xSX" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/chapel/office) +"xSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"xVt" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"xWl" = (/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel,/area/science/xenobiology) +"xYV" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"ybX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"ycr" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ycx" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) +"ydf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"yfO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"ygZ" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"ymb" = (/obj/machinery/camera{c_tag = "Engineering Telecomms Access"; dir = 8; network = list("tcomms")},/obj/machinery/light{dir = 4},/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) (1,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(2,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(3,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(4,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(5,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(6,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(7,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(8,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(9,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(10,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(11,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(12,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(13,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(14,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(15,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(16,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(17,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(18,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(19,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(20,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(21,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(22,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(23,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(24,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(25,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aoH -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(26,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aoI -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(27,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aoI -azG -aoI -aoI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(28,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aaa -azH -aaa -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(29,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(30,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azI -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(31,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azJ -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(32,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(33,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(34,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(35,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(36,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(37,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(38,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(39,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(40,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(41,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoJ -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(42,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(43,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -cBM -bZY -bZY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -fIT -cfH -fIT -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(44,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -csn -ceF -csY -bZY -bZY -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -fIT -cfI -fIT -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(45,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBM -csd -csd -csB -csd -csd -cBM -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -fIT -cjC -fIT -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(46,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -aaa -azL -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aoI -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -bZY -bZY -cse -cso -csC -cdp -kDf -bZY -bZY -cfN -cfN -cfN -cfN -cfN -cfN -cfN -bWV -bWV -fIT -cfJ -fIT -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(47,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -bZY -bZY -bZY -bZY -jsD -csd -csp -csp -csp -csd -dpb -bZY -bZY -cfN -cfN -cfN -cfN -cfN -cfN -bWV -ciJ -cjf -bXJ -cjZ -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(48,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -crt -crD -bZY -xSX -csi -owS -csE -rrU -ctr -cdo -ctX -bWV -bWV -bWV -bWV -bWV -bWV -bWV -bWV -ciK -cjg -cjk -cka -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(49,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -crb -crg -cru -crE -ceh -crT -csf -pFe -hYe -kwm -ctr -cdo -kfM -bWV -cuk -cus -cuG -bWV -chC -chV -bWV -bWV -cvq -ceP -bWV -bWV -bWV -bWV -cwM -bIT -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(50,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -bZY -ceC -crv -crF -nku -ceE -csg -csq -csE -cta -ctr -cdo -lzJ -bWV -cgb -cut -cuH -chb -chD -chW -bWV -bWV -cgf -cvA -bWV -cwj -cww -bWV -fIT -fIT -cxg -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(51,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abN -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -bZY -crh -crv -crG -bZY -crU -csh -csr -csF -ctb -ctt -ctJ -bZY -bWV -cul -chB -cuI -chc -cuZ -chX -bWV -ciz -cvr -ceP -cvR -bXJ -bXJ -crj -cwO -fIT -cxh -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(52,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bVp -cfN -cfN -bZY -bZY -bZY -bZY -bZY -bZY -lAf -css -csG -cta -ctu -bZY -bZY -bWV -cum -cgd -cuJ -chd -chE -chY -bWV -ciz -cvs -cvB -cvS -cdw -cjj -bXJ -bXJ -fIT -fIT -cxg -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(53,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -cfN -cfN -cfN -cfN -bZY -giI -pkM -crv -css -csG -cta -gKz -bZY -cfN -bWV -cfC -cuu -chU -cuR -ciy -chZ -bWV -ciz -ckb -cku -cvT -bZo -cwx -cwE -ckv -ckM -clb -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(54,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -cfN -cfN -cfN -bOw -bZY -pkM -bZY -bZY -cfk -tan -cte -bZY -bZY -cfN -bWV -bWV -cgf -bWV -cuS -bWV -bWV -bWV -ciz -ckb -cku -cvT -cwk -cwy -cwF -ckw -ckN -clb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(55,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aed -aby -aht -aby -aby -aby -aht -aby -aby -aby -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -bOw -cfN -bOw -bOw -bOw -bQg -bOw -ccu -cbG -cef -ceB -cfN -cfN -cfN -bWV -cdr -cuv -bXJ -ceP -crj -ciN -bWV -ciz -ckc -cvC -cvV -ceQ -ciA -bXJ -bXJ -fIT -fIT -cxg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(56,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -cqU -bNs -bUC -bOw -bOw -bOw -bOw -bOw -bQg -bUC -bOw -cbG -csM -ceB -cfN -cfN -cfN -bWV -cdC -cuw -cbK -ctg -ciA -cvd -bWV -ciz -cvt -ceP -crk -bXJ -bXJ -cwG -cwO -fIT -cxk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(57,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -ait -ait -ait -aiu -aiu -ait -ait -ait -aiu -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -bOv -bNs -bNs -bWh -bQg -bQg -bQg -bQg -bQg -bQg -bOw -bOw -cbG -cee -ceB -cfN -cfN -cfN -bWV -cdC -cux -cbK -ceP -cdC -ciO -bWV -bWV -cgf -cjl -bWV -cwl -cwz -bWV -fIT -fIT -cxg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(58,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -fIN -wwG -gGy -wYu -uQR -uaE -pdq -ajD -dci -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -bGD -bQQ -bNs -bNs -bQe -bQg -bOw -bOw -bOw -bOw -bOw -bSm -bOw -bUC -cbG -cef -ceB -cfN -cfN -cfN -bWV -bXJ -cuy -cuK -ceP -bXJ -cve -bWV -bXJ -ckd -ceP -bWV -bWV -bWV -bWV -cwR -cwR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cyM -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(59,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -oFf -ycr -wDm -wYu -ajD -ajD -ajD -ajD -mwg -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aby -aby -aby -aby -aaa -bNr -bNs -bNs -bNs -bOw -bOw -bQg -bOw -bOw -bOw -bOw -bQe -bWV -bWV -bWV -cdq -ceg -chJ -cfm -cfm -cfm -cfm -cfm -chF -cfm -cuU -cfm -cfm -cfm -cjH -chF -cuQ -cvX -cke -cky -cld -cCR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aht -aaa -aaa -aaa -cfN -cyM -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(60,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -lcU -sGr -hiw -wYu -ajD -jsf -ajD -rLi -tlc -aiu -aht -axB -rKr -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -bOv -bGD -bOv -bQQ -bNs -bNs -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bWV -bWV -bWV -bXJ -bYz -cdr -csN -ctg -ctx -ctK -ciD -cfD -chf -cuz -ciD -cuV -ciD -cfD -chf -cfD -cvu -cvE -cvY -ckf -ckf -cle -cjm -cjm -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cyM -cfN -cyM -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(61,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiu -kJw -aiu -aiu -aiu -aiu -cHS -aiu -aiu -aiu -axC -axB -azN -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aed -abI -bNr -bNs -bNs -bNs -bNs -bNs -bSm -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bUC -bWV -cdC -caT -cbK -bWV -cds -csO -ceH -cfl -ctL -cgg -cfE -cfE -cfp -cfE -cuW -cfE -cfE -cfE -cfE -cfo -cvF -cvZ -cwm -ckj -cwH -ckO -cjm -cfN -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aht -aaa -aht -aaa -aht -aht -aht -aht -aht -aht -aaa -cfN -cfN -cyM -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(62,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aiu -gwn -aiu -apz -aqe -aoK -dcL -apB -aiu -tpb -axC -ayz -azN -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHI -aby -aby -aby -bGH -bNs -bNs -bOw -bQc -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bQg -bOw -bWV -bWV -bWV -bYz -bWV -bWV -bWV -bWV -cei -bWV -cfm -ceJ -cfn -bWV -cgG -cgG -bWV -cuX -bWV -cgG -cgG -bWV -cfn -ciR -cwa -cwn -ckg -ckz -ckP -cjm -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aht -cfN -cfN -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(63,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -ait -ait -aiu -aiu -aht -aht -aiu -wRI -ajD -ajD -ajD -aoK -aBa -xyB -aiu -aAa -axC -axB -hzd -axB -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGD -bGD -bIT -bJZ -bIT -bMr -bNs -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bWV -crj -bXJ -bXJ -crK -cdr -cdw -csv -csN -bWV -cfm -cfF -cfn -cgG -chi -cid -cuM -chj -cvb -ciT -cvh -cgG -cfn -cvF -cwa -cwo -ckh -ckA -ckP -cjm -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyU -cjp -cyU -cjp -cjp -cyU -cjp -cyU -cjp -cyU -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(64,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -aiV -ajB -akr -aiu -ait -ait -aiu -lMU -apB -woq -lXc -nPA -egK -aBa -aiu -azZ -axC -ayA -azP -aAW -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGE -bGE -bIU -bHM -bHM -bHM -bHM -bNw -bOw -bQd -bOw -bQd -bOw -bQd -bOw -bQd -bQg -bQd -bWV -bWV -bXJ -bZl -bYA -bZl -bYA -cbP -cdu -csQ -ceK -cfm -cfG -cfn -cgG -cid -cuA -cib -cgH -cgH -ciS -cid -cgG -cfn -cvH -cwc -cwp -cki -ckB -ckP -cjm -caS -caS -caS -caS -aht -aht -aht -aht -cjp -cjp -ckH -cyY -ckH -ckH -ckH -ckH -czH -ckH -cyR -cyU -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(65,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -aiW -ajC -ajD -ali -ajD -ajD -anq -aoe -aiu -apB -aiu -aiu -aiu -aoK -aiu -azY -axC -ayB -azQ -aAX -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bFE -bGF -bHJ -pbm -bKa -cqH -bLn -bNt -bNw -bNw -bQe -bOw -bOw -bOw -bQe -bOw -bOw -bQg -bQe -bWV -bXJ -bXJ -bZm -bYB -crL -caV -cbM -ccH -csQ -ceL -cfm -ctM -cfn -bWV -cun -cuB -cic -cgH -chG -ciT -cjo -bWV -cvw -cvI -ckQ -clf -cwA -cwA -cwS -cjm -cfN -caS -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cCW -ckH -cyZ -ckH -czl -czr -czr -czI -ckH -ckH -cjp -cjp -cyU -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(66,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiX -ajD -aks -aiu -ait -ait -aiu -hOx -aDm -aDm -aDm -aoL -aso -aso -rrb -oPx -axC -ayC -azR -aAY -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aTH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGE -bHK -bIV -bKb -bLo -bMs -bNu -bOx -bPn -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bWW -bXI -bZn -bZn -bZn -bZn -bZn -bZn -cbN -ccE -cdw -cej -ceM -cfo -cgG -cgk -cuA -ciS -chk -cgH -cgH -cvi -cgG -cfn -ciR -cwa -cjO -ckk -ckC -ckR -cjm -cfN -caS -caS -aht -aht -aht -aht -aht -cjp -ckW -ckH -ckH -ckH -czl -czr -czB -czI -czV -ckH -cAr -cAB -cyU -cjp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(67,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -aht -ait -aiY -ajE -akt -aiu -aaa -aaa -aiu -aCg -aiu -aiu -aiu -wRz -aiu -aiu -aiu -syn -axC -axC -azS -axC -axC -aiu -aiu -aiu -ait -ait -aiu -aaa -aaa -aaa -aHA -aKy -xee -aKy -aHA -aaa -aaa -aaa -aHA -aKy -xee -qIC -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGG -bHL -bIW -bKc -bOy -bMt -bLs -bMy -bPo -bWX -bWX -bWX -bWX -bWX -bWX -bWX -bWX -bWX -cek -cdx -dpc -dpc -dpc -dpc -dpc -dpc -cbO -ccF -cdx -cek -ceN -cfn -cgG -cuo -ciV -cgI -chl -cib -cvg -cid -cgG -cfn -ciR -cwe -cwe -cwe -cwe -cwe -cwe -cwe -cwe -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyP -ckH -cyZ -ckH -czl -czt -czC -czI -czW -cAg -cAs -ckH -cAH -cjp -cyU -aaa -aaa -aaa -aaa -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(68,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -aht -aht -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aCg -aiu -aqg -gjN -arc -atp -aus -aiu -wxb -axC -xuv -azN -vtT -vtT -aiu -apB -aiu -aBa -oTC -ait -aaa -abN -aaa -aHA -aKz -aHA -aKz -aHA -abI -aht -abI -aHA -aKz -aHA -aKz -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGH -bGE -bIX -bKd -bLp -bMu -bNv -bNw -bNw -bQe -bOw -bOw -bOw -bQe -bOw -bOw -bQg -bQe -bWV -bXJ -bXJ -bZl -bYA -crM -caW -cbP -cdu -ceP -cth -cfm -ctN -cfn -bWV -cup -cuE -cgK -cgJ -cgH -cgj -cvj -bWV -cfn -cvJ -cwe -cjP -ckl -ckD -ckS -clg -clk -cwe -cwe -cxB -cxJ -cxJ -cxJ -cyy -cjp -cyQ -ckH -ckH -ckH -ckH -ckH -ckH -ckH -czW -cAg -cAt -ckH -czW -cAS -cyU -aht -aht -aht -cyM -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(69,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afU -afU -pfz -uqJ -afU -afU -ajF -aku -alj -alT -skw -anr -aof -aiu -aqh -lqc -aoe -atq -aut -aiu -giO -aDm -kJo -fAx -aDm -aDm -aDm -aDm -aDm -mLB -wUz -ait -aht -aht -aht -aHA -dqG -aHA -aKz -aHA -abI -aaa -abI -aHA -aKz -aHA -wKa -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bHM -bHM -bNw -bLq -bMv -bNw -bNw -bOw -bQd -bOw -bQd -bOw -bQd -bOw -bQd -bQg -bWi -bWV -bWV -bXJ -bZm -bYB -bZm -bYB -cbM -ccH -ceP -ceK -cfm -cfG -cfn -cgG -ciV -cgH -cgH -cgH -cic -ciV -cjq -cgG -cfn -ckE -ckT -xhj -xhj -cwK -odM -xhj -cxn -xhj -lqy -cxC -cxK -cxX -cyl -cyz -jgr -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -czL -czY -cAi -cAu -cAC -cAJ -cAT -cyU -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(70,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -agi -agi -agi -afU -hwj -ahu -ahS -oXe -afU -ajG -akv -alk -alU -amH -ans -ePU -aiu -aqi -ard -asr -atp -auu -aiu -ekU -aiu -asr -tyL -ajD -nPA -mtu -aCc -aiu -wxb -wig -ait -aaa -aaa -aaa -aHA -wqu -aHA -wqu -aHA -abI -aht -abI -aHA -wqu -aHA -wqu -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -btK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHN -bGE -bKe -bLr -bMw -bNx -bNw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bWV -crk -bXJ -bXJ -crN -crX -cdx -cgn -csS -bWV -cfm -ctO -cfn -cgG -cgm -cuE -cuO -cgH -ciE -ciW -cjr -cgG -cvw -cvK -cwg -cjR -jFO -ckF -jFO -cxe -jFO -jFO -cxz -cxD -cxL -cxY -cym -cyA -vOw -ijF -pXc -ckm -ckm -ckm -ckm -ckm -czM -czZ -cAj -cAv -cAD -cAK -cAU -cyU -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(71,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -szG -sOC -iCV -msX -dVI -ahv -ahT -aiv -afU -ajG -akw -all -alV -tfZ -vCC -lHc -aiu -aiu -aiu -ait -ait -aiu -aiu -aiu -aiu -ait -ait -aiu -aiu -aiu -aiu -aiu -aCg -aiu -aiu -aiu -aiu -aHz -xee -aKB -nYn -aKB -xee -aHA -aHA -aHA -xee -aKB -nYn -fTY -xee -aYG -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bsl -btL -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aqG -bGE -cqW -bKf -bMw -bNy -bNw -bOw -bQh -bOw -bOw -bOw -bSm -bOw -bOw -bQg -bOw -bOw -bWV -bWV -crx -crH -bWV -crY -csk -bWV -cbR -bWV -cfm -ceP -cfn -bWV -cgG -cgG -bWV -cuY -bWV -cgG -cgG -bWV -cfn -ceP -cwe -cwr -clm -ckG -cwU -jXh -ckU -cwe -cwe -cxE -cxM -cxM -cxM -cyB -cjp -cyR -ick -ckH -ckH -ckH -ckH -ckH -ckH -cAa -cAg -cAt -ckH -cAa -cAV -cyU -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(72,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -lem -mzl -sJp -qMi -iPU -ahw -ahU -aiw -afU -ajH -ajH -ajH -ajH -ajH -ant -aiu -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aCd -hHr -hHr -aCg -ezF -aod -aqg -aiu -iab -aKA -aOk -aJE -aWE -aWE -wwr -hwd -wwr -aOk -aOk -aJE -aWE -aWK -aYG -aZy -baJ -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bcX -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -aqG -bGE -izF -ros -bMx -bNz -bHM -bNs -bNs -bNs -bNs -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bWV -bWV -bWV -bWV -bWV -bWV -bWV -ccJ -cdw -cel -ceM -cfp -cfE -cfE -chn -cfE -cdw -cfE -chn -cfE -cfE -cvy -cfG -cwe -cwe -fWv -qOE -ckV -qOE -cln -cwe -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyS -ick -cyZ -ckH -czo -czu -czD -czN -cAa -cAg -cAs -ckH -cAM -cjp -cyU -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(73,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -agj -agv -agF -agT -ahj -ahx -ahV -aix -aiZ -ajH -akx -alm -alW -amI -anu -aog -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -nyO -ezJ -ujI -dgI -ujI -ujI -iJi -aiu -xaQ -fmU -wOa -qUw -xSZ -wOa -aQv -eAp -aJE -ftW -coN -kvj -ftW -ppQ -aYG -aZy -baK -jzz -aZx -jzz -aaa -aaa -aaa -aaa -aaa -aaa -jzz -aZx -jzz -bsl -btM -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aqG -bGE -bGE -bHM -bHM -bNA -bHM -bSZ -bQi -bQR -bNs -bNs -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bOw -bOw -bOw -bUC -bOw -bQg -cbR -bXJ -cdA -ctx -ctP -cdx -cdx -cgn -cho -cuP -cdx -cvc -cho -cvk -cdx -kXx -csS -cfm -cwe -fWv -qOE -mKc -qOE -cln -cwe -caS -aht -aht -aht -aht -aht -cjp -cko -ick -ckH -ckH -clp -czv -czv -czO -cli -ckH -cAy -cAB -cyU -cjp -aht -aht -aht -cyM -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(74,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -afU -agw -afU -afU -ahk -ahy -ahW -aiy -aja -ajI -aky -aln -alX -amJ -anv -aoh -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -awE -qGu -eOZ -kQZ -nih -kxs -qGu -aiu -rgs -jeq -pGe -aQt -aOf -xLi -aQr -aQr -aQr -oLR -pGe -aQt -aOf -aWK -aYG -aZy -baK -bbQ -bcX -bdV -aaa -aaa -aaa -aaa -aaa -aaa -bbQ -bcX -bdV -baK -bon -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIY -bIY -aht -aht -bNB -abI -abI -aby -abI -bRC -bNs -bNs -bNs -bOw -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -cbR -bXJ -cdB -cfm -cfm -cfH -cfm -cfm -chp -cuQ -cfm -cfm -ciF -cuQ -cfm -cfm -jSa -cfm -cwe -ckp -ckI -ckX -ckI -cln -cwe -cfN -cfN -aaa -aaa -aaa -aaa -cjp -cyT -ick -cyZ -ckH -czp -ckH -ckH -czP -ckH -ckH -cjp -cjp -cyU -aht -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(75,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aed -adR -abI -abI -abI -abI -abI -afX -agl -agx -agH -agV -ahl -ahz -ahX -aiz -ajb -ajH -akz -alo -alY -amK -anw -aoh -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiu -kFx -aiu -aiu -aiu -aiu -gKG -aiu -aJD -jeq -pGe -aQu -aOg -aWK -aRD -aSv -aTK -aML -pGe -aQu -aOf -duQ -aYG -aZz -baK -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -aZx -aZx -baK -bon -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aaa -aht -aby -aby -abI -bSn -uZb -cqS -bNs -bQe -bOw -bOw -bOw -bQg -bQg -bQg -bOw -bQe -bQg -bWV -csT -cen -bWV -ctQ -cfI -cfm -cgL -chq -chK -cfm -cio -chq -ciX -cfm -cfN -cwA -cfN -cwe -cwe -cwe -cwe -cwe -cwe -cwe -caS -caS -aht -aht -aht -aht -cjp -cjp -xjc -xja -ckH -czq -czw -ckH -czQ -ckH -cyR -cyU -aaa -aaa -aht -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(76,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aem -aem -aem -aem -aem -aiA -aiA -aiA -aiA -aiA -aiA -ahA -ahY -aiA -aiA -aiA -akA -alp -akA -akA -akA -aoi -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ebD -sbY -fuP -pXT -wrU -mpy -aiu -gue -aIC -pvK -aKD -gmO -aQt -aOh -aWK -aRE -aSw -aTL -aML -gmO -aQt -gpC -ppQ -aYG -aZA -baK -bbR -bcY -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkQ -bbR -baK -bon -aZx -aaa -aaa -aaa -aaa -oQm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -amB -aht -aht -aaa -aaa -abI -abI -abI -uZb -bNs -bNs -bNs -bUC -bOw -crl -bXL -bNs -bOw -bOw -bQg -bWV -csU -bWV -bWV -bWV -cfJ -cfm -cgM -chr -chL -cfm -cgM -chr -chL -cfm -cfN -xSd -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aht -cjp -cyU -cjp -cyU -cjp -cjp -cyU -cjp -cyU -cjp -cyU -aht -aht -aht -aht -cyM -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(77,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeo -aeC -aeT -afn -agy -afZ -agn -agy -agy -agy -agy -ahB -ahZ -aiB -ajc -ajM -akB -alq -alZ -amL -anx -aoj -aiu -aaa -aaa -aaa -aaa -aaa -aaa -avp -aaa -aaa -aaa -aaa -ebD -aCe -gPV -pEL -elk -mXq -aiu -jhk -aiu -gxq -aKE -pGe -aQu -aOg -aWK -aRF -aSx -aTM -aML -pGe -aQu -aOf -aWK -aYG -ovM -baL -baK -bcZ -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkR -baK -baL -bon -aZx -aaa -aaa -aaa -aZx -pqP -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aaa -aht -aaa -aaa -aaa -aaa -abI -aaa -veF -bQR -bNs -bNs -bNs -bNs -bXM -bNs -bOw -bOw -bQg -bOw -ccM -cdD -ceo -bOw -bQg -cfm -cgN -chs -chM -cfm -cip -chs -ciY -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -cfN -cfN -aaa -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(78,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aep -aeD -aeU -aeU -afC -aeU -aeU -agy -agI -agW -agA -ahC -aia -aiC -ajc -ajM -akC -alr -ama -amM -akA -akA -akA -apE -apE -ari -apE -bBW -apE -avq -apE -ajM -aiu -aiu -gSH -xJy -sJr -sJr -sJr -sJr -aiu -jhk -aiu -niy -aKE -pGe -aQt -aOf -aPo -nGi -nGi -nGi -aPn -pGe -aQt -aOf -aWK -aYG -aZA -baK -bbS -bda -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkS -bbS -baK -boo -aZx -aaa -aaa -aaa -aZx -bcX -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -amB -aht -aht -aht -aht -aht -aht -abI -abI -aht -abI -bSZ -bSZ -cre -bNs -bXN -bNs -bOw -bOw -bQg -bQg -bQg -bQg -bQg -bQg -cfL -cfm -cfm -cht -cfm -cfm -cfm -cht -cfm -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aht -aht -aht -aaa -aaa -aht -aht -aht -aaa -aht -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(79,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeq -aeE -aeU -afo -afD -aga -aga -agz -aie -aiH -ahm -ahD -aib -aiD -ajc -ajM -akD -als -amb -amN -ajM -aok -aoO -apF -apE -wxJ -apE -bBW -ajM -avr -awH -axE -ayE -aAb -ebD -jjC -eEp -vhk -gAG -kxj -aiu -oTp -aiu -aJF -aKG -gvf -kvj -aOk -aWE -aJE -aRC -aQs -aTJ -vsJ -aVN -cJo -ppQ -aYG -aZA -baM -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -aZx -aZx -bno -bon -aZx -aZx -aZx -aZx -aZx -qRm -aZx -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aht -aht -aht -aht -amD -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aht -aaa -aaa -abI -bGI -bNs -rzF -bNs -bOw -bOw -bUC -bOw -bOw -bQe -bOw -bUC -bQg -cfm -cgO -chu -chN -cfm -ciq -chu -ciZ -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aaa -aaa -aht -cfN -cfN -cyM -cfN -aht -aaa -aht -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(80,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aer -aeF -aeU -afp -afE -aeU -aeU -agy -agK -agY -agy -ahB -aic -aiE -agy -ajM -akE -alt -amc -amO -ajM -aol -aoP -apG -ajM -arj -ajM -ajM -akA -akA -akA -ajM -ayF -aAc -xLC -xeB -nSo -uuS -uAU -oCn -aiu -jhk -aiu -riF -xhE -ftW -aJE -coN -aPq -klB -klB -klB -hkQ -ftW -aJE -fwe -aWK -aYG -aZA -baN -bbQ -bcX -bdV -aaa -aaa -aaa -aaa -aaa -aaa -bbQ -bcX -bdV -bnp -baK -pEH -deJ -sIK -wjQ -pEH -bbR -aZx -aaa -aht -bBV -bDf -bDf -bDf -agS -agS -agS -agS -agS -ala -aht -aaa -aht -aht -aht -aht -aht -aht -aht -aht -abI -abI -abI -aaa -bSZ -ahi -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfN -cwA -cjm -cfN -cfN -cfN -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aht -aaa -cfN -cyM -cfN -cfN -cfN -cfN -cyM -cfN -cyM -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(81,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aes -aeG -aeV -afq -afF -agb -agb -agA -agA -agA -ahn -ahF -aic -aiF -ajd -ajJ -akF -alu -amd -amP -any -aom -aom -akF -aom -ark -asu -atv -aux -avs -awI -axF -ayL -aAd -ebD -aCf -hnu -jTu -wTD -uVf -aiu -jhk -aiu -aiu -aiu -sgc -nDx -gLF -aHz -eLt -aRB -aRB -aOs -fUA -aVM -xmp -aOs -aYG -aZA -baN -jzz -aZx -jzz -aaa -aaa -aaa -aaa -aaa -aaa -jzz -aZx -jzz -bnp -baK -baK -baK -baK -baK -baK -baK -aZx -aaa -bAI -abI -abI -aht -abI -aaa -bva -bIZ -bIZ -bva -bva -bIZ -bIZ -bva -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -abI -ahi -bSZ -crO -arF -arF -arF -arF -arF -crO -crO -crO -crO -crO -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -iXx -cjm -cfN -cfN -aaa -aaa -aaa -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -cyL -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(82,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aet -aeH -peE -afo -afG -aeU -eSB -agy -agL -agZ -aho -ahG -aid -aiG -aje -ajK -akG -alv -ame -amQ -anz -aon -aon -apH -aqm -aon -asv -atw -aon -avt -awJ -axG -ayG -pFy -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aHC -aIH -ofX -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -wEn -aPv -fBt -aHz -aYG -aZA -baN -bbR -bbR -aYG -aaa -aaa -bgS -aaa -aaa -aaa -aYG -bbR -bbR -bnp -baK -baK -baK -baK -baK -baK -baK -aZx -aZx -bAJ -bBX -bBX -bBX -bBX -bva -bva -bJa -bHQ -bLt -bHQ -bNF -bHQ -bva -bva -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -cdm -abI -aaa -bva -bva -bIZ -bIZ -bIZ -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -xYV -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(83,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeu -tnP -dYe -aeH -afH -aeH -aeH -agB -agM -aha -ahp -ahH -aie -aiH -ajf -ajL -akH -alw -amf -amR -anA -aoo -ana -aoo -aqn -arl -asw -atx -auz -avu -rjF -axG -ayH -aAe -aBc -aCh -eQZ -eQZ -aFk -aFU -eQZ -gjq -aiu -iSz -aIH -aIH -aIH -aOm -aIH -aIH -jTh -aSu -aiu -nfi -aJE -aWF -aXF -aYG -aZC -baN -baK -baK -aYG -aYG -aZx -aZx -aZx -aZx -aYG -aYG -baK -baK -bnq -baM -baK -baK -baK -baK -baK -baK -bxY -bzz -kGe -bBX -bDg -bEj -bFF -bva -bHP -bJb -bJb -bJb -fgS -bJb -bJb -bPp -bva -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -cdm -abI -aaa -bIZ -caZ -cbS -ccN -bIZ -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cfN -cfN -cfN -cfN -qWo -cjm -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(84,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aem -agy -agy -lGp -aeU -afI -aeU -jXF -agy -agN -agY -agy -ahI -aif -aiB -agy -ajM -akI -alx -amg -amg -anB -amg -aoQ -amg -aqo -alv -asx -ajM -ajM -ajM -akA -axH -ayI -aAf -aBd -aBd -aBd -aBd -aBd -aFV -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -ayD -vIc -xxS -vAq -uLF -aVO -aWF -aXG -aYG -aZD -baO -bbT -bbT -bbT -beY -bbT -bbT -bbT -bbT -bbT -bbT -bbT -bbT -bnr -bop -bbT -bbT -bbT -bbT -bbT -bbT -bxZ -bzA -bAK -bBX -bDg -bEk -bva -bva -bHQ -bJc -bKh -bLu -bLu -bNG -bOz -bHQ -bIZ -aaa -aaa -aaa -aaa -aaa -bUD -bVr -cqX -cqX -cqX -crm -cry -abI -aaa -bIZ -cba -cbT -bDi -ozO -cwA -cwA -cwA -cwA -vco -cwA -cwA -cwA -cwA -xYV -bNE -xYV -qWo -lxI -xVt -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(85,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeW -ovB -utg -afr -agy -agc -ago -agy -agy -agy -agy -ahJ -aig -aiJ -agy -ajN -akJ -aly -amg -amS -anC -aop -aoR -apJ -apN -aon -aty -atz -aux -avv -awI -axG -ayL -aAi -aBd -aCi -aDo -xjK -fhM -aFW -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -oEA -oEA -scp -oEA -oEA -dpa -dTV -aWF -kAa -aYG -aZE -baP -bbU -bdb -bdW -beZ -bfY -bfY -bhE -bfY -biI -bfY -bkT -bfY -bns -bfY -bfY -bqS -bsm -btN -bfY -bfY -bya -bzB -bAL -bBX -bDh -bEl -bva -bGK -bHQ -bJd -bKi -bLv -bMA -bNH -bOz -bHQ -bIZ -bBW -bBW -bBW -bTa -bTW -bUE -bva -abI -aaa -aaa -bva -crz -bva -aaa -bIZ -cbb -bDi -ccO -bIZ -cjm -cjm -xgh -xgh -cjm -cjm -cjm -xgh -xgh -cjm -cjm -cjm -cjm -eNc -pia -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(86,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeX -iLR -iPH -iPH -agy -agd -agp -agC -agO -ahb -agy -ahK -aih -aiK -agy -ajO -akK -alz -amg -amT -anD -amX -aoS -apJ -aqq -aon -atB -atA -auA -avw -awJ -axG -ayL -aAi -aBd -aCj -aDp -aEm -aFm -aFn -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -nsy -eDC -tnY -uCS -mal -dTV -aWI -aXK -aXH -aXH -aXH -aXH -bdc -bdX -bfa -bfZ -bga -bfZ -bfZ -biJ -bfZ -aYG -bmc -bnt -bnt -bpt -aYG -aYG -btO -aYG -aYG -aYG -aYG -aYG -bBX -bva -bEm -bva -aaB -bHQ -bJe -bKj -bLv -bMB -bNI -bOz -bHQ -bIZ -abI -ouv -bBW -bTb -abI -bva -bva -bva -bva -aht -bIZ -crA -bIZ -aaa -bva -bva -bNK -bva -bva -aht -aht -kSb -kSb -aht -aht -mau -fon -fon -aht -aht -aht -cjm -cjm -cjm -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(87,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -abI -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -ahL -ahL -ahL -ahL -ahL -ahL -ahL -amg -amU -anE -amX -aoT -apK -aqr -arl -awK -atD -auz -avx -rjF -axG -ayJ -aAg -aBe -aCk -aDq -aEn -aFm -aFX -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -uos -xnP -qjx -iPO -pOr -geU -aWJ -aXK -aYH -aZF -baQ -aXH -bdd -bdY -bfb -bfZ -bgU -bhF -bib -biK -bfZ -bfZ -aYG -aYG -aYG -aYG -aYG -bsn -btP -bva -bws -byb -bzC -bzC -bBY -bDi -bEn -bva -bGM -bHR -bJf -bKk -bLx -bLx -bNJ -bOz -bHQ -bIZ -abI -rMV -cqy -bTc -cqy -bva -bVs -bVC -cqy -aaa -bva -crB -bva -aaa -aaa -bIZ -csy -bQl -cqX -xNx -ctS -cFB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fon -fon -aht -aht -nKo -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(88,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aed -adR -abI -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aii -aiL -ajg -ajP -akL -cBi -amh -amV -anF -amW -aoU -apL -aqs -aon -asz -ajM -ajM -ajM -akA -axI -ayL -aAh -aBf -aCl -aDr -aEo -aFo -aFY -oEA -uoS -uoS -uoS -rJZ -uoS -uoS -tCP -xOC -jAy -rHA -ffJ -oEA -dpa -dTV -aWF -aXI -aYI -aZG -baR -aXI -bde -baK -baN -bga -bgV -bhG -bhG -biL -bjI -bgd -bmd -bnu -boq -bpu -boq -boq -btQ -bvb -bwt -byc -bzD -bAM -bvb -bDj -bEo -bva -bva -bHQ -bJg -bKl -bJb -bMC -bJb -bJb -bPq -bva -bva -rMV -bSo -bSq -bTX -bUF -bNK -bva -bva -bva -bva -crC -bva -bva -bva -bva -bSq -bva -bva -rnE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(89,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aij -aiM -aiM -ajQ -akM -juw -ami -amW -anG -amX -aoV -apJ -aqt -arm -rdB -atz -aux -avy -awI -axG -ayL -aAi -aBe -aCm -aCk -aEp -aFm -nBw -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -aQw -eHI -yfO -hDG -aUG -aVP -aWJ -aXJ -fow -aZH -baS -bbV -bbT -bdZ -bfc -bgb -bgW -bhH -bic -biM -bjJ -bgd -bme -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bDi -bmf -bsn -bva -bHS -bJh -bKm -bHQ -bMD -bKm -bOA -bPr -bva -bQS -vmY -bSp -bTd -bPC -bDi -bDi -bDi -bWZ -bDi -bDi -bZr -caa -caa -bXa -bRD -bWl -cdE -bIZ -rnE -aaa -aaa -aaa -nge -adR -adR -adR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(90,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -sdk -ahL -aik -aiM -ajh -ajR -akN -ivO -amj -amX -anH -aoq -aoW -apM -aqu -arn -asA -atC -auA -avz -awJ -axG -ayL -aAi -aBd -aCn -aDt -aEq -aFp -aFn -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -aQx -aRG -qWM -oEA -aUH -dTV -aWF -aXI -aYJ -aZI -baT -aXI -baK -bea -bfd -bgc -bgX -bhG -bid -bgV -bjK -bgd -bmf -bnv -bor -bpv -bqT -bso -btR -bnv -bnv -byd -bzE -bAN -bnv -bDi -bEp -bsn -bva -bva -bva -bva -bLy -bLy -bva -bva -bva -bva -bQT -vay -bSq -bDi -bSw -bSw -bva -bva -bDi -bva -bva -bva -bva -bva -bva -bva -bva -bva -bva -ukn -bIZ -bva -bva -aht -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(91,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -ail -aiN -aji -ajS -akO -pfB -amk -amY -anI -aor -aoX -apI -apO -aro -jen -atD -auz -avA -rjF -axG -ayL -aAi -aBd -aCo -aCk -aEr -aGa -gQo -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -oEA -oEA -oEA -oEA -oEA -aUI -aQz -fBt -aXK -aYK -aZJ -baU -aXK -bdf -bdf -bfe -bgd -bgY -bhI -bie -biN -bgd -bgd -bmf -bnv -bos -bpw -bqU -bsp -btS -btS -bwu -btS -bwu -bAO -bnv -bDk -bmf -bva -bva -bHT -bJi -bva -bsn -bME -bva -bJi -bHT -bQj -bPA -vay -bSq -bva -bNK -bva -bva -bWj -bWZ -bXS -bva -bNX -bva -cab -jPf -oFI -bva -rse -uIn -mIa -qdj -sXi -bva -bBX -bBX -bBX -bBX -aht -adR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(92,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aim -aiO -ajj -ajT -akP -alA -aml -amZ -anJ -amX -aoY -amg -sBA -arp -asB -ajM -ajM -ajM -akA -axJ -ayL -aAi -aBd -aBd -aBd -aBd -aBd -aBd -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -aKH -aLu -aLu -aRH -aUJ -aVQ -nyB -aXB -aXI -aZK -aXI -aXK -aGV -aGV -bff -bgd -bga -bgd -bgd -bga -bgd -bkW -bmf -bnv -bot -bpx -bqV -bsq -btT -bnv -bnv -bye -bzF -bAP -bnv -bnv -bEq -bFG -bGN -bGN -bGN -bGN -bGN -bGN -bGN -bGN -bPs -bva -bWk -nLl -nfz -npE -oZW -bDi -bDi -bSw -bSw -bSw -bva -bOB -bva -aaC -kRq -kRq -bva -stQ -boq -boq -boq -cgp -dNr -bBX -bDi -bDi -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(93,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -agQ -agQ -agP -ahL -ahL -ahL -ahL -ahL -ahL -ahL -amg -amg -anK -aos -aoZ -amg -aqv -aro -jxK -atE -auB -avB -awL -axK -ayM -aAj -aBg -aCp -aDu -aEs -aFr -aGb -aGU -aHE -aAL -aAL -aAL -aAL -aMR -aAL -aAL -aHE -aAL -aAL -aTO -aUK -xvO -aCZ -aGU -aAL -aZL -aAL -aAL -aAL -aAL -bfg -aAL -aAL -bhJ -bif -biO -bjL -bjL -bmg -bnv -bou -bnv -bou -bnv -bou -bvc -bwv -byf -bzG -bAQ -bBZ -bvc -bDi -bEn -bDi -bDi -bJj -npE -npE -npE -nSj -cXW -bPt -qyF -bQU -bva -bva -bva -lGv -bva -bva -bva -bva -bSw -bYF -bSw -bva -bva -gkX -bva -bva -pVD -kDY -fmh -rSH -bSo -gHZ -bBX -wfO -bDi -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(94,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agP -cnJ -ahq -ahq -ahM -ain -aiP -ajk -ajU -akQ -alB -amm -anb -anL -aot -apa -agP -aqw -arp -tTZ -atF -alv -alv -awM -axG -ayN -aAk -axG -aCq -axG -axG -axG -aGc -aGV -aHF -aIL -aDZ -aDZ -aDZ -aMS -aDZ -aDZ -aQB -aPR -aPR -aPR -aUL -wun -aEa -aHm -aEa -aZM -baV -aEa -aEa -aEa -bfh -aEa -bgZ -bhK -aIe -biP -bjL -bkX -bmh -bjL -bov -bpy -bqW -bsr -btU -bou -bww -byg -bzH -bAR -bCa -bvc -bEr -bFH -bEr -bEr -pQw -bEr -bEr -bEr -bEr -bEr -bPu -bva -rXT -bFZ -sUP -bTf -vGg -wdx -bVu -mzU -rzp -kpK -bDi -bZt -bva -oAW -bDi -pYC -bva -mHy -wzb -nYb -gVc -uiP -xCV -ehM -bDi -dWk -bBX -aht -adR -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(95,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -ahq -ahN -aio -agP -ajl -ajV -ajV -alC -amn -alC -alE -aou -apb -agP -aqx -arq -asD -atG -auC -auC -awN -axL -ayO -aAl -aBh -aBh -aDv -aBh -aBh -aGd -tHk -aHG -aIM -aJG -aKI -aLv -aMT -aKI -aPw -aQC -aKI -aKI -aTP -aUM -aVR -aKI -aXL -aYL -aZN -baW -aKI -aKI -beb -aKI -bge -bha -bhL -aHN -bjj -xQc -bkY -bmi -bjN -bow -bpz -bpz -bss -btV -bou -bwx -byh -bzI -bAS -bCb -bvc -bvc -bFI -bGO -bHU -bJk -bKn -bLz -bMF -bNL -bOC -bPv -bIZ -bOG -bva -bSs -bTg -bUa -jYh -bVv -bva -nQc -bXU -bDi -bZt -bZs -kRq -uMt -bME -fef -fmh -bNU -nYb -dSr -fmh -dJm -bDi -wfO -weL -bBX -aht -adR -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(96,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -cnT -ahq -ahd -agP -ajm -ajW -ajV -alD -amo -anc -anM -aou -apb -agQ -aqp -arp -asE -ajM -auD -avC -akA -axJ -axG -aAm -aBi -aBi -aBi -aBi -aBi -aBi -aBi -hqo -aDZ -aJH -aKJ -aLw -aMU -aKK -aKJ -aQD -aRI -coV -aKT -aUN -aVS -aVS -aXM -aVS -aVS -aXM -bbW -bbW -aVS -aVS -bgf -bhb -aDZ -aHN -biR -bjL -bkZ -bmj -bnw -box -bpA -bqX -bst -btW -bvd -bwy -byi -bzJ -bAT -bCc -bDl -bvc -bFJ -bGP -bHV -sEN -bKo -bLA -bMG -bNM -bOD -bPw -bQk -bQV -bRE -bSt -bTh -rJg -dAG -bVw -bva -iEQ -bXV -bDi -bNK -bva -bME -bDi -ksf -bva -bDi -ohR -nYb -ohR -reH -xCV -xaO -sww -bDi -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(97,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -afJ -aby -aaa -agQ -ahd -ahq -ahq -ahq -ahd -agP -ajn -ajW -ajV -alE -amp -and -and -aov -apc -apP -aqy -arr -asC -ajM -auE -avD -awO -axG -axG -aAm -aBi -aCr -aDw -aEt -aFs -aGe -aGX -aHH -aDZ -aJI -aKK -aLx -aMV -aOt -aKJ -aKT -aKT -aKT -aKT -aUO -aVS -aWM -aXN -aVS -aZO -baX -bbX -bdg -bec -bfi -bgg -bhc -aAL -big -biS -bjL -bla -bmk -bjN -boy -bpB -bqY -bsu -btX -bve -bwz -byj -bzK -bAU -bCd -bDm -bvc -bFK -bGQ -bHX -bJm -bKn -bKn -bKn -bKn -bEr -bPx -bva -bOI -bFZ -bFZ -bFZ -lms -bva -bva -bva -bva -tvP -bDi -wRk -bva -bva -olc -bva -bva -rhr -dym -bDi -ycx -lBP -fvb -bBX -bDi -wfO -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(98,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -cnN -ahq -cnT -ahq -ahd -agP -ajo -ajX -ajV -alC -amn -alC -alE -aow -apd -agQ -aqz -ars -asy -atH -auF -avE -awP -axG -ayP -aAn -aBi -aCs -aDx -aEu -aFt -cou -aGY -aHI -aIN -aJJ -aKL -aLy -aMW -aOu -aKJ -aQE -aRJ -aSz -aSz -aUP -aVT -aWN -aXO -aYM -aZP -baY -aZP -bdh -bed -aVS -bgh -aJI -aDZ -aHN -biT -bjL -kSO -bjL -bjL -boz -bpB -bqZ -bsv -btY -bvc -bwA -byk -bzL -bAV -bCe -bDn -bvc -bFL -bGR -bHX -bJl -bKp -bLA -bMG -bNN -bOD -bPx -bIZ -bCz -bva -bSu -bTi -bUb -bva -bVy -ohR -hVx -oWw -bDi -bNS -bva -klo -bSv -new -bva -dye -nVU -bDi -qBv -bDi -pBD -bBX -bDi -fLG -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(99,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -ahq -ahq -aip -agP -ajp -ajY -ajV -alF -amq -ane -anN -aox -ape -agP -aqA -art -asF -ajM -auG -avF -awQ -axG -ayQ -axG -aBi -aCt -aDy -aDA -aDA -aGf -aGX -aHH -aIO -aJI -aKK -aLz -aMX -aOv -aKJ -aQF -aRK -aRL -aRL -aUQ -aVU -aWO -aXP -aVS -aZQ -baZ -bbY -bdi -bee -aVS -bgi -aJI -aDZ -aHN -bjL -bjL -blb -bml -bjL -bnv -bpC -bra -bsw -bnv -bvc -bvc -bvc -bvc -bvc -bvc -bvc -bvc -bAW -bAW -bHY -bGW -bKn -bLB -bMF -bNO -bOC -bPv -bIZ -bCz -bRF -bDi -bPC -bDi -bva -bPA -bSw -bSw -nNJ -bDi -nWP -bva -gjp -lHX -nDo -bva -sij -bDi -ydf -ihj -ssx -bva -bBX -bBX -bBX -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(100,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -cnP -ahq -ahq -ahO -aiq -aiQ -ajq -ajZ -akR -alG -amr -anf -anO -aoy -apf -ajM -ajM -aru -asG -ajM -auH -avG -awR -axM -ayR -aAo -aBi -aCu -aDz -aDA -aDA -aGg -aBi -aHJ -aIO -aJI -aKJ -aKJ -aKJ -aKJ -aKJ -aQG -aRL -aRL -aRL -aUR -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aaw -aJI -aDZ -aHN -bjL -bjP -blb -bjL -bnx -boA -bpD -brb -bsx -btZ -bvf -bwB -byl -bzM -bAW -bCf -bDo -bEs -bEr -bGS -bHZ -bGW -bKq -bKn -bKn -bKn -bEr -bPx -bva -bCz -bNK -bSv -bTj -bDi -bva -tRc -bVz -ftp -lQX -bDi -bva -bva -bva -bva -bva -bva -bva -bva -bva -bIZ -bva -bva -aht -aht -aht -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(101,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -cnQ -ahq -cnV -ahP -air -agP -agP -agP -cCS -alH -ams -alH -anP -agP -apg -ajM -aqB -arv -asH -atI -auI -avH -awR -awR -awR -awR -aBj -aCv -aDz -aDA -aDA -aGh -aBi -aHK -aIO -aJI -aKM -aLA -aMY -aKP -aNm -aQG -aRL -aSA -aTQ -aUS -aRL -aWP -aXQ -aYN -aZR -aYN -aYN -aYN -aXQ -bfj -bdm -aJI -aDZ -bih -biW -wUf -wUf -bmn -iGJ -bjQ -bpE -brc -bsy -bsy -bvg -bwC -bym -bzN -bAX -bCg -bDp -bEt -bFM -bGT -bIa -cBK -bKr -bLC -bMH -bNP -bOE -bPy -bQl -bQW -bva -bSw -bPC -bUc -bva -bva -bva -bva -nNJ -bDi -bOB -bSw -bDi -bDi -bDi -bIZ -aaa -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(102,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agP -cnQ -ahq -ahq -ahQ -ais -agP -ajr -aiR -akT -aiR -amt -aiR -anQ -aiR -aph -ajM -aqC -arw -asI -aqC -auH -avI -auH -axN -ayS -aAp -aBj -aCw -aDA -aDy -aDA -aGi -aBi -aHL -aIP -aJK -aKN -aLB -aMZ -aKP -aPx -aQH -aRM -aSB -aTR -aUT -aRL -aWQ -aXR -aXS -aZS -bba -aZS -aXS -bef -bfk -bdm -bhd -aBI -bii -biX -bjR -blc -biX -bny -aax -bpF -brd -bsz -bjQ -bvh -bwD -byn -bzO -bAY -bCh -bDq -bEu -bFN -bGU -bIb -bJn -bKs -bKs -bMI -bNQ -bOC -bPz -bIZ -pwj -bva -bSx -bTk -bUd -bva -bDi -bDi -wIv -qOH -fpT -fpT -fpT -wNq -bva -gMO -bBX -aaa -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(103,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -agQ -agQ -agQ -agP -agP -agP -ajs -aiR -akU -alI -amu -ang -anR -aiR -aph -ajM -aqD -arx -asJ -aqC -auH -avJ -awS -axO -ayT -aAq -aBj -vTL -aDA -aEv -aFu -lnn -aGZ -aHM -aIQ -aJL -aKO -aLC -aNa -aKP -aPy -aQI -aRL -aSC -aTS -aUU -aRL -aWQ -aXS -aYO -aZT -aZT -aZT -bdj -beg -bfl -bdm -aJI -aDZ -bij -biY -rvH -biY -biY -biY -biY -bpG -biY -bsA -bua -bvi -bwE -bsA -bsA -bsA -bsA -bsA -bjc -bFO -bFO -bFO -bFO -bKt -qar -bGW -bNR -bAW -bva -bva -pwj -bva -bva -bva -bva -bva -jXV -bva -bva -qYi -bBX -bBX -bBX -uUQ -bBX -fdS -bBX -bBX -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(104,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -abI -abI -abI -abI -ajs -aka -akV -alJ -amv -anh -anS -aiR -api -ajM -aqC -ary -asK -aqC -auH -avK -auH -axP -ayU -aAr -aBj -aCx -oyF -oyF -oyF -aGj -onX -qXH -aIO -aJI -aKP -aLD -aNb -aKP -aPz -aQJ -aRL -aau -aTT -aXS -aRL -aWR -aXT -aYO -aZU -bbb -bbZ -bdk -beh -bfl -bdm -aJI -aDZ -bik -biY -bjS -bld -bmp -bld -bld -bpH -biY -bsB -bub -bvj -bwF -byo -bzP -bCj -bCi -bDr -bEv -bFP -bGV -bIc -bFO -bKu -bLE -bMJ -bEr -bEr -bPA -bNX -bQX -bKH -bKH -bKH -bKH -bKH -bKH -iyg -lIr -bQY -bXk -mbe -scz -kSF -kDJ -oYj -uMo -bXk -bXk -bXk -bXk -bXk -bXk -bXk -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(105,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -akb -akW -alK -amw -ani -jvi -aiR -aph -ajM -aqC -arz -asL -atJ -auH -auH -auH -axQ -ayV -aAs -aBj -gkR -aDB -aEw -aFv -ulu -aGX -jYe -aIO -aJI -aKQ -aKQ -aKQ -aKQ -aLL -aQK -aRL -aSE -aTU -aXU -aVV -aWS -aXU -aYP -aZV -bbc -bbc -bdl -bei -bfm -bgj -bhe -aDZ -bil -biY -bjT -ble -bmq -bmq -boC -bpI -biY -bsC -buc -jsj -bwG -byp -bzQ -bzQ -ioj -bsA -bEw -naS -bkh -bId -bFO -bEr -bEr -bEr -bEr -bOF -bDz -bDz -bCD -bDi -bUe -bTl -bBX -bBX -bBX -bBX -qXq -bBX -bXk -bZx -eQN -tcY -cam -cam -sjC -bXk -mci -cbX -ceq -mhl -ceq -ceq -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(106,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -abI -ajs -akc -akX -alL -amx -anj -anU -aiR -apj -ajM -ajM -ajM -ajM -ajM -ajM -avL -auH -auH -ayW -auH -awR -awR -awR -awR -awR -awR -aAN -gNG -aIO -aJM -aKQ -aLE -aNc -aKQ -aLL -aQL -aRL -aSF -aXS -aXS -aRL -aWT -aXV -aXS -aZW -aXS -bca -aXS -bej -bfn -bdm -aJI -aDZ -bik -biY -bjU -bld -bld -bld -bld -bpJ -biY -bsC -bud -bvk -bwH -bua -bzR -bzR -bBb -bDr -bEx -bkh -bGX -bIe -bjc -bKv -bLF -bjc -bNS -bCz -bPB -bPB -bPB -bPB -bPB -bPB -bPB -uwX -uMe -lTC -bXd -cif -bXk -vRm -bpL -fQf -cbW -cbd -cdI -cri -cbX -cbX -cbV -cbV -ceq -ceq -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(107,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -akd -akX -alJ -amy -alJ -anV -aiR -apk -apQ -aqE -aqE -aqE -atK -auJ -aqE -awT -axR -ayX -aAt -aBk -aCy -aDC -aEx -aFw -awR -aHb -jYe -aIQ -aJL -aKR -aLF -aNd -wBg -aLL -aQM -aRL -aSG -aTW -aUW -aRL -kEW -aXW -aXS -aZX -bbd -aRL -bdm -bek -bdm -aRL -bhd -bhM -bim -biZ -bjV -blf -blf -blf -blf -bpK -biY -bsD -buc -kQy -bwI -byo -bzS -eFj -bCl -bsA -bEy -bFQ -buh -bIf -bjc -bKw -bLG -bjc -bNT -bCz -bPB -bQm -bQZ -bQZ -bQZ -bTm -bPB -bUG -uMe -hzc -bXe -krU -bXk -kyv -lWJ -iAx -bZA -cam -ous -bXk -ccR -cbX -ccQ -ccQ -ccQ -ccQ -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -cmt -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(108,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -ake -akX -alM -amz -ank -anT -ajs -apl -aoz -aqF -arA -arA -arA -arA -avM -awR -axS -ayY -aAu -aBl -aCz -aDD -aza -aza -awR -aHc -aHO -aIP -aJK -aKS -aLG -aNe -aKQ -aPA -aQN -aRN -aRN -aRN -aRN -aRN -aRN -aXX -aXS -aXS -pWT -bcb -bdn -bel -bdn -kEM -aJI -aDZ -bik -biY -bjW -blg -bmr -bnz -boD -bpH -biY -bsE -bue -tix -cSJ -bsA -bzT -bBc -bCm -bDr -bEz -wtE -buh -bIg -bjc -bKx -bLH -bjc -bNU -bCz -bPB -bQn -cCP -cCF -cCH -bTn -bPB -uwX -wMM -fzu -wiB -reV -bXk -sKa -iFI -oUa -vjd -oAw -cdK -bXk -bXk -bXk -bXk -bXk -bXk -bXk -bXk -aht -aht -aht -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -clw -clG -clG -clG -clw -clw -clw -clw -clw -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cny -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(109,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiR -ajs -ajs -akZ -alN -alN -alN -anW -ajs -apm -apR -aqG -arB -asM -atL -auK -avN -awU -axT -ayZ -aAv -aBm -aCA -aDE -aEy -aFx -awR -awR -aHP -aIO -aJN -aKQ -aKQ -aKQ -aKQ -aLL -aQN -aRN -aRN -aTX -aUX -aVW -aRN -aXY -aXS -aXS -pWT -bcc -aDZ -bem -aDZ -aDZ -aJI -aDZ -bik -biY -biY -biY -biY -biY -biY -bpM -biY -bsA -bua -rar -bwE -bsA -bzU -bBd -byo -bsA -bkb -bFR -bGY -bkb -bjc -bKy -bLI -bjc -bjc -bCz -bPB -bQo -cCF -bRa -bSy -bTo -bPB -bUH -bUH -bUH -bUH -bUH -bXk -bTE -cae -eta -mmv -cae -bTE -bXk -ceT -cfr -cfO -cgr -cgP -cgP -cgP -cgP -cgP -cig -cgP -cig -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -clC -clH -clP -kFm -clw -cmf -cmm -cmu -clG -cmB -xFl -cmL -cmR -cmV -cna -cmR -cnj -cmK -cnr -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(110,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aiR -abI -abI -abI -abI -abI -aoz -apn -aoz -aqG -arC -asN -atM -auL -avO -awV -axU -aza -aAw -aBn -aCB -aDE -aEz -aFx -aGk -awR -aHQ -aIO -aJO -aKT -aLH -aNf -aKT -aLL -aQO -aRO -aSH -aTY -aUY -aVX -aRN -aXZ -aYQ -aXS -ttS -bcd -bdo -ben -bfo -bfo -aJZ -aAL -bin -bja -bjX -blh -bms -bnA -boE -bpN -bre -bsF -bkh -jUV -bwK -byr -bzV -bBe -bCn -bDs -bEA -bFS -bGZ -bCn -bJo -bGZ -bLJ -bMK -bjc -bCz -bPB -bQp -cCH -cCF -cCP -bTp -bPB -bUI -bVD -bWn -bXf -bUH -bYI -jrG -caf -uun -cbY -cdc -gnq -bXk -ceU -eVy -bXk -bXk -bXk -bXk -tue -pjH -pjH -pjH -roc -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -tfw -pjH -pjH -uHG -clw -clw -clw -clQ -clX -rsZ -clw -cmg -cmn -cmv -clG -cmG -gpI -cmM -cmK -cmW -cnb -cmK -cnk -cmK -cns -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(111,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoz -ahr -aoz -aqG -arD -asO -atN -auK -avP -awW -axV -azb -aAx -aBo -aCB -aDF -aEA -aFy -aGl -awR -aHR -aIR -aJP -aKT -aLI -aNg -aKT -aPB -aQP -aRN -aRN -aTZ -aSK -aSK -aRN -aRN -bgk -gam -aZZ -aRN -aRN -beo -aRN -aRN -aJI -aDZ -bim -bjb -bjY -bli -bmt -bnB -boF -bpO -brf -bkg -buf -bvm -bwL -bys -bzW -bBf -bCo -bkh -bEB -bkh -buh -bIh -bkh -bKz -bnH -boN -cBL -bCz -bPB -bQq -bRb -bRG -bSz -bTq -bPB -bUJ -bVE -bWo -bXg -bXY -bYJ -bZy -bZy -cbc -cbZ -bZy -cdL -cer -ceV -cfs -dWp -cgs -cgQ -chv -mKk -cdm -cdm -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -clz -clA -clD -clJ -clR -clY -cmd -cmh -uzn -cmo -clG -clG -clG -gpI -cmN -cmK -cmK -cmK -cmK -cnl -cmK -cnt -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(112,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cdm -cdm -aqG -arE -arA -atO -auM -avQ -awW -axW -azc -aAy -aBp -aCC -aDG -aBm -aFz -aGm -awR -aHQ -aIO -aJO -aKT -aPz -aLL -aOw -aLL -aQP -aRN -aSI -aSK -aUZ -aSK -aWU -aRN -aYR -aYS -aYS -cpq -cpu -cpw -bfp -bgk -aJI -aDZ -bik -bja -bjZ -blj -bmu -bnA -boG -bpP -brg -bsG -brf -bvn -aaz -byt -bzX -bpP -bCp -bpP -bEC -bFT -bHa -bIi -bJp -bKA -bLK -bMM -bjc -bCz -bPB -bPB -bRc -bRH -bSA -bPB -bPB -bUK -bVG -bWp -bXh -bXZ -bYK -bZz -nAY -cbd -nRM -cam -cdM -bXq -xmE -ymb -bXk -ore -qWG -bXk -paU -dSp -cdm -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iBJ -clB -hQz -clB -clS -clZ -tlw -cme -nMG -cmp -cmw -cmF -opz -qYS -cmK -cmK -cmX -cnc -cmK -cmK -cmK -cnu -cmB -abI -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(113,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -apS -ala -arF -arA -atP -auN -avR -awX -awU -awR -awR -awR -aCD -aDH -awR -awR -awR -awR -aHS -aIS -aJO -aKT -aLK -aNh -aKT -aPC -aQP -aRN -aSJ -aSK -aVa -aVY -aWV -aYa -aYS -aYS -bbg -cpr -bcf -beq -cpy -bgl -bhe -aDZ -bik -bja -bka -blk -bmv -bja -bjc -bpQ -bjc -bjc -bug -bvo -bwN -byu -bzY -wLo -bCq -wLo -bzY -bFU -bFU -bIj -bJq -bIj -bFU -bFU -bjc -bCz -bPC -bPB -bRd -bRI -bSB -bTr -bPB -bUL -cqV -bWq -bXi -bYa -bYL -bZA -caw -cbe -cca -cam -qtO -bXk -bXk -bXk -svA -mjK -mjK -mjK -aap -aac -aac -bXk -shH -shH -shH -shH -shH -shH -shH -shH -fon -fon -mau -fon -aht -aht -mau -fon -fon -aht -aht -ouv -clw -clw -clw -clT -cma -clL -clw -cmj -cmq -clG -clG -clG -cmK -cmO -cmK -cmK -cmK -cmK -cnm -cmK -cnv -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(114,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -apo -abI -aqH -arG -asP -atQ -auO -avS -awY -axX -azd -aAz -aBq -aCE -aDI -aEB -aEB -aEB -aHd -aHT -aIT -aJQ -aKT -aKT -aKT -aKT -aPD -aQQ -aRN -aSK -aUa -aVb -aVZ -aWW -aRN -bce -aYS -cpm -bcg -bdp -ber -cpz -bgk -aJI -aDZ -bik -bjc -bkb -bkb -bkb -bjc -boH -bkh -brh -bjd -cqm -bvl -bwO -byv -bzZ -bBg -bCr -bDt -bED -bFU -bHb -bIk -bJr -bKB -bKB -bFU -bNV -bCz -bPD -bPB -bRe -bRJ -bSC -bTs -bPB -bUM -bVH -bWr -bXj -qGZ -bYQ -bZD -caj -cbf -ccb -cah -cdO -ioF -ceX -aah -cfS -fFv -fmL -gXZ -kmd -lXJ -lXJ -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rnr -clE -xnm -clM -clU -cmb -mxy -clw -cmk -cmr -cmx -clG -cmH -cmK -cmP -cmK -cmY -cnd -cmK -cnn -cmK -cnw -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(115,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alO -aaa -aaa -aqI -arH -asQ -atR -auP -avT -awZ -axY -aze -aAA -aBr -aCF -aDJ -aEC -aDJ -aAA -myu -aHU -aIV -aJS -aKU -aNj -aNi -aOx -aNj -aQR -aRN -aSL -aRN -aRN -aWa -aRN -aRN -rxV -aYS -cpn -bch -bdq -bes -cpA -bgk -aJI -aDZ -bik -bjc -bkc -bll -bmw -bnC -boI -bpR -bri -bjd -cqm -bvl -bwP -byu -bAa -bBh -bCs -bDu -bEE -bFU -bHc -bIl -bJs -bKC -bLL -bFU -bNW -bOH -bPE -bQr -bRf -bRK -bSD -bQr -bQr -bUH -bUH -bUH -bUH -bYb -bYN -bZF -cak -cbg -cam -cam -cam -cam -mwG -nAs -cfT -wcs -ggg -qbp -qbp -gEo -dMG -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -clw -clN -qxq -clV -cmc -mDW -clw -cml -cms -cmy -clG -cmB -cmK -cmQ -cmU -cmZ -cne -cmU -cno -cmK -cnx -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(116,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anl -aht -aaa -aaa -aqI -arI -asR -atS -auQ -avU -axa -axZ -azf -aAB -aAB -aAB -aAB -aAB -aAB -arA -arA -aHV -aIO -aJO -aKT -aKT -aKT -aOy -aLL -aLL -aRP -aSM -aUb -aVc -aWb -aWX -aYb -aYV -cpl -bcf -cps -aYS -bep -cpB -bgk -aJI -aDZ -bik -bjd -bkd -bkh -cqa -bnD -boJ -bpS -bjd -aay -cqm -bvl -bwP -byv -bAb -bBi -bCt -bDv -bEF -bFU -bHd -bIm -bJr -bKD -bKD -bFU -bNX -bCz -bPE -bQs -bRg -bRL -bSE -bTt -bUf -bQr -bVI -bWs -bXk -bYc -bYO -bZA -xhI -cbh -cbh -cbh -cbh -cbh -hjD -aai -cfU -tIS -iCs -rPg -rPg -cBR -iCs -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -clw -clw -clw -clw -clw -clw -clw -clw -clw -clw -clw -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cnz -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(117,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anl -aaa -aht -aaa -aaa -aqI -arJ -asR -asS -asS -asS -asS -aya -azg -aAB -aBs -aCG -aDK -aED -aAB -aGn -axi -aHW -aIO -aJO -aAN -aGn -aKT -coF -aPE -aPE -aPE -aPE -aPE -qEN -bdv -aWY -aRN -aYU -bab -bbi -bbh -bdr -cpx -aRN -aRN -aJI -aDZ -bij -bje -bke -blm -bpT -bpT -bpT -bpT -bpT -bsH -blo -bvl -cqs -byu -bAc -bBj -bCu -bDw -bEG -bFU -bFU -bIn -bJt -qni -bFU -bFU -bFU -hZB -bPF -bTu -bRh -bRM -bSF -bTu -bUg -bUN -bVJ -bWt -bXk -bYd -bYP -bZF -rTd -wDl -vxr -irM -irM -qFu -cet -ulY -aak -cgu -cgU -aam -aaq -aac -jzE -bXk -bXk -bXk -bXk -bXk -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -cmz -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(118,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amA -aht -aht -aht -aht -abI -aqJ -arK -asS -atT -auR -avV -axb -ayb -azh -aAB -aBt -aCH -aCK -aEE -aAB -aGo -aHf -aHX -aIW -coz -aKV -abI -aKT -coG -aPE -aQS -aRQ -aSN -aUc -aPE -aWd -aXb -aRN -aYT -bac -baa -baa -baa -beu -bgk -bgn -aJI -aDZ -aHN -bjd -bkf -bln -bmx -bnE -boK -bpU -bpU -bsI -bui -bvp -bwQ -byv -bAd -bBk -bCv -bDx -bEH -bFU -bFU -bIo -bJu -bKE -bLM -bMN -bFU -bCz -bPE -bQu -bRi -bRN -bSG -bTv -bUh -bUO -bVK -bWu -bXk -bYe -bYQ -bZA -can -cbi -ccc -aac -cdR -aaf -bXk -bXk -sWW -cgv -lXb -cgv -uaP -cgv -ukp -cgV -cgv -cgv -gQf -bXk -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -abN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(119,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acO -aby -aby -aby -aby -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aqI -arL -asR -atT -auR -avW -axb -ayb -azi -aAB -aBu -aCI -aDL -aEF -aAB -aGp -aHf -aHX -aIW -coz -aKV -abI -aKT -coH -aPE -aQT -aRR -aSO -aUd -aVd -aWe -aXb -aRN -aYX -bad -bbl -bbl -bbl -bbl -aRN -bgo -bhd -aBI -aHG -bjf -cpX -cpZ -cqc -bnF -boL -bpV -bpV -bpY -bpY -bvq -bpX -bpY -bpY -bpY -bCw -bDy -bDy -bDy -bFU -bIp -bJv -bJx -bLN -bMO -bFU -bCz -bPE -bQv -bRj -bRO -bSH -bTw -bQr -bQr -bQr -bQr -bXk -bTE -bYR -bZA -can -cbj -aac -cbX -wcs -iyJ -cfa -aac -twv -hoS -sWj -dnS -hSC -jTU -fZK -pgH -pgH -uRk -ciG -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(120,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -abI -aaa -aaa -aaa -abI -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arM -asR -atU -auR -avX -axb -ayb -azj -aAC -aBv -aCJ -aDM -aEG -aAB -aGq -aHf -aHY -aIX -coB -aKV -abI -aKT -coH -aPE -aQU -aRS -aSP -aSP -aPE -aWf -aXb -aPE -aYY -bae -bbm -bae -bcm -bae -cpC -bgp -aJI -bhN -big -bjg -cpY -cqa -bmy -bnF -boM -bpV -brj -bsJ -buj -bvr -bwS -byw -bAe -bpY -bCx -bDy -bEI -bFV -bFU -bIq -bJw -bKF -bLO -bMP -bFU -bCz -bPE -bQw -bRj -bRP -bSH -bTx -bQr -bUP -bVL -bWv -bXl -bYf -bYS -bZA -can -qpS -aae -ccX -ccX -ceu -cbX -cfu -tlN -ncm -cCI -aan -aar -aao -meF -oKv -wbB -xzR -hQC -bXk -aht -fon -shH -fon -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(121,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -acP -acP -acP -acP -acP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arN -asR -atT -auR -avY -axb -ayb -azk -aAB -aBw -aCK -aDL -aEH -aAB -aGr -aHf -aHX -aIW -coz -aKV -abI -aKT -coJ -aPE -aQV -aRT -aSQ -aUe -cpa -aWg -aXc -aPE -cpg -bah -bag -bah -bag -bex -bfr -bgq -aJI -aDZ -bih -bjh -bki -blp -bmz -bnG -boN -bpW -dHZ -bsK -buk -bvs -bwT -byx -bAf -bBl -bCy -bDy -bEJ -bFW -bHe -bIr -bJx -bJx -bLP -bMQ -bFU -bCz -bPE -bQx -bRj -bRQ -bSH -bTy -bQr -bUQ -bVM -bWw -bXm -bYg -bYT -bZB -caq -cbk -aac -ccY -cdT -ccY -cbX -aac -vlC -iej -qeY -fyO -fyO -fyO -qeY -oKv -wbB -wfP -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(122,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -acm -aaa -aaa -aaa -abI -aaa -acP -acP -acP -acP -adG -adS -adS -adS -adS -adS -aeJ -aeY -aft -afK -acP -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aht -aht -aht -abI -aqJ -arO -asS -atT -auR -avZ -axb -ayb -azh -aAB -aBx -aCL -aCK -aEE -aAB -aGs -aHf -aHX -aIY -coz -aKV -abI -aKT -coJ -aPE -aPE -aRU -aPE -aPE -aPE -aWh -aXd -aYd -aYZ -bag -cpo -cpt -cpv -bag -aPE -bgr -aJI -aDZ -aHN -bjd -bjc -bke -bkh -cqf -boN -bpX -brl -bsL -bul -bwU -bsK -bsK -bAg -bpY -bCz -bDy -bEK -bFX -bFU -bIs -bJy -bKG -bLQ -bMR -bFU -bCz -bPE -bQy -bRk -bRR -bSI -bTz -bQr -bUR -bVM -bWx -bXn -bYh -bYU -bZE -car -mgz -aac -cbX -wcs -wcs -cfd -bXk -tlN -ncm -lUO -mpd -hKp -hKp -cit -qeY -puw -vBE -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(123,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -acP -acW -adh -ads -adH -adT -aee -aee -aee -aev -kjK -aeZ -afu -afL -acP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aqI -arP -asR -asS -asS -asS -asS -aya -azl -aAB -aBs -aCM -aDN -aEI -aAB -aGn -axi -aHZ -aDZ -aJO -aAN -aGn -aKT -aOz -aPF -aQW -aRV -aSR -aPE -aPE -cpe -aPE -aPE -aZa -bah -bag -bah -bdw -bey -cpC -bgs -aJI -aDZ -aHN -bji -bjd -blq -bkh -bkh -boN -bpW -brk -bsM -bum -bvt -bwV -byz -ooh -bpY -bCA -bDy -bEL -bDy -bFU -bFU -bJz -bFU -bFU -bFU -bFU -bCz -bPE -bQz -bRl -bRS -bSJ -bTA -bQr -bUS -bVM -bWy -bXo -bYi -bYV -bZA -cam -ccW -bXk -cda -wcs -wcs -wcs -eyj -eAH -lnr -qeY -fBZ -fBZ -fBZ -cgY -ciI -tdL -dHr -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(124,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abI -abO -abV -acc -ach -abY -abW -acn -acw -abY -abV -acc -acG -acQ -acX -adi -adt -adI -adU -aef -aef -aef -aew -aeK -afa -afv -afM -acP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arQ -asR -atV -auS -awa -axc -ayc -azm -aAB -aAB -aCN -aAB -aAB -aAB -arA -arA -aHV -aDZ -aJO -aKT -aKT -aKT -aOA -aPG -aQX -aRW -aSS -aUg -aVf -aWi -mjn -aYe -aZb -bag -bbr -bbr -bdv -bez -cpC -bgp -bhf -cpH -cpN -cpT -bjd -blr -cqd -cqd -boO -bpV -brm -bsN -bun -gGA -bwW -byA -bAi -bpY -bCB -bDz -bEM -bFY -bDz -bDz -bJA -bKH -bKH -bKH -bNY -bOJ -bPE -bQA -bRm -bRT -bSK -bTB -bQr -bUT -bVN -bWz -bVN -bYf -bYW -oWu -cam -vli -ckJ -cey -cdW -wcs -cdW -eyj -kTR -mEu -wMX -dFJ -wYK -dFJ -uzh -nUQ -fym -hon -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(125,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abW -acd -ace -ace -ace -aco -acx -acx -acz -acd -acH -acP -acY -adj -adu -adJ -adV -adV -cnD -adV -adV -aeL -afb -acP -acP -acP -agq -adX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arR -asT -atW -atW -atW -axd -axY -azn -aAD -aBr -axZ -aDO -aEJ -aDO -aAA -aHe -aHU -aIZ -aJT -aKY -aKY -aKY -aKY -aKY -aKY -aKY -coW -aPE -aVg -aWj -bah -aYf -aZc -bah -bbo -bco -bdw -beA -aPE -aPE -aJI -cpI -cpO -bjk -bje -bjd -bmA -bmA -bjd -bpY -bpY -bpY -bpY -pxD -jZG -bpY -bpY -bpY -bNZ -bva -bva -bva -bva -bva -bva -bva -bva -bva -bNZ -bva -bPE -bPE -bPE -bRU -bPE -bPE -bQr -bUU -bUU -bUU -bUU -bUT -bYX -bZA -cam -lfx -bXk -pCo -wcs -wcs -wcs -eyj -qkM -miw -qeY -prQ -prQ -prQ -dgj -psd -fxC -dZj -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(126,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abX -ace -ace -abO -abO -acp -abO -abO -acA -acx -acI -acP -acP -acP -adv -adK -adW -aeg -cnE -aeg -aex -aeM -afc -acP -afN -age -agr -adX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aht -aht -aht -abI -aqK -arG -asU -atX -auT -awb -axe -ayd -azo -aAE -aBy -aCO -aDP -aEK -aEK -aEK -aHg -aIa -aJa -aJQ -aKZ -aLQ -aNp -aOB -aPH -aQY -aKY -coW -aPE -aVh -bah -bah -aYg -cph -bag -bbp -bbp -bdv -bag -bfs -bgt -bhd -cpJ -cpP -aBI -aEY -bls -aBI -aBI -bmB -vKq -nTr -gDR -vzA -bvu -hIZ -tqO -mqp -cKV -iwe -qTV -xDj -blt -jCv -bOK -bEN -bKI -bEN -bHf -bOa -bOK -bPG -bQB -bBm -bRV -bSL -bTC -bUi -bUV -bVO -bWA -mCe -bYj -bYQ -bZA -cam -mgz -aac -tlV -wcs -wcs -dEy -bXk -tlN -ncm -puw -fyF -cZt -cZt -fjD -qeY -iTF -slJ -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(127,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -abO -acp -abO -abO -abO -acB -acJ -abO -acZ -adk -adw -adL -adV -adV -cnD -adV -adV -aeN -afd -afw -afO -agf -ags -adX -adX -adX -adX -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aaa -aaa -arA -arA -arA -arA -arA -aye -arA -aAF -aAH -aAH -aDQ -aAH -aAH -axi -axi -aIb -aJb -aJU -aLa -aLR -aNq -aNq -aPI -aQZ -aKY -coW -aPE -aVi -bah -aXh -aYg -aZd -beB -bbq -beB -bdx -beB -bft -bgu -aJZ -bhO -bio -aDZ -aGV -aDZ -aDZ -aDZ -jcT -xje -tTl -tTl -tTl -gkS -tTl -tTl -tTl -koz -dgg -phJ -phJ -lJI -bAk -bIt -bJB -bKJ -bJB -bMS -bOb -bJB -bPH -bQC -bJB -bRW -bSM -bTC -bUj -bUW -bVP -bWB -mCe -bYk -wjm -bZF -cbm -mgz -aac -oHa -oHa -eWi -cbX -aac -loL -cgx -qeY -fyO -fyO -fyO -qeY -cBS -cjt -kaR -hQC -bXk -aaa -fon -shH -fon -aht -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(128,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -acj -acq -abO -abO -abO -acC -acK -acR -ada -adl -adx -adL -adX -aeh -aeh -aeh -adX -aeN -afe -afx -afx -cnC -adX -adX -adX -adX -alb -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aaa -ahi -atY -bcN -auU -atY -lQQ -ayf -lQQ -aAF -aBz -aCP -aDR -aEL -aAH -aGt -aAN -aHV -aDZ -aJO -aKZ -aLS -aNr -aOC -aPJ -aRa -aRX -aST -aPE -cpb -bah -bah -aYg -cpi -bag -bbr -bbr -bah -bag -bfs -bgt -aJI -cpK -cpQ -aDZ -aGV -blu -aDZ -aDZ -bjm -mhn -cqi -cqi -cqi -cqi -cqi -imE -kYM -mfC -fdQ -bmD -bmD -eRp -bAl -bIu -bJC -bKK -bCC -bMT -bOc -bmD -bPI -bmD -bRn -bRX -bSM -bTC -bUk -bUX -bVQ -bWC -mCe -bYl -bYO -bZA -cam -lrM -aae -cAQ -cAQ -cLw -cbX -cfu -jBn -oxw -meF -aao -aao -aas -cCI -cBS -iLh -liR -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(129,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abJ -abO -abY -acf -abO -abO -ack -acr -acy -abO -abO -acD -acL -acS -adb -adm -ady -adM -adY -aei -aei -aei -aey -aeO -aff -afy -aab -bIK -agt -agD -agR -ahh -ahi -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aaa -ahi -baH -auV -auV -awc -axg -ayg -azp -aAG -aBA -aCQ -aDS -pHo -aAH -aGu -aHh -aHV -aDZ -aJV -aLb -aLT -aNs -aNs -aPK -aRb -aKY -aQN -aPE -cpc -aWl -beB -aYh -cpj -bah -bbs -bcq -bag -beC -aPE -aPE -bhg -cpL -cpR -bjl -bGa -bKM -blt -cqh -bKM -cCl -cCl -cCl -tJr -tzH -tzH -byD -bAm -dhz -uxP -bDA -bEQ -bGa -bHp -sYQ -bJD -bBo -bBo -bMU -bmC -bOL -bPJ -bOL -bRo -bRX -bSN -bTD -bTC -bUY -bVR -bWD -bWD -bTE -bYY -bZA -cam -cbn -aac -cbX -wcs -cfP -cff -aac -cfX -vVO -iop -kWQ -oXq -qpd -tkL -tOD -tOD -ikO -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(130,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -acl -acs -abO -abO -abO -acE -abY -acT -adc -adn -adz -adL -adX -aeh -aeh -aeh -adX -aeN -afg -afz -afz -agg -adX -adX -adX -adX -alb -aaa -aaa -aaa -aaa -aaa -aaa -aht -amD -aht -aaa -aaa -aaa -aaa -aaa -ahi -atY -atY -atY -atY -axh -axh -axh -aAH -aBB -aCR -aDT -aEM -aFA -aGv -aHi -aHV -aDZ -aJO -aKZ -aLU -aNt -aOD -aPL -aRc -aKY -aQN -aPE -aVj -aWm -bck -aYi -cpk -bag -bbp -bbp -bah -beD -cpC -bgv -aJI -cpM -cpS -cpU -bKM -blv -bmC -cqi -boP -bqb -pYw -gFo -cSK -duF -bxa -byE -bBp -wfG -bBp -bBp -bBp -bBp -bvD -bIv -cqz -bKM -bLR -bMV -bOd -bOL -bPK -bOL -bRp -bRY -bSM -pps -bUl -bUZ -bVS -bWE -bXk -bYm -bYZ -bZG -cax -cbo -ccc -aac -cdR -aag -bXq -bXq -cfY -xNy -smv -xNy -hGB -hSt -civ -civ -vsw -qRl -oKJ -bXk -aht -fon -fon -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(131,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -abO -act -abO -abO -abO -acB -acM -abO -add -ado -adA -adL -adZ -adZ -cnG -adZ -adZ -aeP -afh -afA -afQ -agf -ags -adX -adX -adX -adX -aFj -aht -aht -aht -aht -aht -alO -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aAH -aBC -aCS -aDU -aEN -aAH -aGw -aHj -aHV -aDZ -aJW -aKY -aLV -aLV -aLV -aLV -aKY -aKY -aQN -aPE -aPE -aPE -aPE -aPE -aZf -bah -bag -bah -bag -beE -cpC -bgw -aJI -aDZ -aHN -bjn -bKM -blw -bmC -cqi -boQ -cCl -brq -byF -cCt -byF -bxc -nIU -bAo -bBq -bCE -bDB -bER -bBp -bHh -bIv -cqz -bBo -bLS -bmC -bmC -bOL -bPL -bOL -bRo -bRZ -bSO -bTF -bUm -bVa -bVT -bWF -bXp -bYn -bZa -bZF -cal -cbp -cci -kTj -kTj -qhE -loz -frj -aal -eyj -uIB -eyj -eyj -uIB -eyj -eyj -bXk -bXk -bXk -bXk -aht -aht -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(132,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abV -ace -ace -abO -abO -act -abO -abO -ace -ace -ach -acU -acU -acU -adB -adN -aea -aej -cnH -aej -aez -aeQ -afi -acU -afR -agh -agu -agE -agS -agS -ahs -ahR -ahs -ahs -ahs -ahR -ala -aht -aaa -aht -aaa -aaa -app -apT -apT -apT -apT -apT -apT -aaa -aht -aaa -aaa -aAH -aBD -aCS -aDV -aEO -aAH -aGw -aHj -aHV -aDZ -aJR -anX -aLW -aNu -aOE -aPM -anX -aPB -aQN -aUf -aVk -aWn -aXk -aYj -aZg -ban -bbt -bcr -bck -beF -aPE -bgx -aJI -aDZ -aHN -bKM -bBo -blx -bmC -bnI -boR -cCl -brr -bsR -bup -bvw -bxd -byG -bAp -bBr -bCF -bDC -bES -bBp -bHi -bIv -cqz -bBo -bLT -bmC -bmC -bmC -bmC -bmC -bRo -bmC -bQD -pps -bUn -bVb -bVU -bWG -bXq -bYo -hXK -bZI -hXK -cbq -cbd -cam -cam -cam -haA -aaj -upc -wIo -hyh -upc -voh -pBJ -wIo -voh -cdm -aaa -aaa -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(133,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abW -acd -ace -ace -ace -ace -ace -ace -ace -acd -acw -acU -ade -adp -adC -adO -adZ -adZ -cnG -adZ -adZ -aeR -afj -acU -acU -acU -agq -adX -abI -abI -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -apT -aqL -arS -asV -aua -auW -awd -axi -aaa -aaa -aAH -aBE -aCS -aDW -aEP -aFA -aGv -aHk -aHV -aDZ -aJO -aLc -aLX -aNv -aOF -aPN -anX -aRY -aQN -aUf -aVl -aWo -aXl -aUf -aUf -aPE -bbu -bcs -bag -beG -aPE -bgy -aJI -aDZ -bih -bjp -bkm -bly -bmD -bJI -boS -bqb -brs -bsS -buq -bvx -bxe -byH -bAq -bBs -bCG -bDD -bET -bBp -bHj -bIx -cqz -bKM -bLU -bMW -bOe -bOM -bPM -bQD -bRq -bCC -bSP -bTG -bTQ -bVc -bUo -bWH -bXk -bTE -bZc -ueX -cCU -bZJ -wbF -cCV -ceb -epV -qLI -aaj -eiV -upc -dsz -eiV -eiV -uaO -voh -eiV -cdm -aaa -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(134,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abI -abO -abX -acg -aci -abY -abW -acu -acw -abY -abX -acg -aci -acU -adf -adq -adD -adP -aeb -aek -aek -aek -aeA -adF -afk -ael -afS -acU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqM -arT -asW -aub -auX -awe -axj -aaa -aaa -aAH -aBF -aCT -aDX -aEQ -aFB -aGx -aHl -aHV -aDZ -aJV -aLd -aLY -aNw -aOG -aPO -anX -aRZ -aQN -aUf -aVm -aWp -aXm -aYk -aUf -bao -bbv -bct -bah -aZe -bdy -bdo -aJI -wVC -aHN -blt -bmC -bmC -bmH -byK -boS -bqc -brt -bsR -bur -bvy -bxf -byI -bAr -bBt -bCH -bDE -bEU -bBp -bHk -bIv -bJE -bJN -bLV -bMX -bOf -bON -bJN -bQE -bRr -bSa -bJN -bJN -bJN -bVd -bJN -bJN -bJN -bJN -frj -pYh -pYh -pYh -pYh -pYh -pYh -pYh -pYh -hUw -nqu -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -dsz -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(135,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -acU -adg -adr -adE -adQ -aec -ael -ael -ael -aeB -aeS -afl -ael -afS -acU -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqN -arU -asX -auc -auY -awf -axk -aaa -abI -aAH -aBG -aCU -aDY -aER -aAH -aGy -aAN -aHV -aDZ -aJO -aLc -aLZ -aNx -aOH -aPP -anX -aSa -aQN -aUf -aUf -aWq -aXn -aYl -aUf -bap -bbw -bcu -bag -aXb -bdy -bdo -bhd -aBI -aHG -bjr -bko -blz -bmI -byK -boT -bqb -bru -bsT -bus -bvz -bxg -mdL -bCJ -bBu -bCI -bDF -bEV -bBp -bHl -bIv -bJF -bKO -bLW -bMY -bOg -bOO -bPN -bQF -bRs -bSb -bLW -bTH -bUp -bVe -bUp -bWI -bXr -bKQ -udl -bZK -abI -abI -abI -abI -aaa -aaa -aaa -uaO -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -hyh -aaa -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(136,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -acv -aaa -aaa -aaa -acF -acN -acV -acV -acV -adF -acU -acU -acU -acU -acU -acU -acU -afm -afB -afT -acU -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqO -arV -asY -aud -auZ -awg -axl -aaa -axi -aAH -aAH -aCV -aAH -aAH -aAH -aAN -aAN -aIc -aGV -aJP -anX -aMa -aNy -aOI -aPQ -anX -aSb -aSV -aNj -aVn -aWr -aXo -aYm -aUf -baq -bbx -bcv -bah -beH -aPE -bgz -aJI -aDZ -bip -bKM -bkp -blA -bmJ -bnL -boU -cCl -cCl -cCl -cCl -bqb -bxh -bqb -fRs -fRs -bAo -bAo -fRs -bBp -bHm -bIy -bJG -bKP -bLX -bMZ -bOh -bOP -bPO -bRz -bRt -bSc -bSQ -bTI -bUq -bVf -bMf -bWJ -bXs -bJN -cui -bJP -bJP -bJP -bJP -bJP -abI -abI -aht -pBJ -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -dsz -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(137,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -acU -acU -acU -acU -acU -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqP -arW -asZ -aue -apT -awh -axk -abI -awd -aAI -aBH -aCW -aDZ -aAN -aFC -aGz -aAN -aId -aDZ -aJR -anX -anX -aNz -aOJ -anX -anX -aKT -aSW -aKT -aUf -aUf -aXp -aUf -aUf -aPE -aPE -bcw -bdy -aPE -aPE -aDZ -aJI -aDZ -biq -bGa -bkq -blB -bkn -bnM -bsU -bqd -brv -cqk -but -bsU -bxi -byJ -bAt -bBw -bCK -bDG -bEW -bAt -bHg -cqw -cqD -bKO -bLW -bNa -bOi -bOQ -bPP -bQG -bRu -bSd -bTO -bTJ -bMf -bMf -bMf -bMf -bXt -bYp -eAZ -bZL -caz -cbs -cbs -bJP -aaa -aaa -aaa -uaO -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -hyh -aaa -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(138,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acO -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -abI -aaa -aaa -aaa -abI -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBU -lcZ -lcZ -apT -apT -apT -apT -apT -apT -awi -axk -awd -awd -aAJ -aBI -aCX -aBI -aES -aBI -aBI -aEY -aHG -aBI -aJX -aBI -aMb -aNA -aOK -aMb -aRd -aMb -aSX -aUi -aVo -aMb -aXq -aMb -aZh -bar -aMb -aSX -aMb -aBI -aEY -bgA -bhe -aDZ -bip -bKM -bkr -blC -cqe -bnN -byC -bqe -byC -cql -byC -bvA -bxj -hiY -bAt -bBx -bCL -bDH -bEX -bGb -bHn -bIA -bJH -bJN -bJN -bNb -bOj -bPQ -bRx -bRA -bSS -bST -bJN -bTK -bMf -bMf -bMf -bMf -bXu -bLW -cui -bMi -caA -cbt -ccm -bJP -aaa -aaa -aaa -pBJ -swg -hyh -pBJ -hyh -pBJ -hyh -pBJ -hyh -cdm -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(139,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lcZ -apW -apV -apU -aqQ -arX -ata -auf -ava -awj -axm -ayh -azq -aAK -aBJ -aCY -aEa -aEa -aEa -aEa -aHm -aIe -aJc -aJY -aEa -aEa -aJY -aOL -aPR -aPR -aPR -aPR -aUj -aJI -aDZ -aHN -aDZ -aDZ -aDZ -bby -aDZ -aDZ -aDZ -aGV -aDZ -bhh -bhM -bir -bBo -bks -blD -bko -bko -bko -bqf -bko -bsV -buu -bvB -bxk -byK -bAt -bBy -bCM -bDI -bEY -bGc -bHo -bRX -cqE -bJN -bLY -bNc -bOk -bPQ -bRy -hka -bQH -bSe -bPQ -bTL -bMf -bMf -bMf -bWM -bXv -bVh -poP -bZL -caB -cbs -cbs -bJP -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(140,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBU -aoB -apr -apV -aqR -arY -atb -aug -cBU -awk -axn -axn -axn -aAL -aAL -aCZ -aAL -aAL -aAL -aAL -aGU -aCZ -aJd -aJZ -aAL -aMc -aNB -aOM -aPS -aRe -aMc -aHE -aUk -aJZ -aMc -aXr -aMc -aZi -aMc -bbz -aMc -aPS -aAL -aGU -aAL -aJZ -aAL -bis -aAN -bkt -bkt -bku -bkt -bkt -bkt -bku -bkt -bkt -bvC -bxl -cqt -bAu -bAu -bAt -bAt -bAu -bAu -bHp -cqx -bJJ -bKQ -bLZ -bNd -bOl -bOT -bPR -bPQ -bPQ -bQI -bPQ -rNi -bMf -bMf -hjk -pmB -bXw -dJk -cui -bJP -bJP -bJP -bJP -bJP -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(141,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aaa -lcZ -apU -apV -apW -aqS -arZ -atc -auh -avb -awl -awd -abI -awd -aAM -aBK -aDa -aEb -aAM -aFD -aDa -aAN -aIf -aJe -aKa -aLe -aLe -aNC -aON -aLe -aLe -aPW -aSY -aUl -aUs -aPW -aLf -aLf -aLf -aLf -aLf -aEj -aEj -aEj -aEj -bgB -aJI -aDZ -aHN -bjm -bku -blE -bmL -bnO -boX -bqg -brw -bsW -bku -cqp -bxm -byL -bAv -bsU -cqk -bsU -bsU -bGd -bHq -bIC -bJK -bJN -bMa -bNe -bOm -bOU -bPS -bSf -bUp -bTM -bUp -bTN -bMf -bMf -bVZ -bOX -bUA -bYp -eAZ -bZL -caC -cbu -cbu -bJP -aht -aht -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -aht -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(142,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiT -plA -oMN -akf -gxe -akf -eqD -oMN -vlF -tvj -aiT -aaa -cBU -lcZ -lcZ -cBU -cBU -asa -atd -aui -avc -awm -awd -abI -axi -aAN -awd -awd -aAN -aAN -awd -awd -aAN -aIg -aJf -aKb -aLe -aMd -aND -aOO -aPT -aRf -aSc -aSZ -aOT -aVp -aWs -aPW -aYn -aZj -bas -aLf -bcx -bdz -aFi -bfu -aDZ -aJI -bhP -aHN -bjm -bkv -blF -bmM -bmM -bmM -bqh -brx -bsX -buv -bvE -bxn -byM -bAw -bBz -cqv -bBz -bBz -bBz -bHr -bID -bJL -bKR -bMb -bNf -bQJ -bOV -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bOX -bXx -bVi -cui -bMi -caD -cbv -ccn -bJP -aaa -aaa -fon -shH -shH -shH -shH -shH -shH -shH -shH -shH -shH -fon -aaa -aht -shH -shH -fon -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(143,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -qPB -iqc -ngp -cBr -cBs -tap -gna -klV -xbJ -aiS -aaa -aaa -aaa -aaa -aaa -cBU -cBU -cBU -cBU -cBU -awd -axi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awd -aHN -aIU -aJI -aLe -aMe -aNE -aOP -aPU -aRg -aSd -aTa -aOT -aVq -aWt -aXs -aYo -aVu -bat -aLf -bcy -qAM -aEj -aEj -bgC -bhi -bhQ -bip -bjm -bku -blG -bmN -bnP -bnP -bqi -bmM -bsY -bku -bvF -bxo -byN -bAx -bko -bko -bko -bko -bko -bHs -bBA -bJM -bJN -bMc -bNg -bOn -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVY -bUs -bVg -bVm -poP -bZL -caE -cbu -cbu -bJP -aht -aht -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -aaa -aht -shH -fon -fon -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(144,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -aiS -aiS -aiS -epJ -uaC -cBv -cBw -gNv -nnh -sqh -aiT -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awd -aHN -aIU -aJH -aLe -aMf -aNF -aOQ -aPV -aRf -aSc -aSZ -aUm -aVp -aWu -aXt -aYp -aPY -bau -aLf -aFi -aFi -beI -beI -bgD -bhj -beI -bit -beI -bkt -blH -bmO -bnQ -bnQ -bqi -bry -bsZ -bkt -bvG -bxp -byO -bAy -bBB -bCN -bDK -bEZ -bGe -bHt -bIE -bJN -bJN -bMd -bPT -bOn -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bOX -kas -bNm -cui -bJP -bJP -bJP -bJP -bJP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(145,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -cBk -jhD -cBo -alQ -xjg -cBw -noC -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -aiS -aiS -aiS -aiS -apX -avd -avd -apX -ayi -ayi -apX -aBL -aBL -apX -aET -rYC -aET -aET -aHN -aIU -aJI -lAs -lAs -iKb -aOR -iKb -lAs -lAs -aTb -aOT -aVp -aWu -aXu -aYq -aPY -bav -aLf -aFi -jBh -beI -bfv -bgE -bhk -bhR -biu -bju -bkt -blI -bmO -bnQ -bnQ -bqi -brz -bta -bkt -bvH -bxq -byP -bAy -bBo -bCO -bBo -bCO -bBo -bCO -bBo -bJN -bKS -bMe -bNh -bOo -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bWO -bXA -bQO -poP -bZM -caF -cbw -cby -bJP -aaa -aaa -aaa -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(146,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiU -jHP -aju -ajt -alQ -mnG -tap -tap -aiS -anY -apt -sbk -aiS -alP -cBB -apu -ale -ale -asb -coe -apX -ave -awn -apX -ayj -azr -apX -aBM -aDb -apX -oFo -jOB -qbZ -aET -aHN -aIU -aJI -lAs -aMg -aNH -aOS -aPX -aRh -aSe -aTc -aOT -aVp -aWu -aPW -aYr -aOV -baw -bbA -bcz -bdB -beI -bfw -bgF -bhl -bhS -bhS -bhS -bkw -blJ -bmP -bnR -bnR -bqj -brA -btb -bkt -bvI -bxr -byQ -bBo -aaa -aht -aht -aaa -aht -aht -aaa -bJN -bKT -bWM -bNi -bQK -bOZ -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bMf -bXB -bNm -cui -bMi -caG -cbx -cco -bJP -aht -aht -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(147,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -kkk -akh -alc -alR -amF -pzF -tap -anm -ajv -ajv -aju -ajv -cBA -aiS -akn -apX -apX -asc -atf -apX -avf -awo -apX -ayk -azs -apX -aBN -aDc -apX -aET -cor -aET -aET -hFy -aJh -bhe -lAs -aMh -aNI -fwl -dMB -aRi -aSf -aTd -aUn -aVr -aWu -aLf -aYs -aZk -bax -aLf -aFi -bdC -beI -bfx -bgG -bhm -bhT -biv -biv -bkt -blK -bmQ -bmM -bmM -bmM -brB -btc -bkt -bvJ -bxs -byR -bAA -bAA -bCP -bAA -bCP -bAA -bCP -bAA -bHw -bKU -bOr -bPU -bRw -bPa -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVY -bWP -bXy -bQO -poP -bZN -caH -cby -cby -bJP -aaa -aaa -aaa -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(148,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -cBl -cBm -cBp -alS -amG -mnG -cPO -aiS -aiS -aiS -aiS -aiS -aiS -aiS -akn -apX -aqT -asd -atg -auj -avg -awp -apX -ayl -azt -apX -aBO -aDd -apX -aEU -aFE -aGA -aHn -aIi -aJi -aKe -klb -aMi -aNJ -fwl -aPZ -aRj -lAs -aTe -aUo -aVs -aWv -aLf -aPW -aZl -aPW -aLf -aLf -bdC -beI -bfy -bgH -bhn -bhU -biw -biw -bkt -blL -bmR -bnS -boZ -bqk -brC -btd -bkt -bvK -bxt -byS -bAA -bBC -bDN -bDL -bFa -bGf -bCR -bIF -bHw -bKV -bOX -bUv -bQL -bPa -bMf -bMf -bMf -bMf -bSU -bTT -bUv -bKX -bTR -bUt -bXC -bYs -bVW -bYw -bYw -cBT -bYw -bYw -bYw -aht -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(149,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -akg -aiS -aiS -akg -aiS -aiS -aiS -aob -eaw -ajv -ajv -cnX -aiS -apv -apX -aqU -ase -ath -apX -atf -awq -apX -atf -azu -apX -atf -aDe -apX -aFF -vuP -aGB -aET -aHN -aIU -aJI -lAs -aMj -aNK -fwl -dMB -dMB -iKb -aTf -aUp -aVt -aVt -aVt -aVt -aZm -aPY -bbB -aLf -bdD -beI -bfz -bgI -bho -bfz -beI -beI -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bvL -bxu -byT -bAB -bBD -mzE -bDM -bFb -bGg -bHu -bIG -bJO -bKW -bMg -bNj -bOp -bPV -bPV -bPV -bPV -bPV -bUw -bUw -bUw -bVj -bTS -bUu -bXD -bYt -bZf -bZO -caI -cbA -ccp -cdg -cbz -aaa -aaa -mau -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(150,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -wMF -cBn -cBq -ajv -ajv -iEU -aiS -akj -ale -ale -ale -ale -ale -ale -apw -apX -aqV -asf -ati -auk -avh -awr -axo -aym -awr -aAO -aBP -com -apX -aET -lKL -aET -aET -aHN -aIU -aJI -lAs -aMk -aNL -aOU -aQa -aRk -aSg -aTg -aUq -aVu -aPY -aPY -aPY -aZn -aPY -bbC -aLf -bdC -beI -bfA -bgJ -bhn -bhV -beI -aKq -bkx -blM -bmS -bnT -bpa -bql -brD -bte -buw -bvM -bxv -byU -bAA -bBE -bCQ -bCR -bGh -bGh -bCR -bIH -bHw -cqG -bOX -bNk -bOq -bPd -bPW -bPW -bPW -bPd -bPW -bPW -bPW -bPd -bUr -bWQ -bXE -bYu -bZg -bZP -caJ -cbB -ccq -cdh -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(151,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -aiS -aiT -aiT -aiS -aiS -aiS -cBx -aiS -aiS -aiS -aiT -aiT -aiT -aiS -apX -cod -asg -atj -apX -avi -aws -coi -aBQ -aDf -aDf -aBQ -con -cop -aEW -kIO -aGC -cos -coy -aJj -aJI -lAs -aMl -aNM -dse -aQb -aRl -aSh -aTh -aUr -aVv -aWw -aXv -aYu -aOT -aPY -bbD -aLf -bdD -beI -beI -beI -bhp -beI -beI -bjv -bkx -blN -bmT -bnU -bpb -bqm -brE -btf -bux -bvN -bxw -byV -bAA -bBF -bCQ -bDO -bCR -bCR -bCR -bII -bHw -bKY -bMh -bNl -bQM -bPe -bPX -bSR -bRB -bSh -bSV -bTP -bUy -bVk -bWb -bUz -bXF -bYv -bZh -bZQ -caK -cbC -ccr -cdi -cec -ceA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(152,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiT -akl -aiT -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -apX -apX -apX -avj -awt -axp -ayn -azv -col -aBR -coo -apX -aGV -aDZ -aGD -aDZ -aDZ -aJk -aJH -lAs -aMm -lAs -aOW -lAs -lAs -lAs -eeQ -aUs -aLf -eex -aLf -aLf -aUl -baz -aLf -aLf -bdE -bcz -bcz -bcz -bhq -aNR -bix -ygZ -bkx -blM -bmU -bnT -bpc -bqn -brF -bkx -buy -bvO -bxx -byW -bAA -bBG -xEx -bDP -bFd -bGi -bHv -bIJ -bHw -bKZ -bOR -bWR -bWc -bPf -bPY -bQO -bPY -bPf -bPY -bQO -bWc -bVl -bWc -bWR -bXG -bYw -bZi -bZR -caL -cbD -bYw -cdj -bYw -bYw -aaa -gYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(153,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajx -akm -alf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -aul -avk -awu -axq -ayo -azx -aAP -avk -aDg -aEc -aEY -cot -aBI -aBI -aBI -aJl -aKf -lAs -aMn -lAs -aOX -lAs -aRm -aLg -aTi -aUt -aVw -aWx -aXw -aYv -aZo -aTm -bbE -bbE -bbE -bbE -bbE -bbE -aEj -aEj -biy -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bod -bvP -bxy -byX -bAA -bAA -bCS -bDQ -bCS -bAA -bHw -bHw -bHw -bLa -abI -bNn -abI -bLa -abI -bNn -abI -bLa -abI -bNn -abI -bLa -abI -bNn -abI -aht -bZj -bZS -caM -cbE -thA -cdk -ced -bYw -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(154,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajy -akn -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ash -ash -ash -avk -awv -axr -ayq -azy -aAQ -avk -aDh -aEd -aEd -aEd -aEd -aEd -aIj -aJm -aKg -cDa -aMo -cDa -cDa -cDa -cDa -aLg -wDZ -aUu -aVx -aVx -aVx -aYw -aZp -aZt -bbF -bcA -bdF -beJ -bfB -dps -aZv -aUC -biz -bjw -bky -blP -bmV -bnV -bpd -bqo -brG -btg -fjs -bvQ -bxz -byY -bAC -bBH -bCT -bDR -bCT -bGj -buz -abI -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -aaa -bYw -bZT -caN -bZT -bYw -cdl -oGw -bYw -aaa -mau -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(155,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajy -ako -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aqY -asi -atk -izB -avk -awv -axt -coj -cok -ayr -aBS -aDi -aEd -aEZ -aEZ -aEZ -aEd -aEd -aJn -aEd -aEd -aMp -aNN -aOY -aQc -aRn -aSi -aTk -aUv -aVy -aWy -aXx -aYx -aZq -baA -bbG -bcB -bdG -beK -bfC -bbE -aTx -aEj -aTx -bjw -bkz -blQ -bmW -bnW -bpe -bqp -brH -brH -buA -bvR -bxA -byZ -bAD -bBI -bCU -bDS -bwb -bGk -buz -abI -bJP -bLc -bMj -bNo -bJP -bPg -bPZ -bQP -bJP -bSj -bSW -bTV -bJP -bVn -bWe -bWT -bJP -aht -bYw -bZU -caO -cbF -bYw -gmZ -bYw -bYw -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(156,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajy -akn -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -asj -atl -aum -avk -awv -axu -ays -azA -avk -avk -aDj -aEe -aFa -aFG -aGF -aGF -aGF -aFI -aKh -aEd -aMq -aNO -aOZ -aQd -aRo -aSj -aTl -aUw -aTm -aTm -aTm -aYy -aZo -baB -bbH -bcC -bdH -beL -bfD -bbE -aTx -aEj -aTx -bjw -bkA -blR -bmX -bnX -eSL -bqq -bpf -bth -wBb -bvS -bwa -bza -bAE -bBJ -bBJ -bDT -bFf -bGl -buz -abI -bJP -bLd -bOS -bLe -bJP -bPh -bQa -bPh -bJP -bSk -bSX -bSk -bJP -bVo -bWf -bVo -bJP -aht -bYw -igB -caP -fRr -qVk -cdm -cdm -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(157,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajz -akk -alh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -apX -avl -fIu -epj -aIh -azA -dbi -dbi -aDk -aEd -aFb -aFH -aGG -aHo -aIk -aJo -aGF -aEd -aMr -aNO -aPa -aNO -aRp -aSk -aTm -aUt -aVz -aWz -aVz -aYz -aZo -baC -bbI -bbI -bdI -bdI -bdI -bbI -bhr -bbI -aTx -bjw -bkB -blS -bmY -bnY -bpg -bqr -bqs -bti -wBb -bvT -bxC -bzb -bAF -bAF -bCV -bDU -bCV -bAF -bHy -aaa -bJP -bLe -bMk -bLe -bJP -bPh -bQb -bPh -bJP -bSl -bSY -bSk -bJP -bVo -bWg -bVo -bJP -aaa -bYw -bYw -caQ -bYw -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(158,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akp -aiT -aaa -aaa -aaa -aaa -aaa -aaa -aaF -aaF -aaF -aaF -atn -atn -aww -axv -ayt -azB -axv -axv -atn -aEd -aEd -aFI -aGH -aEd -aEd -aEd -aKi -aEd -aMs -aNO -aPb -aQe -cDa -cDa -aTn -aUx -aVA -aTm -aTm -aTj -aZr -baD -bbI -bcD -bdJ -beM -bfE -bgK -bhs -bbI -aTx -bjw -bjw -bjw -bjw -bjw -bph -eYr -bqs -brJ -wlK -bvU -bxD -bzc -bAF -bBK -bCW -bDV -bFh -bGm -bHy -aaa -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -abI -aaa -bYw -caR -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(159,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -cBy -aiS -aaF -aaF -aaJ -aaJ -aaJ -aaF -aaF -abw -abz -abH -abl -axw -abg -axw -ayu -azC -axw -aBT -atn -aEf -aFc -aFI -aGF -aHp -aIl -aEd -aKj -aEd -aMt -aNP -aPb -aNO -aNP -tLP -aTq -aSk -aTm -aTm -aTm -aYy -aZs -baE -bbJ -bcE -bdK -beN -bfF -bgL -bht -bbI -biC -pdW -bjw -blT -bmZ -bnZ -bpi -edl -bqs -btk -buB -eNq -eNq -urP -bAF -bBL -bCW -bDW -kmn -bGn -bHy -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -abI -nbu -hbl -nbu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(160,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -ajv -aaH -aaN -abc -abm -abm -abq -abm -abm -abA -abT -abK -abL -abM -abP -abR -azC -axw -aBU -atn -aEg -aFd -aFJ -aGF -aEd -aEd -aEd -aEd -aEd -aMu -aNO -aPc -aQf -aRq -cDa -aTp -aSk -aTm -aTm -cCB -aYA -aZt -aZp -bbK -bcF -bdL -beO -bfG -bgM -bhu -bbI -aFi -aTx -bjw -blU -bna -bqs -bqs -bqt -brK -btl -dkR -bvV -cxt -bzd -wnJ -bBM -bCX -bDX -bFi -bGo -bHy -aaa -aby -aaa -aby -aaa -aby -aaa -aaa -bzy -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -ckK -ckK -ckK -cju -ckK -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(161,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaE -aaF -aaR -aaL -aaO -aaO -aaO -aaO -aaO -aaW -aaF -abb -abd -abh -abQ -abS -azD -aAS -aat -atn -aEh -aFe -aFI -aGF -aHq -aIl -aEd -aKk -aLh -aMv -aNQ -aNO -aQg -aNP -cDa -aTq -aSk -aVB -aWA -aXy -aYB -cCT -baF -bbI -bcG -bdM -beP -bfH -bfH -bhv -bbI -aEj -bjx -bjw -blV -bnb -bqs -bqs -bqt -brL -btl -buC -bvW -bxG -bze -vTN -bBN -bBN -bDY -bFj -bGp -bHy -abI -aby -aht -aby -aht -aby -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -ckK -cju -cju -cju -ckK -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(162,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaG -aaF -aaS -aaL -abn -aaO -aaO -aaO -aaO -aaW -aaY -aba -axw -abg -axw -axw -axw -axw -aBW -atn -aEd -aEd -aFK -aEd -aEd -aEd -aEd -cCX -cDa -cDa -cDa -coL -coL -coL -cDa -aTr -aUy -aPd -aUy -aXz -aLg -aLg -aLg -bbI -bbI -bbI -bdI -bfI -bdI -bbI -bbI -aGP -bjx -bjw -blW -bna -pbI -bqs -bqt -brM -btl -gDZ -bvV -bxH -bzd -wnJ -bBO -bCZ -bDX -bFk -bGq -bHy -aaa -aby -aaa -aby -aaa -aby -aaa -aaa -aaa -acO -aby -aby -aby -aaa -acO -aby -bzy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(163,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaF -aaS -abj -aaO -aaO -aaO -aaO -aaO -aaW -aaY -awB -abe -abi -axw -axw -axw -axw -aBX -atn -aEi -aEd -aFL -aGI -aHr -aEd -aJp -cCY -aLi -aMw -aEj -aaa -aaa -aaa -aLg -aTs -aUz -aPd -aWB -aXA -aLg -aaa -aaa -aaa -aaa -aaa -bdI -bfJ -bdI -aaa -aEj -pKd -bjx -bjw -qDJ -vmG -bnZ -pDP -nBL -bqs -xgG -cKA -bvY -bvY -fkH -bAF -bBP -bCW -bDX -bFl -bGr -bHy -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(164,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaI -aaS -aaL -abo -aaO -abr -aaO -aaO -abB -atn -atn -avm -avm -axy -avm -avm -axy -avm -avm -atn -atn -aFM -aGJ -aGJ -aDl -aEk -cCZ -aLj -aMx -aEj -aaa -aaa -aaa -aLg -aTr -sQt -aPd -sQt -aXz -aLg -aaa -aaa -aaa -aaa -aaa -bdI -oPy -bdI -aaa -aEj -aEj -bjx -bjw -bjw -uAZ -boe -boe -bqv -bqs -brJ -buD -bvZ -bxJ -tAK -bAF -bBQ -bDa -bEa -bFm -bGs -ubW -ubW -xIx -bHy -bHy -bHy -bOs -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(165,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaK -aaS -aaL -aaO -aaO -aaO -aaO -aaO -abC -atn -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aEd -aEd -aEd -aEd -aEj -aEj -aKq -aJs -aEj -aaa -aaa -aaa -aaa -aaa -aUA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bfK -aaa -aaa -aaa -aEj -obj -aLi -tim -eXo -bof -boa -bqw -brH -btp -buE -bwa -efu -bzh -bAF -bBR -bDb -bEb -bFn -bGt -bHz -bIM -bJQ -bIM -bMl -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -ckK -clF -cju -cju -ckK -ckK -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(166,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaI -aaS -aaL -aaO -aaO -aaO -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFN -aGK -aHs -aEj -aJq -aKn -aKn -aMy -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aFi -bjw -nJI -bog -bpo -lAR -bqs -bti -buF -bwb -bxK -bzi -bAF -bBS -bDc -bEc -bGu -bGu -bGu -bIL -bJR -bLf -bMm -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -ckK -cju -cju -cju -cju -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -cju -cju -ckK -cju -cju -cju -ckK -clv -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(167,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaF -aaT -aaL -aaO -aaO -aaO -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFO -aGL -aHt -aEj -aJr -aEj -aLk -aLk -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aEj -bjw -xPa -boh -bpp -bqx -bqs -brJ -buG -bwc -bxL -bzj -bAF -bBT -bDd -bEd -bFp -bGv -bHA -bIM -bJS -bIM -bMn -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -cju -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(168,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -ajv -aaF -aaU -aaL -aaO -aaO -abs -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFP -aGM -aFi -bfu -aJs -aKo -aLl -aMz -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aFi -bkD -vxp -boc -bnc -tdp -oDP -bts -buH -bjw -bjw -bjw -bHy -bHy -bHy -bHy -bHy -bGw -nsD -rPW -kfh -bHy -bHy -bHy -bOs -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjv -cju -cju -cju -cju -ckK -cju -cju -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -clv -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(169,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -aaQ -aaF -aaV -aaM -aaP -aaP -abt -aaP -aaP -abD -atn -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFQ -aGN -aGN -aEj -aJt -aFi -aFi -aEj -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aEj -bjw -bjw -bjw -bjw -bkF -brR -btt -brR -bkF -ldQ -lNW -mSc -sci -bwm -glf -bFr -qtA -khk -bIN -dAF -bCV -bCV -bCV -bOu -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -cjv -cjv -cjx -cjx -cjx -cju -cju -ckK -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -ckK -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(170,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -sbk -aaF -aaX -aaZ -aaZ -abk -abp -abu -abx -abE -atn -atn -avm -avm -vzz -avm -avm -vzz -avm -avm -atn -atn -aEj -aEj -aEj -aEj -aJs -aKp -aFi -aMA -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -aEj -aEj -aEj -aEj -aEj -aEj -aEj -oTl -vzP -vzP -iWV -aFi -bpq -bnj -brT -bxF -wkZ -bnj -bwm -bwm -lWy -gXg -bwm -pNy -bFs -bGx -bHC -cxb -bJT -wOS -bMp -bPl -bcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ahi -cjw -cjV -ckt -cjx -cjx -cjx -cju -cju -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(171,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -ajv -aaF -aaF -aaF -aaF -aaF -aaF -aaF -aaF -abF -aaF -aiS -atn -awC -axz -ayw -azE -aAT -aBY -atn -aEj -aFf -hUt -aFi -aFi -aFi -aJs -aFi -aFi -aFi -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -bdQ -beR -aUC -aUC -eCw -aUC -aUC -qHI -aKq -aEj -wAI -vzP -vzP -bqA -brU -bxF -buK -dqw -spz -spz -spz -wFT -bwm -veM -bFt -bGy -bHD -fBz -gMm -bCV -bCV -bCV -ahi -aht -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -ahi -cjx -cjx -cjx -cjx -cjx -cjx -cjx -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -cjx -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(172,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aaD -ale -ale -ale -ale -ale -ale -ale -abv -ale -abG -ale -ale -avn -awD -axA -ayx -azF -aAU -aBZ -aDl -aEk -aEk -aEk -aEk -aEk -aEk -aJv -aKn -aKn -aMB -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -aTx -aEj -aKq -aEj -gfi -aEj -bkF -bkF -bkF -bkF -bkF -bkF -bkF -bkF -brV -ume -bkF -bkF -bkF -bkF -bxP -nev -hgD -bEf -bFu -noM -bHE -bJV -bLh -bMq -aht -aht -aaa -aht -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -ahi -cjx -cjx -cjx -ckL -cjx -clj -cjx -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -ckK -ckK -clv -clv -clv -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -cjx -cnp -cnq -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(173,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -atn -atn -avm -avm -avm -avm -atn -atn -aEj -aEj -aEj -aEj -aHu -aEj -aEj -aKq -aEj -aJs -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aTx -aFi -aFi -aEj -bhz -lEn -pnU -pnU -bnd -taT -lWH -wfs -pfP -bqC -brW -vMx -ofN -gdL -iLl -bkF -bwm -xlA -bwm -bAF -bAF -bGA -bAF -bAF -bAF -bAF -bAF -uaO -dsz -xQk -hxI -xQk -hxI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -ahi -cjx -cjx -cjx -cjx -cjx -cjx -cjx -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -cju -cju -cju -cjx -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(174,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -abI -abI -aEj -aFg -aFR -aGO -aFi -aGO -aFi -aFi -aEj -aJs -aEj -aEj -aEl -aEl -aEl -aEl -aEj -aEj -aht -ccs -aEj -aEl -aEl -aEj -aEj -aTx -aFi -aFi -aEj -bjD -lEn -uwb -bjB -bkH -mql -bpn -hEX -brO -bzg -brX -csu -xzp -ugC -gdJ -bkF -lWy -cDB -lWy -tSL -lWy -bAG -bwm -rBh -gjv -tfx -xlg -mJp -nqu -mJp -nqu -tlp -ilE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ahi -cjw -cjx -cjx -ckt -cjx -cjx -cju -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(175,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aEj -aFh -aEj -aGP -aEj -aIp -aEj -aEj -aEj -aMC -aNR -aNR -aNR -aNR -aNR -aTu -aUB -aEl -aaa -aEj -aZv -aUC -aUC -bcH -aUC -aZw -beS -aFi -aEj -gfi -lEn -biD -biD -bnd -tdB -bpn -thW -bpn -bqE -brW -btu -xpr -ihk -pXg -bkF -kPi -cDB -hxn -uvq -bFx -bIP -bNq -tSL -hMx -tfx -xlg -mhK -wIo -mhK -mhK -mhK -hyh -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -cjv -cjv -cjx -cjx -cjx -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(176,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aFi -aEj -aEj -aEj -aIq -aJw -aKr -aEj -aMD -aPf -aQj -aRs -aLi -aSl -aTv -aGO -aEj -aEj -aEj -aTx -aFi -aGO -bcI -aFi -aFi -aFi -bfM -aEj -bhz -lEn -vYN -vYN -bnd -blZ -mQm -ilD -edJ -bqF -brW -btv -nuv -ihk -cPT -bkF -syQ -cDB -rFq -obP -bFy -bGB -bwm -bwm -bwm -rNB -bwm -bwm -rNB -bwm -rNB -bwm -cdm -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjv -cju -cju -cju -cju -cju -cju -ckK -cju -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -ckK -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(177,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aFi -aEj -aaa -aEj -aEl -aEj -aEj -aLm -aLm -aLm -aQk -aRt -aLm -aLm -aTw -aUC -aVE -aUC -aUC -aZw -aEj -aEj -hSM -aEj -aEj -kIo -bfN -aEj -gfi -aEj -bkF -bkF -bkF -xWl -hPN -nxT -ueP -ost -nOY -dgz -jxl -tXn -hfZ -bkF -kkQ -rKL -lWy -lWy -bFz -bIR -fwr -eMC -bwm -aht -bwm -ikB -iVJ -lWy -typ -bwm -aht -aby -aht -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -ckK -ckK -cju -ckK -cju -cju -ckK -ckK -cju -ckK -cju -cju -cju -ckK -cju -ckK -cju -cju -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(178,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bZV -aEj -aaa -aaa -aaa -aaa -aLn -aNT -xer -aQo -aPg -aRu -srZ -aLm -aTx -aEj -aEj -aEj -aEj -aYC -baG -cfQ -bcJ -mvm -baG -aEj -aEj -aEj -bhB -fwI -fwI -bjE -bkF -bnj -bnj -bnj -bnj -brR -qVP -qtF -jwe -brR -bnj -bkF -bkF -bkF -bkF -bwm -bwm -bwm -bwm -lQn -bwm -rNB -bwm -wTO -hPU -xsO -rEh -rNB -aaa -aby -aaa -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -ckK -ckK -cju -cju -ckK -cju -ckK -ckK -ckK -clv -ckK -ckK -cju -cju -cju -ckK -ckK -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(179,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abN -aaa -aaa -aaa -aaa -aaa -ahi -ahi -ahi -aaa -aaa -aaa -aaa -aLm -aLm -aNU -phS -dqY -aRv -sZh -aLm -aTx -aEj -aav -aFi -aFi -aFi -baG -bbL -bcK -bdR -baG -bfP -bfP -aEj -aEj -aEj -aKq -gfi -bkF -blX -blX -bpr -oSc -bsa -btw -buI -bwe -bxM -bzk -bAH -blX -blX -bkF -kgR -bFB -bwm -svN -bIQ -uek -lWy -bwm -qnT -lJr -lWy -maW -bwm -aht -aed -aht -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(180,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aME -eFG -phS -dqY -aRw -sqQ -aLm -aTy -aEj -aEj -aHu -aEj -aEj -baG -bbM -bcL -bdS -baG -kKI -aFi -hOz -aEj -oRX -biF -bjF -bkF -bnh -blX -blX -kNf -bsb -btw -buJ -bwe -bxN -bzl -blX -bBU -bDe -bkF -dMO -lWy -rxQ -lWy -bIQ -lWy -lWy -mES -lWy -lWy -lWy -lWy -bwm -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -ckK -ckK -cls -ckK -ckK -cju -cju -ckK -cju -cju -ckK -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(181,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLo -aMF -aNV -phS -cvf -aQn -sqQ -aSm -aTz -aEj -aVG -aFi -aFi -aYD -baG -rWE -uXH -rWE -baG -eZA -tDn -aFi -nZw -aFi -gfi -aFi -bkF -bni -blX -blX -hvW -igE -btx -dxc -bwf -bxO -bzm -blX -blX -blX -bkF -hTl -bFC -bwm -nzD -uoj -bwm -lWy -bwm -dMI -lWy -lWy -jDA -bwm -aht -aby -aht -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(182,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLo -aMG -aNX -phS -xer -aRy -aSn -aSn -aTA -aEj -aVH -aFi -aXC -aYE -baG -rWE -oCX -rWE -baG -vzT -gUb -aFi -aEj -gSI -gfi -bfM -bkF -bnj -bnj -bnj -bnj -bnj -itl -buL -cuc -bnj -bnj -bnj -bnj -bnj -bkF -bwm -bwm -bwm -bIQ -bwm -bwm -bwm -bwm -oEG -ndI -lWy -cDB -rNB -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(183,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aMH -aNY -aPi -aQp -aRz -daY -aSo -aTB -aEj -aVI -aFi -aXC -aYF -baG -sut -oCX -rWE -baG -dsv -dLY -xyl -aEj -aKq -gfi -ybX -bkF -blX -blX -bpr -bqG -bsa -btw -buM -bwh -bxM -bzn -bAH -blX -blX -bkF -qIO -jXA -bwm -bIQ -hXt -bwm -aht -bwm -hFp -abf -abf -ijU -bwm -aht -aed -aht -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(184,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aLm -aLo -aLm -aLo -aLm -aLm -aLm -aLm -aEj -aEj -aEl -aEl -aEl -baG -rWE -atZ -rWE -baG -aEj -aEj -aEj -aEj -aEj -ntj -bfM -bkF -bnh -blX -blX -bqH -bsb -btw -buN -bwe -bxQ -xxO -blX -bBU -bDe -bkF -dmP -bFD -bwm -gxK -pWF -bwm -aht -bwm -bwm -rNB -bwm -rNB -bwm -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(185,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -abI -aaa -aaa -abI -abI -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -ybX -bkF -bni -blX -blX -bqI -bsc -btx -buO -bwf -bxR -bzp -blX -blX -blX -bkF -aaA -lWy -fKj -lWy -bIQ -bwm -aed -aaa -aht -aaa -aht -aaa -aed -aaa -aaa -cFB -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(186,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -fNv -bkF -bnj -bnj -bnj -bnj -bnj -bsf -buQ -buU -bnj -bnj -bnj -bnj -bnj -bkF -sZu -lWy -bwm -bwm -bIQ -bwm -aby -aht -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(187,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -bfM -bkF -blX -blX -bpr -bqJ -bsa -gIG -buN -bwe -bxM -bzq -bAH -blX -blX -bkF -wfc -sAK -bwm -hXt -bIQ -rNB -aby -aaa -aed -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(188,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -ybX -bkF -bnh -blX -blX -bqK -bsd -gIG -buN -bwe -bxS -bzr -blX -blX -bDe -bkF -bwm -bwm -bwm -bwm -bIQ -bwm -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(189,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -abN -aaa -aEj -aEj -ntj -fNv -bkF -blX -blX -blX -bqL -bse -xjT -btE -buW -bxT -bzs -blX -blX -blX -bkF -ueV -heC -uug -cDB -bIQ -bwm -bwm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(190,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -bnl -gfi -aFi -bkF -bkF -bkF -bkF -bkF -bkF -bkF -qdi -bkF -bkF -bkF -bkF -bkF -bkF -bkF -doo -efU -eMC -cDB -dVJ -jDA -rNB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(191,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -iCe -vsk -lje -rxa -bnl -bok -aFi -aFi -aEj -btA -uXG -mtI -bwm -kFu -tSL -cDB -cDB -aad -dtm -bwm -jFw -xpD -jQh -bwm -bwm -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(192,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -wOf -bhB -fwI -eCK -wQU -xah -fwI -fwI -bqO -btB -btF -gIC -bwn -vRi -dKs -oKa -rgn -jRG -gmp -bwm -rNB -bwm -bwm -bwm -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(193,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEj -aEj -aEj -aEl -aEj -bnn -bom -aEj -bkF -bkF -xKc -vgp -oBb -bkF -bkF -bwm -bwm -bwm -euQ -vuQ -bwm -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(194,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aEj -aEj -aEl -bkF -bkF -kFD -eIL -mTS -pMG -iPz -sXR -sXR -pwS -bwm -vtl -bwm -bwm -aaa -aby -aht -aed -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(195,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aed -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnd -kRK -cPy -dir -mTS -ufa -oNE -oep -bnd -mlr -sEB -jEX -rui -bwm -aht -aby -aht -aby -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(196,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnd -qcD -xxw -lhA -lFh -ufa -taA -qcH -bnd -nNN -bwm -lWy -bwm -bwm -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(197,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcR -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -bnd -qYq -sNz -nqV -oSL -hUJ -riW -jtf -bnd -aht -bwm -vHf -bwm -aaa -aht -aby -aht -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(198,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -beU -abI -aby -aaa -bnd -lGS -nIm -oEW -iuM -wXu -cOp -lGS -bnd -aaa -ahi -ahi -ahi -aht -aaa -aed -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(199,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -aTE -aaa -aby -aaa -bkF -dmT -tqX -nEb -pWm -uvo -mMz -dmT -bkF -aaa -aaa -aaa -aaa -aby -aht -aby -aht -aby -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(200,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -bkF -bkF -bkF -pbR -blX -naq -bkF -bkF -bkF -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(201,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aed -aht -bkF -blX -blX -blX -blX -blX -blX -blX -bkF -aht -aed -aht -aed -aaa -aaa -aed -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(202,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -xKc -blX -blX -iPj -tfP -iPj -blX -blX -xKc -aaa -aby -aaa -aht -aaa -aaa -aby -aaa -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(203,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aby -aaa -bkF -blX -blX -blX -tuy -blX -blX -eQR -bkF -aaa -aby -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(204,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -bkF -bkF -bkF -xKc -bkF -xKc -bkF -bkF -bkF -aaa -aed -aaa -aby -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(205,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -ajA -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(206,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aed -aby -aby -aby -aby -aby -aby -aed -aby -aby -aht -aby -aht -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(207,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aed -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(208,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(209,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(210,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(211,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aed -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(212,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(213,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(214,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcT -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(215,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcU -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(216,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(217,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aby -aby -aby -aby -aby -aby -aby -aby -aby -cFB -bcQ -cFB -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(218,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -bcV -abI -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(219,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -cFB -abI -cFB -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(220,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(221,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(222,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(223,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(224,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(225,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(226,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(227,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(228,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(229,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(230,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(231,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(232,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(233,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(234,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(235,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(236,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(237,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(238,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(239,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(240,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(241,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(242,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(243,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(244,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(245,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(246,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(247,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(248,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(249,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(250,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(251,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(252,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(253,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(254,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(255,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabyabyabyabyabyabyabyabyabyabyabyabyabyaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaaaaabIaaaaaaaaaaaaabJaaaaaaaaaaaaabIaaaaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabOabOabOabOabOabOabOabOabOabOabOabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabVabWabXabYabYabYabYabYabVabWabXabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOaccacdaceaceaceacfaceaceaceacdacgabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOachaceaceabOabOabOabOabOaceaceaciabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabYaceabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabWaceabOabOacjackaclabOabOaceabWabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyacmabOacnacoacpacpacqacracsactactaceacuabOacvabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOacwacxabOabOabOacyabOabOabOaceacwabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabYacxabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabVaczacAabOabOabOabOabOaceaceabXabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIabOaccacdacxacBacCacDacEacBaceacdacgabOacFabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaabOacGacHacIacJacKacLabYacMachacwaciabOacNaaaacOaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPacPacQacPacPabOacRacSacTabOacUacUacUacUacVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacWacXacYacPacZadaadbadcaddacUadeadfadgacVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadhadiadjacPadkadladmadnadoacUadpadqadracVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadsadtaduadvadwadxadyadzadAadBadCadDadEadFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadGadHadIadJadKadLadLadMadLadLadNadOadPadQacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSadTadUadVadWadVadXadYadXadZaeaadZaebaecacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaabIaaaabIaaaabIaaaaaaabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefcnDcnEcnDaehaeiaehcnGcnHcnGaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaadRaemaemaenaemaenaemaenaemaemaemaemaemaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeoaepaeqaeraesaetaeuagyaeWaeXaemadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaacOaaaaaaadSaevaewadVaexadVadXaeyadXadZaezadZaeAaeBacUaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeCaeDaeEaeFaeGaeHtnPagyovBiLRaemabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIacPaeJkjKaeKaeLaeMaeNaeNaeOaeNaePaeQaeRadFaeSacUacUabIabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeTaeUaeUaeUaeVpeEdYelGputgiPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaeYaeZafaafbafcafdafeaffafgafhafiafjafkaflafmacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRabIaemafnaeUafoafpafqafoaeHaeUafriPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaftafuafvacPacPafwafxafyafzafAacUacUaelaelafBacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtabIaemagyafCafDafEafFafGafHafIagyagyaemaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPafKafLafMacPafNafOafxaabafzafQafRacUafSafSafTacUaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUafUafUafUafUafXaiAafZaeUagaaeUagbaeUaeHaeUagcagdaemaaaaaaaaaaaaaaaabyabyabyabyabyabyabyabyabyabyabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacPacPacPacPageagfcnCbIKaggagfaghacUacUacUacUacUabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiszGlemagjafUaglaiAagnaeUagaaeUagbeSBaeHjXFagoagpaemaaaaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCaaaaaaaaaaaaaaaabIaaaabIaaaagqagragsadXagtadXagsaguagqaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagisOCmzlagvagwagxaiAagyagyagzagyagAagyagBagyagyagCaemaaaaaaaaaaaaaaaagPagPagQagQagQagPagQagQagQagPagPaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabyabyabyabyaaaadXadXadXadXagDadXadXagEadXaaaabyabyabyabyabyaaaaaaaaaaaaaiSaiTaiUaiTaiTaiSaiSaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiiCVsJpagFafUagHaiAagyagIaieagKagAagLagMagNagyagOaemabyabyabyabyabyagQcnJahdahdahdcnNahdcnPcnQcnQagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXagRadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiScBkjHPkkkcBlaiSwMFaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUafUmsXqMiagTafUagVaiAagyagWaiHagYagAagZahaagYagyahbaemabIabIabIabIabIagQahqahqahqahqahqahqahqahqahqagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXahhadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiTplAqPBaiSjhDajuakhcBmakgcBnaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUhwjdVIiPUahjahkahlaiAagyagAahmagyahnahoahpagyagyagyaemabIabIsdkabIabIagPahqahqcnTahqcnTahqahqcnVahqagQabIaaaafJaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXalbahialbadXahsahtaaaaaaaaaaaaaaaaaaaaaaiSoMNiqcaiScBoajtalccBpaiScBqaiTaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtpfzahuahvahwahxahyahzahAahBahCahDahBahFahGahHahIahJahKahLahLahLahLahLahLahLahMahNahqahqahqahqahOahPahQagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFjahRahtaaaaaaaaaaaaaaaaaaaaaaiTakfngpepJalQalQalRalSaiSajvaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtahtuqJahSahTahUahVahWahXahYahZaiaaibaicaicaidaieaifaigaihahLaiiaijaikailaimahLainaioahdahdahdaipaiqairaisagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSgxecBruaCxjgmnGamFamGakgajvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaitaitaiuaitaiuafUoXeaivaiwaixaiyaizaiAaiBaiCaiDaiEaiFaiGaiHaiBaiJaiKahLaiLaiMaiMaiNaiOahLaiPagPagPagPagPagPaiQagPagPagPabIabIabIabIabIaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiTakfcBscBvcBwtappzFmnGaiSiEUaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaiVaiWaiXaiYaiuafUafUafUafUaiZajaajbaiAajcajcajcagyajdajeajfagyagyagyahLajgaiMajhajiajjahLajkajlajmajnajoajpajqagPajrajsajsajsajsajsajsajsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSeqDtapcBwnoCtaptapcPOaiSaiSaiSaiTajxajyajyajyajzaiTaiSaiTaiSaiSaiSaiSaiSaiSaiSaiTaiTaiSaiSaiSaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitajBajCajDajEaiuajFajGajGajHajHajIajHaiAajMajMajMajMajJajKajLajMajNajOahLajPajQajRajSajTahLajUajVajWajWajXajYajZagPaiRaiRakaakbakcakdakeajsaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahRahtaaaaaaaaaaaaaaaaaaaaaaiToMNgnagNvaiSaiSanmaiSaiSakjcBxaklakmaknakoaknakkakpcByaknaknaknaknaknaknaknaknaknaknaknaknaaDaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuakrajDaksaktaiuakuakvakwajHakxakyakzakAakBakCakDakEakFakGakHakIakJakKahLakLakMakNakOakPahLakQajVajVajVajVajVakRcCSakTakUakVakWakXakXakXakZabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtalaahtaaaaaaaaaaaaaaaaaaaaaaiSvlFklVnnhaiSanYajvaiSaobaleaiSaiTalfalgalgalgalhaiTaiSajvaaEaaGaaFaaFaaFaaFaaFajvaaQsbkajvaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiualiaiuaiuaiualjalkallajHalmalnaloalpalqalralsaltalualvalwalxalyalzahLcBijuwivOpfBalAahLalBalCalDalEalCalFalGalHaiRalIalJalKalLalJalMalNabIaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtahtahtahtahtalOahtahtaaaaaaaaaaaaaaaaaaaaaaiTtvjxbJsqhaiSaptajvaiSeawaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaHaaFaaFaaFaaIaaKaaIaaFaaFaaFaaFaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaitajDaitaaaaiualTalUalVajHalWalXalYakAalZamaambamcamdameamfamgamgamgamgamhamiamjamkamlamgammamnamoampamnamqamramsamtamuamvamwamxamyamzalNabIaaaaaaaaaaaaaaaaaaaaaamAamBamCamCamCamBamCamCamCamCamBamCamDahtaaaahtaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiTaiSsbkajuaiSajvaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaNaaRaaSaaSaaSaaSaaSaaTaaUaaVaaXaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiuahtahtaitajDaitaaaaiuskwamHtfZajHamIamJamKakAamLamMamNamOamPamQamRamgamSamTamUamVamWamXamYamZamganbalCancandalCaneanfalHaiRanganhanianjalJankalNabIaaaaaaaaaaaaaaaaaaanlahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiSaiSajvaiSajvaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabcaaLaaLabjaaLaaLaaLaaLaaLaaMaaZaaFaleaiTaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaitfINoFflcUaiuaiuaiuaiuanqaiuaiuaiuanransvCCantanuanvanwakAanxakAajMajManyanzanAanBanCanDanEanFanGanHanIanJanKanLalEanMandalEanNanOanPanQanRanSjvianUanVanTanWabIaaaaaaaaaaaaaaaanlaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaacBUlcZcBUlcZcBUaaaaaaaiTalPcBAaiScnXaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOabnaaOaboaaOaaOaaOaaOaaPaaZaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoJaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitwwGycrsGrkJwgwnwRIlMUaoehOxaCgaCgaofePUlHcaiuaogaohaohaoiaojakAaokaolaomaonaooamgaopamXamXamWamXaoqaoramXaosaotaouaouaovaowaoxaoyagPaiRaiRaiRaiRaiRaiRajsajsaozaozaaaaaaahtalOahtahtahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaalcZapWaoBapUlcZaaaaaaaiScBBaiSaiSaiSaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabkaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitgGywDmhiwaiuaiuajDapBaiuaDmaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuakAaoOaoPaomaonanaaoQaoRaoSaoTaoUaoVaoWaoXaoYaoZapaapbapbapcapdapeapfapgaphaphapiaphapjapkaplapmapnahrcdmahtapoaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaappahtabIabIabIabIlcZapVaprapVlcZaaaaaaaiSapuaknaknapvapwaiSaaaaaaaaaaaaaaaaaaaaaaaFabqaaOaaOaaOabraaOaaOaaOabsabtabpaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaqbaqcaaaaqaaqbaqcaaaaqaaqbaqdaaaaqaaqbaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiuwYuwYuwYuaiuapzajDwoqapBaDmaiuaqgaqhaqiaiuaaaaaaaaaaaaaaaaaaapEapFapGakFapHaooamgapJapJapKapLapJapMapIamgamgagPagPagQapPagQagPajMajMajMajMajMajMajMapQaozapRaozaozcdmapSabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaapTapTapTapTapTapTapTapUapVapWcBUaaaaaaaiSaleapXapXapXapXapXapXaaaaaaaaaaaaaaaaaFaaFabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabuaaFabvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuuQRajDajDaiuaqeajDlXcaiuaDmaiugjNlqcardaiuaaaaaaaaaaaaaaaaaaapEapEajMaomaqmaqnaqoapNaqqaqraqsaqtaquapOsBAaqvaqwaqxaqpaqyaqzaqAajMaqBaqCaqDaqCaqCajMaqEaqFaqGaqGaqGaqGalaaqHaqIaqIaqIaqJaqIaqIaqIaqJaqIaqIaqIaqKaaaaaaaaaaaaaaaapTaqLaqMaqNaqOaqPapTaqQaqRaqScBUcBUaaaaiSaleapXaqTaqUaqVcodapXaaaaaaaqYaaaaaaaaFabwabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabxaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaituaEajDjsfaiuaoKaoKnPAaiuaoLwRzarcaoeasraitaaaaaaaaaaaaaaaaaaariwxJarjarkaonarlalvaonaonarlaonarmarnaroarparoarparqarparrarsartaruarvarwarxaryarzajMaqEarAarBarCarDarEarFarGarHarIarJarKarLarMarNarOarParQarRarGaaaahiahiahiaaaapTarSarTarUarVarWapTarXarYarZasacBUahtaiSasbascasdaseasfasgapXapXashasiasjapXaaFabzabAaaWaaWaaWabBabCaaWaaWaaWabDabEabFabGaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitpdqajDajDcHSdcLaBaegKaiuasoaiuatpatqatpaitaaaaaaaaaaaaaaaaaaapEapEajMasuasvaswasxatyatBawKaszrdBasAjenasBjxKtTZasDasEasCasyasFasGasHasIasJasKasLajMaqEarAasMasNasOarAarAasPasQasRasRasSasRasRasRasSasRasRasTasUarAatYbaHatYaaaapTasVasWasXasYasZapTataatbatcatdcBUaaaaiScoeatfatgathatiatjapXapXashatkatlapXaaFabHabTaaFaaYaaYatnatnavmavmavmatnatnaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitajDajDrLiaiuapBxyBaBaaoKasoaiuausautauuaiuaaaaaaaaaaaaaaaaaabBWbBWajMatvatwatxajMatzatAatDajMatzatCatDajMatEatFatGajMajMatHajMajMatIaqCaqCaqCatJajMatKarAatLatMatNatOatPatQatRatSasSatTatTatUatTatTasSatVatWatXarAbcNauVatYahtapTauaaubaucaudaueapTaufaugauhauicBUahtapXapXapXaujapXaukapXapXaulashizBaumapXatnablabKabbabaawBatnauraurauraurauratnaiSaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCajArmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiudcimwgtlcaiuaiuaiuaiuaiurrbaiuaiuaiuaiuaiuaaaaaaaaaaaaaaaaaaapEajMakAauxaonauzajMauxauAauzajMauxauAauzajMauBalvauCauDauEauFauGauHauIauHauHauHauHajMauJarAauKauLauKauMauNauOauPauQasSauRauRauRauRauRasSauSatWauTarAauUauVatYaaaapTauWauXauYauZapTapTavacBUavbavccBUaaaavdaveavfavgatfavhaviavjavkavkavkavkavlatnaxwabLabdaxwabeavmauraurauraurauravmatnavnatnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiutpbaAaazZazYoPxsynwxbgiOekUaiuaaaaaaaaaaaaaaaavpavqavrakAavsavtavuajMavvavwavxajMavyavzavAajMavBalvauCavCavDavEavFavGavHavIavJavKauHavLaqEavMavNavOavPavQavRavSavTavUasSavVavWavXavYavZasSawaatWawbarAatYawcatYaaaaaaawdaweawfawgawhawiawjawkawlawmawdaaaavdawnawoawpawqawrawsawtawuawvawvawvfIuawwabgabMabhabgabiavmauraurauraurauravmawCawDatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtaxCaxCaxCaxCaxCaxCaxCaxCaDmaiuaiuaaaaaaaaaaaaaaaaaaapEawHakAawIawJrjFakAawIawJrjFakAawIawJrjFakAawLawMawNakAawOawPawQawRawRauHawSauHauHauHawTawRawUawVawWawWawXawYawZaxaasSaxbaxbaxbaxbaxbasSaxcaxdaxearAlQQaxgaxhahtahtaxiaxjaxkaxlaxkaxkaxmaxnawdawdaxiahtapXapXapXapXapXaxocoiaxpaxqaxraxtaxuepjaxvaxwabPabQaxwaxwaxyaurauraurauraurvzzaxzaxAavmaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBayzaxBayAayBayCaxCxuvkJoasraitaaaaaaaaaaaaaaaaaaajMaxEajMaxFaxGaxGaxHaxGaxGaxGaxIaxGaxGaxGaxJaxKaxGaxLaxJaxGaxGaxGaxMawRaxNaxOaxPaxQauHaxRaxSaxTaxUaxVaxWawUaxXaxYaxZayaaybaybaybaybaybayaaycaxYaydayeayfaygaxhaaaaaaaaaaaaaaaaaaabIawdayhaxnabIabIaaaaaaayiayjaykaylatfaymaBQaynayoayqcojaysaIhaytayuabRabSaxwaxwavmauraurauraurauravmaywayxavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoIazGazHazHazIazJazKazKazKazKazKazKazKazKazKazKazKazKazKazKazLazHazHazHazHazHazHazHazHazHazHazHazHazHrKrazNazNhzdazPazQazRazSazNfAxtyLaitaaaaaaaaaaaaaaaaaaaiuayEayFayLayGayHayIayLayLayJayLayLayLayLayLayMayNayOaxGaxGayPayQayRawRaySayTayUayVayWayXayYayZazaazbazcawRazdazeazfazgazhaziazjazkazhazlazmaznazoarAlQQazpaxhaaaaaaaaaaaaabIaxiawdawdazqaxnawdaxiaaaaaaayiazrazsaztazuawraDfazvazxazycokazAazAazBazCazCazDaxwaxwavmauraurauraurauravmazEazFavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBaxBaxBaAWaAXaAYaxCvtTaDmajDaiuaaaaaaaaaaaaaaaaaaaiuaAbaAcaAdpFyaAeaAfaAiaAiaAgaAhaAiaAiaAiaAiaAjaAkaAlaAmaAmaAnaxGaAoawRaApaAqaAraAsauHaAtaAuaAvaAwaAxaAyawRaAzaAAaABaABaABaABaACaABaABaABaABaADaAEaAFaAFaAGaAHaAHaAHaAHaAHaAHaAHaAIaAJaAKaALaAMaANaaaaaaapXapXapXapXapXaAOaDfcolaAPaAQayravkdbiaxvaxwaxwaASaxwaxwaxyaurauraurauraurvzzaATaAUavmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxCaxCaxCaxCaxCvtTaDmnPAaiuaiuaiuaiuaiuebDebDgSHebDxLCebDaiuaBcaBdaBdaBdaBeaBfaBeaBdaBdaBdaBgaxGaBhaBiaBiaBiaBiaBiaBjaBjaBjaBjaBjawRaBkaBlaBmaBnaBoaBpawRaBqaBraABaBsaBtaBuaBvaBwaBxaBsaABaBraByaAHaBzaBAaBBaBCaBDaBEaBFaBGaAHaBHaBIaBJaALaBKawdaaaaaaaBLaBMaBNaBOatfaBPaBQaBRavkavkaBSavkdbiaxvaBTaBUaataBWaBXavmauraurauraurauravmaBYaBZatnabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmmtuaiuaCdnyOawEaiusbYaCexJyjjCxeBaCfaiuaChaBdaCiaCjaCkaClaCmaCnaCoaBdaCpaCqaBhaBiaCraCsaCtaCuaCvaCwvTLaCxgkRawRaCyaCzaCAaCBaCBaCCaCDaCEaCFaABaCGaCHaCIaCJaCKaCLaCMaCNaxZaCOaAHaCPaCQaCRaCSaCSaCSaCTaCUaCVaCWaCXaCYaCZaDaawdaaaaaaaBLaDbaDcaDdaDecomconcooaDgaDhaDiaDjaDkatnatnatnatnatnatnavmauraurauraurauravmatnaDlatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuapBaDmaCcaiuhHrezJqGukFxfuPgPVsJreEpnSohnuaiueQZaBdaDoaDpaDqaDraCkaDtaCkaBdaDuaxGaDvaBiaDwaDxaDyaDzaDzaDAaDAoyFaDBawRaDCaDDaDEaDEaDFaDGaDHaDIaDJaABaDKaCKaDLaDMaDLaCKaDNaABaDOaDPaDQaDRaDSaDTaDUaDVaDWaDXaDYaAHaDZaBIaEaaALaEbaANaaaaaaapXapXapXapXapXapXcopapXaEcaEdaEdaEeaEdaEdaEfaEgaEhaEdaEiatnauraurauraurauratnaEjaEkaEjaEjaEjaElaElaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmaiuaiuhHrujIeOZaiupXTpELsJrvhkuuSjTuaiueQZaBdxjKaEmaEnaEoaEpaEqaEraBdaEsaxGaBhaBiaEtaEuaDAaDAaDAaDyaEvoyFaEwawRaExazaaEyaEzaEAaBmawRaEBaECaABaEDaEEaEFaEGaEHaEEaEIaABaEJaEKaAHaELpHoaEMaENaEOaEPaEQaERaAHaANaESaEaaALaAMaANaaaaaaaEToFoaETaEUaFFaETaEWaGVaEYaEdaEZaFaaFbaEdaFcaFdaFeaEdaEdatnatnatnatnatnatnatnaFfaEkaEjaFgaFhaFiaFibZVahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitaBamLBwxbaCgaCgdgIkQZaiuwrUelksJrgAGuAUwTDaiuaFkaBdfhMaFmaFmaFoaFmaFpaGaaBdaFraxGaBhaBiaFsaFtaDAaDAaDAaDAaFuoyFaFvawRaFwazaaFxaFxaFyaFzawRaEBaDJaABaABaABaABaABaABaABaABaABaDOaEKaAHaAHaAHaFAaAHaAHaFAaFBaAHaAHaFCaBIaEaaALaFDawdaaaaaarYCjOBcoraFEvuPlKLkIOaDZcotaEdaEZaFGaFHaFIaFIaFJaFIaFKaFLaFMaEdaFNaFOaFPaFQaEjhUtaEkaEjaFRaEjaEjaEjaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitoTCwUzwigaiuezFujInihaiumpymXqsJrkxjoCnuVfaiuaFUaFVaFWaFnaFXaFYnBwaFngQoaBdaGbaGcaGdaBiaGecouaGfaGgaGhaGilnnaGjuluawRawRawRawRaGkaGlaGmawRaEBaAAarAaGnaGoaGpaGqaGraGsaGnarAaAAaEKaxiaGtaGuaGvaGwaGwaGvaGxaGyaANaGzaBIaEaaALaDaawdaaaaaaaETqbZaETaGAaGBaETaGCaGDaBIaEdaEZaGFaGGaGHaGFaGFaGFaEdaGIaGJaEdaGKaGLaGMaGNaEjaFiaEkaEjaGOaGPaEjaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaitaitaitaiuaodujIkxsaiuaiuaiuaiuaiuaiuaiuaiueQZoEAoEAoEAoEAoEAoEAoEAoEAoEAaGUaGVtHkaBiaGXaGYaGXaBiaBiaBiaGZonXaGXaANaHbaHcawRawRawRawRawRaHdmyuarAaxiaHfaHfaHfaHfaHfaxiarAaHeaHgaxiaANaHhaHiaHjaHjaHkaHlaANaANaANaEYaHmaGUaANaANawdawdaETaETaETaHnaETaETcosaDZaBIaEdaEdaGFaHoaEdaHpaEdaHqaEdaHraGJaEdaHsaHtaFiaGNaEjaFiaEkaHuaFiaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaiuaqgiJiqGugKGguejhkjhkoTpjhkjhkaHCgjqoEAuoSuoSuoSuoSuoSuoSuoSoEAaHEaHFaHGhqoaHHaHIaHHaHJaHKaHLaHMqXHjYegNGjYeaHOaHPaHQaHRaHQaHSaHTaHUaHVaHWaHXaHXaHYaHXaHXaHZaHVaHUaIaaIbaHVaHVaHVaHVaHVaHVaHVaHVaIcaIdaHGaIeaCZaIfaIgaHNaHNaHNaHNhFyaIiaHNaHNcoyaDZaBIaIjaEdaGFaIkaEdaIlaEdaIlaEdaEdaDlaEdaEjaEjbfuaEjaEjaFiaEkaEjaGOaIpaIqaElaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNahtaaaaiuaiuaiuaiuaiuaICaiuaiuaiuaiuaiuaIHaiuoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaILaIMaDZaDZaINaIOaIOaIOaIPaIQaIOaIOaIOaIQaIPaIOaIOaIRaIOaISaITaIVaIOaIOaIWaIWaIXaIWaIYaDZaDZaIZaJaaJbaDZaDZaDZaDZaDZaDZaDZaDZaGVaDZaBIaJcaJdaJeaJfaIUaIUaIUaIUaJhaJiaIUaIUaJjaJkaJlaJmaJnaFIaJoaEdaEdaEdaEdaEdaJpaEkaEjaJqaJraJsaJtaJsaJsaJvaEjaFiaEjaJwaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoJaoHaoHaoHaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaHziabxaQrgsaJDpvKgxqniyaJFriFaiuofXiSzoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaJGaJHaJIaJJaJIaJIaJIaJKaJLaJIaJIaJMaJLaJKaJNaJOaJPaJOaJOaJQaJSaJOaJOcozcozcoBcozcozaJOaJOaJTaJQaJUaJOaJVaJOaJWaJRaJOaJVaJOaJPaJRaJXaJYaJZaKaaKbaJIaJHaJIaJIbheaKeaJIaJIaJIaJHaKfaKgaEdaKhaGFaKiaKjaEdaKkcCXcCYcCZaEjaKnaEjaKoaFiaKpaFiaKnaKqaFiaEjaKraEjaLnaLmaLmaLoaLoaLmaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaKAfmUjeqjeqaKDaKEaKEaKGxhEaiuaiuaIHoEAuoSuoSuoSrJZuoSuoSuoSoEAaALaDZaKIaKJaKKaKLaKKaKJaKMaKNaKOaKPaKQaKQaKRaKSaKQaKTaKTaKTaKTaKTaKUaKTaANaKVaKVaKVaKVaKVaANaKTaKYaKZaLaaKZaLbaKZaKYanXaLcaLdaLcanXanXaBIaEaaALaLeaLeaLeaLelAslAslAsklblAslAslAslAslAscDaaEdaEdaEdaEdaEdaEdaLhcDaaLiaLjaKqaKnaLkaLlaFiaFiaFiaKnaEjaEjaEjaEjaLmaNTaLmaMEaMFaMGaMHaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzdqGwquaKBaOkwOapGepGegmOpGepGegvfftWsgcaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaLvaLwaLxaLyaLzaKJaLAaLBaLCaLDaKQaLEaLFaLGaKQaLHaLIaPzaLKaKTaNjaKTaGnabIabIabIabIabIaGnaKTaKYaLQaLRaLSaLTaLUaLVaLWaLXaLYaLZaMaanXaMbaEaaMcaLeaMdaMeaMflAsaMgaMhaMiaMjaMkaMlaMmaMnaMoaMpaMqaMraMsaMtaMuaMvcDaaMwaMxaJsaMyaLkaMzaEjaMAaFiaMBaJsaJsaMCaMDaLmxeraNUeFGaNVaNXaNYaLoabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEqUwaQtaQuaQtaQuaQtkvjaJEnDxaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaMRaMSaMTaMUaMVaMWaMXaKJaMYaMZaNaaNbaKQaNcaNdaNeaKQaNfaNgaLLaNhaKTaNiaKTaKTaKTaKTaKTaKTaKTaKTaKTaKYaNpaNqaNraNsaNtaLVaNuaNvaNwaNxaNyaNzaNAaJYaNBaNCaNDaNEaNFiKbaNHaNIaNJaNKaNLaNMlAslAscDaaNNaNOaNOaNOaNPaNOaNQcDaaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaNRaPfaLmaQophSphSphSphSaPiaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzaKzwquaKBaWExSZaOfaOgaOhaOgaOfaOkcoNgLFaiuaOmoEAuoSuoSuoStCPuoSuoSuoSoEAaALaDZaKIaKKaOtaOuaOvaKJaKPaKPaKPaKPaKQaKQwBgaKQaKQaKTaKTaOwaKTaKTaOxaOycoFcoGcoHcoHcoJcoJaOzaOAaKYaOBaNqaOCaNsaODaLVaOEaOFaOGaOHaOIaOJaOKaOLaOMaONaOOaOPaOQaORaOSfwlfwlfwlaOUdseaOWaOXcDaaOYaOZaPaaPbaPbaPcaNOcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaNRaQjaQkaPgdqYdqYcvfxeraQpaLoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWEwOaxLiaWKaWKaWKaPoaWEaPqaHzaiuaIHoEAoEAaPtaPtxOCaPtaPtoEAoEAaALaDZaPwaKJaKJaKJaKJaKJaNmaPxaPyaPzaLLaLLaLLaPAaLLaLLaPBaLLaPCaPDaNjaLLaPEaPEaPEaPEaPEaPEaPFaPGaKYaPHaPIaPJaPKaPLaLVaPMaPNaPOaPPaPQanXaMbaPRaPSaLeaPTaPUaPViKbaPXdMBaPZdMBaQaaQblAslAscDaaQcaQdaNOaQeaNOaQfaQgcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaRsaRtaRuaRvaRwaQnaRyaRzaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabyabyabyaedabyabyabyabyabyabyabyabyabyabyabyaedabyabyabyabIaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraQvaQraRDaREaRFnGiaJEklBeLtaiuaIHayDoEAnsyuosjAyaQwaQxoEAaKHaHEaQBaQCaQDaKTaQEaQFaQGaQGaQHaQIaQJaQKaQLaQMaQNaQNaQOaQPaQPaQPaQQaQRaLLaPEaQSaQTaQUaQVaPEaQWaQXaKYaQYaQZaRaaRbaRcaKYanXanXanXanXanXanXaRdaPRaReaLeaRfaRgaRflAsaRhaRiaRjdMBaRkaRllAsaRmcDaaRnaRoaRpcDaaNPaRqaNPcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaLiaLmsrZsZhsqQsqQaSndaYaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaHAhwdeApaQraSvaSwaSxnGiaRCklBaRBaiujThvIcscpeDCxnPrHAeHIaRGoEAaLuaALaPRaKIaRIaKTaRJaRKaRLaRLaRMaRLaRLaRLaRLaRLaRNaRNaROaRNaRNaRNaRNaRNaRPaPEaRQaRRaRSaRTaRUaRVaRWaKYaKYaKYaRXaKYaKYaKYaPBaRYaRZaSaaSbaKTaMbaPRaMcaPWaScaSdaSclAsaSeaSflAsiKbaSgaShlAsaLgaLgaSiaSjaSkcDatLPcDacDacDaaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaSlaLmaLmaLmaLmaSmaSnaSoaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraJEaQraTKaTLaTMnGiaQsklBaRBaiuaSuxxSoEAtnYqjxffJyfOqWMoEAaLuaALaPRaKIcoVaKTaSzaRLaRLaSAaSBaSCaauaSEaSFaSGaRNaRNaSHaRNaSIaSJaSKaSLaSMaPEaSNaSOaSPaSQaPEaSRaSScoWcoWcoWaSTaQNaQNaQNaQNaQNaQNaQNaSVaSWaSXaPRaHEaSYaSZaTaaSZaTbaTcaTdaTeaTfaTgaTheeQaTiwDZaTkaTlaTmaTnaTqaTpaTqaTraTsaTraaaaaaaaaaaaaaaaaaaaaaaaaaaaElaTuaTvaTwaTxaTxaTyaTzaTAaTBaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaOkftWoLRaMLaMLaMLaPnaTJhkQaOsaiuaiuvAqoEAuCSiPOoEAhDGoEAoEAaRHaTOaPRaTPaKTaKTaSzaRLaRLaTQaTRaTSaTTaTUaXSaTWaRNaTXaTYaTZaSKaSKaUaaRNaUbaPEaUcaUdaSPaUeaPEaPEaUgaPEaPEaPEaPEaPEaPEaPEaUfaUfaUfaUfaNjaKTaUiaUjaUkaUlaOTaOTaUmaOTaOTaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUtaUxaSkaSkaSkaUyaUzsQtaUAaaaaaaaaaaaaaaaaaaaaaaaaaEjaUBaGOaUCaEjaEjaEjaEjaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabIaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTHaKyaKzaKzwquaKBaOkcoNpGepGegmOpGepGevsJftWfUAwEnnfiuLFdpamalpOrdpaaUGaUHaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUUaXSaXUaXSaUWaRNaUXaUYaSKaUZaVaaVbaRNaVcqENaPEaVdaPEcpaaPEaPEaVfaVgaVhaVicpbcpcaVjaPEaVkaVlaVmaUfaVnaUfaVoaJIaJZaUsaVpaVqaVpaVpaVpaVraVsaVtaVuaVvaLfaVwaVxaVyaTmaVzaVAaTmaTmaVBaPdaPdaPdaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaVEaEjaavaEjaVGaVHaVIaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEkvjaQtaQuaQtaQuaQtaVNaJEaVMaPvaJEaVOdTVdTVgeUdTVaVPdTVaQzaVQxvOwunaVRaVSaVSaVTaVUaVSaRLaRLaRLaRLaVVaRLaRLaRNaVWaVXaSKaSKaVYaVZaWaaWbbdvaWdaWeaWfaWgaWhcpeaWiaWjbahbahbahaWlaWmaPEaWnaWoaWpaWqaWraUfaMbaDZaMcaPWaWsaWtaWuaWuaWuaWuaWvaVtaPYaWweexaWxaVxaWyaTmaWzaTmaTmaTmaWAaUyaWBsQtaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaEjaUCaEjaFiaHuaFiaFiaFiaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqICaKzwKawqufTYaWEftWaOfaOfgpCaOfaOfcJofwexmpfBtaWFaWFaWFaWIaWJaWFaWJaWFfBtnyBaCZaEaaKIaVSaWMaWNaWOaVSaWPaWQaWQaWRaWSaWTkEWaRNaRNaRNaRNaWUaWVaWWaRNaWXaWYaXbaXbaXbaXcaXdaPEmjnbahbahaXhbahbeBbckaPEaXkaXlaXmaXnaXoaXpaXqaHNaXraLfaPWaXsaXtaXuaPWaLfaLfaVtaPYaXvaLfaXwaVxaXxaTmaVzaTmaTmcCBaXyaXzaXAaXzaaaaaaaaaaaaaaaaaaaaaaaaaaaccsaEjaEjaUCaEjaFiaEjaFiaXCaXCaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWKppQaWKduQppQaWKaWKppQaWKaOsaHzaXFaXGkAaaXKaXKaXIaXJaXIaXKaXBaGUaHmaXLaXMaXNaXOaXPaVSaXQaXRaXSaXTaXUaXVaXWaXXaXYaXZaRNaRNaYaaRNaRNaYbaRNaRNaRNaPEaPEaYdaPEaYeaYfaYgaYgaYgaYhaYiaPEaYjaUfaYkaYlaYmaUfaMbaDZaMcaLfaYnaYoaYpaYqaYraYsaPWaVtaPYaYuaLfaYvaYwaYxaYyaYzaTjaYyaYAaYBaLgaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaZvaTxaZwaYCaFiaEjaYDaYEaYFaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaXHaYHaYIfowaYJaYKaXIaALaEaaYLaVSaVSaYMaVSaVSaYNaXSaYOaYOaYPaXSaXSaXSaXSaYQbgkaYRaYSbcerxVaYVaYUaYTaYXaYYcpgaYZaZaaZbaZccphaZdcpicpjcpkaZfaZgaUfaUfaUfaUfaUfaZhaDZaZiaLfaZjaVuaPYaPYaOVaZkaZlaZmaZnaOTaUlaZoaZpaZqaZoaZoaZraZsaZtcCTaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZyaZyaZyaZzaZAovMaZAaZAaZAaZAaZAaZCaZDaZEaXHaZFaZGaZHaZIaZJaZKaZLaZMaZNaVSaZOaZPaZQaVSaZRaZSaZTaZUaZVaZWaZXaXSaXSaXSgamaYSaYSaYSaYScplbabbacbadbaebahbagbahbagbahbagbeBbagbahbagbahbanaPEbaobapbaqaPEbaraDZaMcaLfbasbatbaubavbawbaxaPWaPYaPYaPYbazaTmaZtbaAbaBbaCbaDbaEaZpbaFaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaGOaEjcfQbbLbbMrWErWEsutrWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbaJbaKbaKbaKbaKbaLbaKbaMbaNbaNbaNbaNbaObaPaXHbaQbaRbaSbaTbaUaXIaALbaVbaWaXMbaXbaYbaZaVSaYNbbaaZTbbbbbcaXSbbdpWTpWTttSaZZaYSbbgcpmcpnbcfbbibaabblbbmbagcpobagbbrbbobbpbbqbbrbbsbbpbagbbtbbubbvbbwbbxaPEaMbbbybbzaLfaLfaLfaLfaLfbbAaLfaLfbbBbbCbbDaLfbbEbbFbbGbbHbbIbbIbbJbbKbbIbbIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjbcHbcIhSMbcJbcKbcLuXHoCXoCXatZbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcUbcQbcQbcVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxjzzbbQaZxbbRbaKbbSaZxbbQjzzbbRbaKbbTbbUaXHaXHaXIbbVaXIaXKaXKaALaEaaKIbbWbbXaZPbbYaVSaYNaZSaZTbbZbbcbcaaRLbcbbccbcdaRNcpqcprbcgbchcpsbbhbaabblbaebahcptbahbbrbcobbpabUbbrbcqbbpbahbcrbcsbctbcubcvbcwaSXaDZaMcaEjbcxbcyaFiaFibczaFiaLfaLfaLfaLfaLfbbEbcAbcBbcCbbIbcDbcEbcFbcGbbIaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaElaEjaUCaFiaEjmvmbdRbdSrWErWErWErWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbcYbcZbdaaZxbcXaZxbbRbaKbbTbdbbdcbddbdebbTbaKbdfaGVaALaEaaKIbbWbdgbdhbdiaVSaYNaXSbdjbdkbdlaXSbdmbdnaDZbdoaRNcpubcfbdpbdqaYSbdrbaabblbcmbagcpvbdwbdvbdwbdvbdxbahbagbahbagbckbagbahbagbahbdyaMbaDZaPSaEjbdzqAMaFijBhbdBbdCbdCbdDbdCbdDbdEbbEbdFbdGbdHbdIbdJbdKbdLbdMbbIaaaaaaaaaaaaaaaaaaaaaaEjbdQaTxaTxaTxaZwaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxaZxaZxaZxaZxbdVjzzaYGaYGbbTbdWbdXbdYbaKbdZbeabdfaGVaALaEabebaVSbecbedbeeaVSaXQbefbegbehbeibejbekbelbembenbeocpwbeqberbesbepcpxbeubblbaebexbagbeybezbeAbagbeBbagbeCbeDbeEbeFbeGaZeaXbbeHaPEaBIaDZaALaEjaFiaEjbeIbeIbeIbeIbeIbeIbeIbeIbczbbEbeJbeKbeLbdIbeMbeNbeObePbdIbdIbdIaaaaaaaaaaaaaaaaEjbeRaEjaFiaFibeSaFikIoaEjbfPkKIeZAvzTdsvaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbeYbeZbfabfbbaNbfcbfdbfebffbfgbfhaKIaVSbfiaVSaVSaVSbfjbfkbflbflbfmbfnbdmbdnaDZbfoaRNbfpcpycpzcpAcpBaRNbgkaRNcpCbfraPEcpCcpCaPEbfsbftbfsaPEcpCcpCaPEaPEbdybdyaPEaPEaEYaGVaGUaEjbfuaEjbeIbfvbfwbfxbfybfzbfAbeIbczbbEbfBbfCbfDbdIbfEbfFbfGbfHbfIbfJoPybfKaaaaaaaaaaaaaEjaUCaKqaFiaFiaFibfMbfNaEjbfPaFitDngUbdLYaEjaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbfZbgabgbbgcbgdbgdaALaEabgebgfbggbghbgiaawbdmbdmbdmbdmbgjbdmaRLkEMaDZbfoaRNbgkbglbgkbgkbgkaRNbgnbgobgpbgqbgrbgsbgpaPEbgtbgubgtaPEbgvbgwbgxbgybdobdobgzaDZbgAaDZaALbgBaDZbgCbgDbgEbgFbgGbgHbgIbgJbeIbczbbEdpsbbEbbEbbIbgKbgLbgMbfHbdIbdIbdIaaaaaaaaaaaaaaaaEjaUCaEjaEjaEjaEjaEjaEjaEjaEjhOzaFiaFixylaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgSaZxbbTbfYbgabgUbgVbgWbgXbgYbgaaALbgZbhabhbbhcaJIaJIaJIaJIbhdaJIaJIbheaJIbhdaJIaJIaJZaJIaJIbheaJIaJIaJIaJIaJIbhdaJIaJIaJIaJIbhfaJIbhdaJZaJIbhgaJIaJIaJIaJIaJIbhdaJIaJIbhebhhaJZaJIaJIbhibhjbhkbhlbhmbhnbhobhnbhpbhqaEjaZvaTxaTxbhrbhsbhtbhubhvbbIaaaaaaaaaaaaaaaaaaaaaaEjeCwgfibhzbjDgfibhzgfibhBaEjaEjnZwaEjaEjaEjahtahtahtahtaEjaElaElaElaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbhEbfZbhFbhGbhHbhGbhIbgdbhJbhKbhLaDZaALaDZaDZaDZaDZaBIaDZaDZaDZaDZbhMaDZaDZaALaDZaDZaDZaDZaDZaDZaDZaDZaBIbhNaDZaDZaDZcpHcpIcpJbhOcpKcpLcpMaDZaDZaDZwVCaBIaDZaDZaDZbhMaALaDZbhPbhQbeIbhRbhSbhTbhUbfzbhVbeIaNRaEjaUCaEjaEjbbIbbIbbIbbIbbIbbIaEjaEjaaaaaaaaaaaaaaaaEjaUCaEjlEnlEnlEnlEnaEjfwIaEjoRXaFigSIaKqaEjaElaElaElaElaEjbnliCewOfaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbibbhGbicbidbiebgdbifaIeaHNaHNbigaHNaHNaHNbihbiibijbikbilbikbimbikbikbinbimbikbikbikbikbikbijaHNaHGbigbihaHNaHNcpNcpOcpPbiocpQcpRcpSaHNaHNbihaHNaHGbipbiqbipbirbisaHNaHNbipbitbiubhSbivbiwbeIbeIbeIbixbiybizaTxaTxaTxaTxbiCaFiaEjaGPpKdaEjaEjaEjaEjaEjaEjaEjaUCbkFpnUuwbbiDvYNbkFfwIaKqbiFgfigfigfintjgfigfigfigfintjgfivskbhBaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbbTbiIbiJbiKbiLbiMbgVbiNbgabiObiPbjjbiRbiSbiTbjLbjLbiWbiXbiYbiYbiYbiYbiZbiYbiYbjabjbbjabjabjcbjcbjdbjebjdbjfbjgbjhbjdbjicpTbjkaBIaDZaDZbjlcpUbjnbKMbjpbltbjrbKMbGabKMbBoaANbjmbjmbjmbeIbjubhSbivbiwbeIaKqbjvygZbjwbjwbjwbjwbjwbjwpdWaTxbjxbjxbjxbjxobjbjxbjxbjxbjxoTlqHIbkFpnUbjBbiDvYNbkFbjEgfibjFaFibfMybXbfMybXfNvbfMybXfNvaFiljefwIaElahtaaaaaaaTCbeUaTEaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbbQaZxaZxaZxaZxaZxbbQjzzaYGaYGbbTbfYbfZbfZbjIbjJbjKbgdbgdbjLbjLxQcbjLbjLbjLbjLbjPwUfbjRrvHbjSbjTbjUbjVbjWbiYbjXbjYbjZbkabkbbkcbkdbkebkfcpXcpYbkibjcbjdbjdbjeaEYaGVaGVbGabKMbKMbBobkmbmCbkobkpbkqbkrbksbktbkubkvbkubktbktbkwbktbktbktbkxbkxbkxbjwbkybkzbkAbkBbjwbjwbjwbjwbjwbjwbjwaLiaFiaEjaFiaEjvzPaKqbkFbndbkHbndbndbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFrxaeCKaEjaEjaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbkQbkRbkSaZxbcXaZxbbRbaKbbTbkTaYGbfZbgdbgdbgdbgdbkWbjLbkXbkYbkZblakSOblbblbwUfblcbiYbldblebldblfblgbiYblhblibljblkbkbbllbkhblmblncpZcqablpbkeblqblrbjdblsaDZblubKMblvblwblxblybmCblzblAblBblCblDbktblEblFblGblHblIblJblKblLbktblMblNblMbjwblPblQblRblSbjwblTblUblVblWqDJbjwtimbjwbjwbkDbjwvzPaEjbkFtaTmqltdBblZxWlbnjblXbnhbnibnjblXbnhbnibnjblXbnhblXbkFbnlwQUbnnaEjaaaaaaabyabyabyaedaedabyabyabyabyabyaedabyabyabyaedabyabyabyabyabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxbbRbaKbbSaZxbdVjzzbbRbaKbbTbfYbmcaYGbmdbmebmfbmfbmfbmgbmhbmibmjbmkbjLbmlbjLbmnbiXbiYbmpbmqbldblfbmrbiYbmsbmtbmubmvbkbbmwcqabpTbmxcqcbmybmzbkhbkhcqdbmAaBIaDZaDZbltbmCbmCbmCbmDbmHbmIbmJbkncqebkobkubmLbmMbmNbmObmObmPbmQbmRbktbmSbmTbmUbjwbmVbmWbmXbmYbjwbmZbnabnbbnavmGuAZeXonJIxPavxpbjwiWVwAIbkFlWHbpnbpnmQmhPNbnjblXblXblXbnjblXblXblXbnjblXblXblXbkFbokxahbomaElaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabslaZxbslbaKbaKbaKbaLbaKbnobnpbnpbnpbnqbnrbnsbntaYGbnubnvbnvbnvbnvbnvbjLbjNbnwbjNbjLbjLbnxiGJbnybiYbldbmqbldblfbnzbiYbnAbnBbnAbjabjcbnCbnDbpTbnEbnFbnFbnGcqfbkhcqdbmAaBIaDZaDZcqhcqicqibnIbJIbyKbyKbnLbnMbnNbkobktbnObmMbnPbnQbnQbnRbmMbnSbktbnTbnUbnTbjwbnVbnWbnXbnYbjwbnZbqsbqspbIbnZboebofbogbohbocbjwaFivzPbkFwfshEXthWilDnxTbnjbprblXblXbnjbprblXblXbnjbprblXblXbkFaFifwIaEjbkFbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtKbtLbcXbtMbonbonbonbonboobonbaKbaKbaKbaMbopbfYbntaYGboqbnvborbosbotboubovbowboxboybozbnvboAbjQaaxbiYbldboCbldblfboDbiYboEboFboGbjcboHboIboJbpTboKboLboMboNboNboNboObjdbmBjcTbjmbKMboPboQboRboSboSboTboUbsUbyCbkobktboXbmMbnPbnQbnQbnRbmMboZbktbpabpbbpcbjwbpdbpeeSLbpgbphbpibqsbqsbqspDPboeboabpobppbncbjwbpqvzPbkFpfPbrObpnedJuePbnjoSckNfhvWbnjbqGbqHbqIbnjbqJbqKbqLbkFaFifwIbkFbkFkRKqcDqYqlGSdmTbkFblXblXblXbkFahtabyahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxaZxaZxaZxpEHbaKbaKbaKbbTbfYbptaYGbpubnvbpvbpwbpxbnvbpybpzbpAbpBbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpHbpMbpNbpObpPbpQbkhbpRbpSbpTbpUbpVbpVbpWbpXbpWbpVbpYvKqxjemhncClbqbcClcClbqbbqcbqbcClbqdbqebqfbktbqgbqhbqibqibqibqjbmMbqkbktbqlbqmbqnbjwbqobqpbqqbqreYredlbqtbqtbqtnBLbqvbqwlARbqxtdpbkFbnjbqAbkFbqCbzgbqEbqFostbrRbsabsbigEbnjbsabsbbscbnjbsabsdbsebkFaEjbqObkFkFDcPyxxwsNznImtqXbkFblXblXblXbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxdeJbaKbaKbaKbbTbqSaYGaYGboqbnvbqTbqUbqVboubqWbpzbqXbqYbqZbrabrbbrcbrdbiYbiYbiYbiYbiYbiYbiYbrebrfbrgbjcbrhbribjdbpTbpUbpVbrjdHZbrlbrkbrmbpYnTrtTlcqicClpYwbrqbrrbrsbrtbrucClbrvbyCbkobkubrwbrxbmMbrybrzbrAbrBbrCbktbrDbrEbrFbjwbrGbrHbpfbqsbqsbqsbrKbrLbrMbqsbqsbrHbqsbqsoDPbrRbrTbrUbrVbrWbrXbrWbrWnOYqVPbtwbtwbtxitlbtwbtwbtxbsfgIGgIGxjTbkFbtAbtBxKceILdirlhAnqVoEWnEbpbRblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxsIKbaKbaKbaKbbTbsmaYGbsnboqbnvbsobspbsqbnvbsrbssbstbsubsvbswbsxbsybszbsAbsBbsCbsCbsDbsEbsAbsFbkgbsGbjcbjdbjdaaybsHbsIbpYbsJbsKbsLbsMbsNbpYgDRtTlcqicClgFobyFbsRbsSbsRbsTcClcqkcqlbsVbktbsWbsXbsYbsZbtabtbbtcbtdbktbtebtfbkxbjwbtgbrHbthbtibrJbtkbtlbtlbtlxgGbrJbtpbtibrJbtsbttbxFbxFumevMxcsubtubtvdgzqtFbuIbuJdxcbuLbuMbuNbuObuQbuNbuNbtEqdiuXGbtFvgpmTSmTSlFhoSLiuMpWmblXblXtfPtuybkFahtabyahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxwjQbaKbaKbaKbbTbtNbtObtPbtQbnvbtRbtSbtTboubtUbtVbtWbtXbtYbnvbtZbsybjQbuabubbucbudbucbuebuabkhbufbrfbugcqmcqmcqmblobuibpYbujbukbulbumbunbpYvzAtTlcqitJrcSKcCtbupbuqburbuscClbutbyCbuubktbkubuvbkubktbktbktbktbktbktbuwbuxbuybodfjsbuAwBbwBbwlKbuBdkRbuCgDZcKAbuDbuEbuFbuGbuHbrRwkZbuKbkFofNxzpxprnuvjxljwebwebwebwfcucbwhbwebwfbuUbwebwebuWbkFmtIgICoBbpMGufaufahUJwXuuvonaqblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxpEHbaKbaKbaKbbTbfYaYGbvabvbbnvbnvbtSbnvbvcbouboubvdbvebvcbvcbvfbvgbvhbvibvjjsjbvkkQytixrarjUVbvmbvnbvobvlbvlbvlbvlbvpbvqbvrbvsbwUbvtgGApxDbvugkScqitzHduFbyFbvwbvxbvybvzbqbbsUbvAbvBbvCcqpbvEbvFbvGbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbvTbvUeNqbvVbvWbvVbvYbvZbwabwbbwcbjwbkFbnjdqwbkFgdLugCihkihktXnbrRbxMbxNbxObnjbxMbxQbxRbnjbxMbxSbxTbkFbwmbwnbkFiPzoNEtaAriWcOpmMzbkFblXblXblXbkFaaaaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoQmpqPbcXqRmbbRbaKbaKbaKbbTbfYaYGbwsbwtbnvbnvbwubnvbwvbwwbwxbwybwzbwAbvcbwBbwCbwDbwEbwFbwGbwHbwIcSJbwEbwKbwLaazbwNbwObwPbwPcqsbwQbpXbwSbwTbsKbwVbwWjZGhIZtTlcqitzHbxabxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxnbxobxpbxqbxrbxsbxtbxubxvbxwbxxbxybxzbxAbwabxCbxDeNqcxtbxGbxHbvYbxJefubxKbxLbjwldQbwmspzbkFiLlgdJpXgcPThfZbnjbzkbzlbzmbnjbznxxObzpbnjbzqbzrbzsbkFkFuvRibkFsXRoepqcHjtflGSdmTbkFblXblXeQRbkFahtabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxbxYbxZbyaaYGbybbycbnvbydbtSbyebyfbygbyhbyibyjbykbvcbylbymbynbsAbyobypbuabyobsAbsAbyrbysbytbyubyvbyubyvbyubyvbpYbywbyxbsKbyzbyAbpYtqOtTlimEbyDbyEnIUbyGbyHbyImdLbqbbyJhiYbyKcqtbyLbyMbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbzabzbbzcurPbzdbzebzdfkHtAKbzhbzibzjbjwlNWbwmspzbkFbkFbkFbkFbkFbkFbkFbAHblXblXbnjbAHblXblXbnjbAHblXblXbkFtSLdKsbwmsXRbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbzzbzAbzBaYGbzCbzDbnvbzEbwubzFbzGbzHbzIbzJbzKbzLbvcbzMbzNbzObsAbzPbzQbzRbzSbzTbzUbzVbzWbzXbzYbzZbAabAbbAcbAdbpYbAebAfbAgoohbAibpYmqptTlkYMbAmbBpbAobApbAqbArbCJfRsbAtbAtbAtbAubAvbAwbAxbAybAybBobAAbAAbABbAAbAAbAAbAAbACbADbAEbAFbAFbAFwnJvTNwnJbAFbAFbAFbAFbAFbHymSclWyspzbxPbwmlWykPisyQkkQbkFblXbBUblXbnjblXbBUblXbnjblXblXblXbkFcDBoKabwmpwSmlrnNNahtaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbAIbAJkGebAKbALaYGbzCbAMbnvbANbAObAPbAQbARbASbATbAUbAVbvcbAWbAXbAYbsAbCjbzQbzReFjbBcbBdbBebBfbpPwLobBgbBhbBibBjbBkbpYbpYbBlbpYbpYbpYbpYcKVkozmfCdhzwfGbBqbBrbBsbBtbBufRsbBwbBxbBybAubsUbBzbkobBBbBoaaabAAbBCbBDbBEbBFbBGbAAbBHbBIbBJbAFbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbHyscigXgwFTnevxlAcDBcDBcDBrKLbkFblXbDeblXbnjblXbDeblXbnjblXbDeblXbkFcDBrgnbwmbwmsEBbwmbwmahiaaaaaaaedabyabyaedabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbBVabIbBXbBXbBXbBXbBXbBYbvbbnvbnvbnvbnvbBZbCabCbbCcbCdbCebvcbCfbCgbChbsAbCiiojbBbbClbCmbyobCnbCobCpbCqbCrbCsbCtbCubCvbCwbCxbCybCzbCAbCBbNZiwedggfdQuxPbBpbCEbCFbCGbCHbCIbAobCKbCLbCMbAtcqkcqvbkobCNbCOahtbCPbDNmzEbCQbCQxExbCSbCTbCUbBJbCVbCWbCWbCXbBNbCZbCWbDabDbbDcbDdbHybwmbwmbwmhgDbwmlWyhxnrFqlWybkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFaadjRGeuQvtljEXlWyvHfahiaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfabIbBXbDgbDgbDhbvabDibDjbDibDibDkbnvbvcbvcbvcbDlbDmbDnbvcbDobDpbDqbsAbDrbsAbDrbsAbDrbsAbDsbkhbpPwLobDtbDubDvbDwbDxbDybDybDybDybDybDzbvaqTVphJbmDbDAbBpbDBbDCbDDbDEbDFbAobDGbDHbDIbAtbsUbBzbkobDKbBoahtbAAbDLbDMbCRbDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDXbDXbEabEbbEcbEdbHyglfpNyveMbEfbAFtSLuvqobPlWybwmkgRdMOhTlbwmqIOdmPaaAsZuwfcbwmueVdoodtmgmpvuQbwmruibwmbwmahiaaaaaaaedahtahtabyabyaedahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfahtbBXbEjbEkbElbEmbEnbEobmfbEpbmfbEqbDibErbvcbvcbvcbvcbvcbEsbEtbEubjcbEvbEwbExbEybEzbkbbEAbEBbECbzYbEDbEEbEFbEGbEHbDybEIbEJbEKbELbEMbvaxDjphJbmDbEQbBpbERbESbETbEUbEVfRsbEWbEXbEYbAubsUbBzbkobEZbCOaaabCPbFabFbbGhbCRbFdbCSbCTbwbbFfbCVbFhkmnbFibFjbFkbFlbFmbFnbGubFpbHybFrbFsbFtbFubAFlWybFxbFybFzbwmbFBlWybFCbwmjXAbFDlWylWysAKbwmheCefUbwmbwmbwmbwmbwmbwmaaaahtabyaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFEaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaabDfabIbBXbFFbvabvabvabvabvabsnbsnbvabFGbEnbFHbFIbFJbFKbFLbAWbErbFMbFNbFObFPnaSbkhbFQwtEbFRbFSbkhbFTbFUbFUbFUbFUbFUbFUbDybFVbFWbFXbDybFYbvabltlJIeRpbGabBpbBpbBpbBpbBpbBpbBpbAtbGbbGcbAubGdbBzbkobGebBoahtbAAbGfbGgbGhbCRbGibAAbGjbGkbGlbAFbGmbGnbGobGpbGqbGrbGsbGtbGubGvbGwqtAbGxbGynoMbGAbAGbIPbGBbIRbwmbwmrxQbwmbwmbwmbwmfKjbwmbwmbwmuugeMCjFwrNBaaaaaaahtaaaahtaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGDbGEbGFbGEbGGbGHbGIaaaahtahtaaaaaaaaaaaaaaaaaaaaaagSaaabvabvabvabGKaaBbGMbvabvabvabvabGNbDibErbGObGPbGQbGRbAWbGSbGTbGUbFObGVbkhbGXbuhbuhbGYbGZbuhbHabFUbHbbHcbHdbFUbFUbFUbFUbHebFUbFUbDzbvajCvbAkbAlbHpbvDbHhbHibHjbHkbHlbHmbHgbHnbHobHpbHqbHrbHsbHtbCOahtbCPbCRbHubCRbCRbHvbHwbuzbuzbuzbHybHybHybHybHybHybHyubWbHzbGubHAnsDkhkbHCbHDbHEbAFbwmbNqbwmfwrbwmsvNlWynzDbIQbIQgxKlWybwmhXtbwmcDBcDBxpDbwmahtabyabyabyabyaedabyabyaedabyahtahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbGDbGEbHJbHKbHLbGEbHMbHNaqGaqGaqGaaaaaaaaaaaaaaaahtagSbvabvabHPbHQbHQbHQbHRbHQbHSbvabHTbGNbDibErbHUbHVbHXbHXbHYbHZbIabIbbFObIcbIdbIebIfbIgbkbbCnbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbFUbDzbvabOKbItbIusYQbIvbIvbIvbIxbIvbIvbIycqwbIAbRXcqxbICbIDbBAbIEbBoaaabAAbIFbIGbIHbIIbIJbHwabIabIabIaaaaaaaaaaaaabIaaaaaaubWbIMbILbIMrPWbINcxbfBzbJVbAFrBhtSLbwmeMClQnbIQbIQuojbwmhXtpWFbIQbIQbIQbIQbIQdVJjQhbwmaaaahtahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybITbIUpbmbIVbIWbIXbHMbGEbGEbGEbGEbIYaaaaaaaaaaaaahtagSbIZbJabJbbJcbJdbJebJfbJgbJhbvabJibGNbJjpQwbJksENbJmbJlbGWbGWcBKbJnbFObFObFObjcbjcbjcbjcbJobkhbJpbJqbJrbJsbJrbJtbJubJvbJwbJxbJybJzbJAbvabENbJBbJCbJDcqzcqzcqzcqzbJEbJFbJGcqDbJHcqEbJJbJKbJLbJMbJNbJNbJNbHwbHwbJObHwbHwbHwbHwbJPbJPbJPbJPbJPahtabyabyabyahtxIxbJQbJRbJSkfhdAFbJTgMmbLhbAFgjvhMxbwmbwmbwmueklWybwmbwmbwmbwmbwmbwmrNBbwmbwmjDAbwmbwmaaaaedabyabyaedabyabyaedabyahtaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybJZbHMbKabKbbKcbKdbNwbKecqWizFbGEbIYaaaaaaaaaaaaahtagSbIZbHQbJbbKhbKibKjbKkbKlbKmbvabvabGNnpEbErbKnbKobKnbKpbKnbKqbKrbKsbKtbKubErbKvbKwbKxbKybGZbKzbKAbIjbKBbKCbKDqnibKEbJxbKFbJxbKGbFUbKHbvabKIbKJbKKbBobKMbBobBobKMbJNbKObKPbKObJNbJNbKQbJNbKRbJNbJNbKSbKTbKUbKVbKWcqGbKYbKZbLabLbbLcbLdbLebJPaaaaaaahtaaaaaabHybIMbLfbIMbHybCVwOSbCVbMqbAFtfxtfxrNBahtrNBlWylWylWybwmahtahtaedabyabyaedbwmrNBbwmahtahtabyahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyabyaedabybITbHMcqHbLobOybLpbLqbLrbKfrosbHMahtaaaaaaaaaahtahtagSbvabLtbJbbLubLvbLvbLxbJbbHQbLybsnbGNnpEbErbLzbLAbKnbLAbLBbKnbLCbKsqarbLEbErbLFbLGbLHbLIbLJbnHbLKbFUbKBbLLbKDbFUbLMbLNbLObLPbLQbFUbKHbvabENbJBbCCbBobLRbLSbLTbLUbLVbLWbLXbLWbJNbLYbLZbMabMbbMcbMdbMebWMbOrbOXbMgbOXbMhbORabIbMibMjbOSbMkbJPahtabyabyabyahtbHybMlbMmbMnbHybCVbMpbCVahtbAFxlgxlgbwmbwmbwmbwmmESbwmbwmbwmbwmaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabIaaaabIbGHbMrbHMbLnbMsbMtbMubMvbMwbMwbMxbHMahtahtaaaahtahtahtalabvabHQfgSbLubMAbMBbLxbMCbMDbLybMEbGNnpEbErbMFbMGbKnbMGbMFbKnbMHbMIbGWbMJbErbjcbjcbjcbjcbMKboNbMMbFUbFUbFUbFUbFUbMNbMObMPbMQbMRbFUbKHbvabHfbMSbMTbMUbMVbmCbmCbMWbMXbMYbMZbNabNbbNcbNdbNebNfbNgbPTbNhbNibPUbUvbNjbNkbNlbWRbNnbLbbNobLebLebJPaaaaaaahtaaaaaabHybNpbNpbNpbHybCVbPlbCVahtuaOmJpmhKbwmikBwTOqnTlWydMIoEGhFpbwmahtabyaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyaaabNrbNsbNsbHMbNtbNubLsbNvbNwbNxbNybNzbNAbNBamCamBamCamBamDahtbIZbNFbJbbNGbNHbNIbNJbJbbKmbvabvabGNnSjbErbNLbNMbKnbNNbNObKnbNPbNQbNRbErbErbNSbNTbNUbjcbjccBLbjcbjcbNVbNWbNXbFUbFUbFUbFUbFUbFUbFUbNYbNZbOabObbOcbmCbOdbmCbmCbOebOfbOgbOhbOibOjbOkbOlbOmbQJbOnbOnbOobQKbRwbQLbOpbOqbQMbWcabIbJPbJPbJPbJPbJPahtabyabyabyahtbOsbOtbOtbOtbOsbOubcOahiaaadsznquwIorNBiVJhPUlJrlWylWyndIabfrNBaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbNwbNwbOxbMybNwbNwbNwbNwbHMbHMabIaaaahtaaaahtaaaaaabIZbHQbJbbOzbOzbOzbOzbJbbOAbvabJibGNcXWbErbOCbODbErbODbOCbErbOEbOCbAWbErbOFbCzbCzbCzbCzbCzbCzbCzbCzbCzbOHbCzhZBbCzbCzbCzbCzbCzbCzbOJbvabOKbJBbmDbOLbOLbOLbmCbOMbONbOObOPbOQbPQbPQbOTbOUbOVbOXbOXbOXbOZbPabPabPVbPdbPebPfbLabLbbPgbPhbPhbJPaaaaaaaaaaaaaaamZEmZEmZEmZEmZEahtaaaahtahtxQkmJpmhKbwmlWyxsOlWylWylWylWyabfbwmahtabyabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybGDbNsbOwbOwbOwbNwbPnbPobNwbOwbOwbOwbNsbSZabIahtahtahtahtahtahtbvabvabPpbHQbHQbHQbHQbPqbPrbvabHTbPsbPtbPubPvbPwbPxbPxbPvbPxbPybPzbvabPAbDzbPBbPBbPBbPBbPBbPBbPBbPCbPDbPEbPEbPFbPEbPEbPEbPEbPEbPEbPEbPEbPGbPHbPIbPJbPKbPLbmCbPMbJNbPNbPObPPbRxbRybPRbPSbMfbMfbMfbMfbMfbMfbMfbPVbPWbPXbPYabIbMibPZbQabQbbJPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxInqumhKrNBtyprEhmaWlWyjDAcDBijUrNBaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbQcbOwbQdbQebQfbWXbQebQdbOwbQhbNsbQiabyabyaaaaaaahtaaaahtabIbvabvabIZbIZbIZbIZbvabvabvabQjbvaqyFbvabIZbQkbvabIZbIZbvabQlbIZbvabNXbDzbPBbQmbQnbQobQpbQqbPBbPBbPBbQrbQsbTubQubQvbQwbQxbQybQzbQAbPEbQBbQCbmDbOLbOLbOLbmCbQDbQEbQFbRzbQGbRAhkabPQbSfbMfbMfbMfbMfbMfbMfbMfbPVbPWbSRbQObNnbLbbQPbPhbPhbJPaaabzyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIxQktlpmhKbwmbwmrNBbwmbwmbwmrNBbwmbwmaedabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQQbNsbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbNsbQRabIabyaaaaaaahtaaaahtaaaaaaaaaaaabBWabIabIbvabQSbQTbPAbWkbQUrXTbOGbQVbOIbCzbCzbCzbQWpwjpwjbQXbCDbPBbQZcCPcCFcCHbRbbRcbRdbRebRfbRgbRhbRibRjbRjbRjbRkbRlbRmbPEbBmbJBbRnbRobRpbRobRobRqbRrbRsbRtbRubSSbQHbPQbUpbMfbMfbMfbMfbMfbMfbMfbPVbPWbRBbPYabIbJPbJPbJPbJPbJPabIabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxIilEhyhcdmahtaaaahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabIbNrbNsbNsbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbNsbNsbRCabIabIaaaahtahtahtaaaaaaaaaaaabBWouvrMVrMVvmYvayvaynLlbvabFZbvabREbFZbvabRFbNKbvabvabvabKHbDibPBbQZcCFbRacCFbRGbRHbRIbRJbRKbRLbRMbRNbRObRPbRQbRRbRSbRTbRUbRVbRWbRXbRXbRYbRZbmCbCCbSabSbbScbSdbSTbSebQIbTMbMfbMfbMfbMfbMfbMfbMfbPVbPdbShbPfbLabLbbSjbSkbSlbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaahtabyabyabyaedabyabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabGDbNsbNsbSmbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbNsbNsbSnabIaaaahtaaaahtaaaaaaaaaaaabBWbBWcqybSobSpbSqbSqnfzbvasUPbSsbStbFZbSubDibSvbSwbSxbvabKHbUebPBbQZcCHbSycCPbSzbSAbSBbSCbSDbSEbSFbSGbSHbSHbSHbSIbSJbSKbPEbSLbSMbSMbSNbSMbSObQDbSPbJNbLWbSQbTObJNbPQbPQbUpbMfbMfbMfbMfbMfbMfbSUbUwbPWbSVbPYabIbMibSWbSXbSYbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaahtaaaahtaaaahtaaaahtaaacFBaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabQQbNsbOwbOwbOwbOwbQdbQebQfbWXbQebQdbOwbSmbOwbOwbNsuZbabIabIabIaaaahtaaaaaaaaaaaabTabTbbTcbSqbTdbDibvanpEbvabTfbTgbThbFZbTibPCbTjbPCbTkbvabKHbTlbPBbTmbTnbTobTpbTqbPBbTrbTsbQrbTtbTubTvbTwbTxbTybTzbTAbTBbPEbTCbTCbTCbTDppsbTFppsbTGbJNbTHbTIbTJbTKbTLrNibTNbMfbMfbMfbMfbMfbMfbTTbUwbPWbTPbQObNnbLbbTVbSkbSkbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaabyaedabyaaaabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbOwbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbOwbNscqSuZbaaaabIaaaahtaaaaaaaaaaaabTWabIcqybTXbPCbSwbNKoZWlGvvGgbUarJglmsbUbbDibDibUcbUdbvabKHbBXbPBbPBbPBbPBbPBbPBbPBbPBbPBbQrbUfbUgbUhbQrbQrbQrbQrbQrbQrbQrbUibUjbUkbTCbUlbUmbUnbTQbJNbUpbUqbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbUvbUwbPWbUybWcabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaabGIbGIbGIcqUbNsbNsbOwbOwbOwbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbOwbOwbOwbNsbNsveFahtahtahtaaaaaaaaabUDbUEbvabvabUFbDibSwbvabDibvawdxjYhdAGbvabvabvabvabvabvabvabKHbBXuwXbUGuwXbUHbUIbUJbUKbULbUMbUHbQrbUNbUObQrbUPbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbVabVbbVcbVdbVebVfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbKXbVjbPdbVkbVlbLabLbbVnbVobVobJPaaaabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabVpbNsbNsbNsbNsbNsbQebOwbOwbOwbQgbQgbQgbQgbQfbWXbQgbQgbQgbQgbQgbQgbQgbQebNsbQRabIaaaabIaaaaaaaaabVrbvabvabVsbNKbDibvabvabDibvabVubVvbVwbvabVybPAtRcbvabDijXVbKHbBXuMeuMewMMbUHbVDbVEbVGcqVbVHbUHbVIbVJbVKbQrbVLbVMbVMbVMbVNbUUbVObVPbVQbVRbVSbVTbVUbUobJNbUpbMfbMfbMfbMfhjkbVZbVZbVYbVZbVZbVZbVYbTRbTSbUrbWbbWcabIbMibWebWfbWgbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbUCbWhbQgbQgbQgbQgbQgbOwbQdbQebQfbWXbQebWibOwbOwbOwbOwbQgbOwbNsbNsbSZaaaabIaaaaaaaaacqXabIbvabVCbvabDibvabWjbSwbvamzUbvabvabvaohRbSwbVzbvabDibvaiygbBXlTChzcfzubUHbWnbWobWpbWqbWrbUHbWsbWtbWubQrbWvbWwbWxbWybWzbUUbWAbWBbWCbWDbWEbWFbWGbWHbJNbWIbWJbMfbMfbWMpmBbOXbOXbUsbOXbWObMfbWPbUtbUubWQbUzbWRbNnbLbbWTbVobVobJPaaaabyaaabzyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbOwbOwbQgbOwbOwbOwbOwbOwbOwbWVbWVbWWcekbWVbWVbOwbOwbOwbOwbQgbOwbUCbNsbSZabIabIabIahtahtcqXaaabvacqybvabWZbDibWZbSwbvarzpnQciEQbvahVxbSwftpbvawIvbvalIrqXqbXdbXewiBbUHbXfbXgbXhbXibXjbUHbXkbXkbXkbXkbXlbXmbXnbXobVNbUUmCemCemCebWDbXkbXpbXqbXkbJNbXrbXsbXtbXubXvbXwbUAbXxbVgkasbXAbXBbXybXCbXDbXEbXFbXGabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacfNbZYcrbbZYbZYbZYcfNcfNcfNbOwbQgbOwbOwbOwbOwbWVbWVbWVbXJbXIcdxbXJbWVbWVbWVbOwbOwbQgbOwbOwbNscrebGIaaaaaaaaaaaacqXaaaahtaaabvabDibvabXSbSwbSwkpKbXUbXVtvPoWwnNJlQXnNJqOHqYibQYbBXcifkrUreVbUHbUHbXYbXZbYaqGZbYbbYcbYdbYebTEbYfbYgbYhbYibYfbUTbYjbYkbYlbTEbYmbYnbYobTEbJNbKQbJNbYpbLWbVhdJkbYpbVibVmbNmbQObNmbQObYsbYtbYubYvbYwahtaaaahtahtaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbZYcrgceCcrhbZYcfNcfNbOwbOwbQgbOwbOwbOwbUCbWVcrjbXJbXJbZndpcbXJbXJcrkbWVbWVbOwbQgbQgcrlbNsbNsbNsbSZabIahtahtcrmbvabIZbvabvabDibvabvabvabYFbDibDibDibDibDibDibDibDifpTbBXbXkbXkbXkbXkbXkbXkbYIbYJbYKbYLbYQbYNbYObYPbYQbYRbYSbYTbYUbYVbYWbYXbYQwjmbYObYYbYZbZahXKbZcfrjudlcuieAZcuipoPcuieAZcuipoPcuipoPcuipoPbVWbZfbZgbZhbZibZjbYwbYwbYwbYwaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrtcrucrvcrvbZYcfNbOwbOwbOwbQgbOwbOwbWVbWVbWVbXJbZlbZmbZndpcbZlbZmbXJcrxbWVbOwbQgbQgbXLbXMbXNrzFahiahicdmcdmcrycrzcrAcrBcrCbZrbvabNXbOBbSwbZtbZtbNKwRkbNSnWPbvabOBfpTbBXmbebZxvRmkyvsKabTEjrGbZybZzbZAbZDbZFbZAbZFbZAbZAbZAbZBbZEbZAoWubZAbZAbZFbZAbZAbZGbZFbZIueXpYhbZKbJPbZLbMibZLbJPbZLbMibZLbJPbZMbMibZNbYwbZObZPbZQbZRbZSbZTbZUigBbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrDcrEcrFcrGbZYbZYbZYbOwbOwbQgbOwbQebWVcdCbYzbXJbYAbYBbZndpcbYAbYBbXJcrHbWVbOwbQgbQgbNsbNsbNsbNsbNsbSZabIabIabIbvabIZbvabvacaabvabvabvabvabvabZsbvabvabvabvabvabSwfpTbBXsczeQNbpLlWJiFIcaecafbZynAYcawcajcakxhIrTdcancancancaqcarcamcamcamcamcbmcamcamcaxcalhXKcCUpYhabIbJPcazcaAcaBbJPcaCcaDcaEbJPcaFcaGcaHbYwcaIcaJcaKcaLcaMcaNcaOcaPcaQcaRhblaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYbZYcehnkubZYbZYgiIpkMbQgbQgbQgbSmbWVbWVcaTbWVcrKbZlcrLbZndpccrMbZmcrNbWVbWVbUCbQgbOwbOwbOwbOwbOwbNscrOaaaaaaaaaaaaaaaaaabvacaabvacabaaCbvaoAWkRqbMEbvaklogjpbvabDiwNquUQkSFtcYfQfiAxoUaetauuncbccbdcbecbfcbgcbhwDlcbicbjqpScbkmgzccWvlilfxmgzmgzlrMcbncbocbpcbqbZJpYhabIbJPcbscbtcbsbJPcbucbvcbubJPcbwcbxcbycBTcbAcbBcbCcbDcbEbZTcbFfRrbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYjsDxSXcrTceEcrUbZYpkMbZYbOwbUCbOwbOwbWVbXJcbKbWVcdrbYAcaVbZndpccaWbYBcrXcrYbWVbOwbQgbQebOwbOwbOwbOwbNsarFbvabIZbIZbIZbvaaaabvabXabvajPfkRqgkXbDiuMtbDiolcbSvlHXbvabDibvabBXkDJcamcbWbZAvjdmmvcbYcbZnRMccaccbcamcbhvxrcccaacaaeaacaacbXkckJbXkaacaacaaeaaccccccicbdwbFpYhabIbJPcbsccmcbsbJPcbuccncbubJPcbyccocbybYwccpccqccrbYwthAbYwbYwqVkbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdcsecsdcsicsfcsgcshlAfcrvbZYccubOwbOwbUCbWVbYzbWVbWVcdwcbPcbMbZndpccbPcbMcdxcskbWVbQgbQgbQgbQgbQgbQgbUCbNsarFbvacaZcbacbbbvabIZbvabRDbvaoFIkRqbvapYCbMEksfbvanewnDobvabDigMOfdSoYjcamcbdcamoAwcaecdcbZycamcamcahcamcbhirMaaccbXccXccYcbXcdaceypCotlVoHacAQcbXaackTjcamcCVpYhabIbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbYwcdgcdhcdicdjcdkcdlgmZcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsncsdcsocspowSpFecsqcsrcsscsscfkcbGcbGcbGcbGcdqcdrcdsbWVcsvcduccHcbNcbOcduccHcgnbWVbWVcbRcbRbWVbWVbOwbQgbOwbNsarFbIZcbScbTbDibNKcsybSqbWlbvabvabvabvabvafefbvabvabvabvabvabIZbBXbBXuMosjCcdIouscdKbTEgnqcdLcdMqtOcdOcamcbhirMcdRwcsccXcdTwcswcscdWwcswcsoHacAQwcscdRkTjcamcebpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaabYwcbzbYwcecbYwcedoGwbYwcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacBMceFcsBcsCcspcsEhYecsEcsFcsGcsGtancefcsMceecefcegcsNcsOceicsNcsQcsQccEccFcePcePcsScbRccJbXJbXJcsTcsUccMbQgbOwbNsarFbIZccNbDiccObvabQlbvacdEbvarsestQpVDmHyfmhbDirhrdyesijbvaaaaaaabBXbXkbXkcribXkbXkbXkbXkcerbXqbXkioFcamcbhqFuaafiyJceuccYwcswcswcswcswcseWicLwcfPaagqhEcamepVpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaaahtaaaaaaceAbYwbYwbYwbYwbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsYcsdcdpcsprrUkwmctactbctactacteceBceBceBceBchJctgceHbWVbWVceKceLcdwcdxcthceKbWVbWVcdwcdAcdBcenbWVcdDbQgbQebNsarFbIZbIZozObIZbvacqXbvabIZbvauInboqkDYwzbbNUohRdymnVUbDibvaaaaaaaaaabXkmcicbXccRbXkceTceUceVxmEbXkceXmwGhjDcetbXkcfacbXcbXcfdwcscdWwcsdEycbXcbXcffbXqlozhaAqLIpYhaaaahtaaaaaaaaaaaafonfonfonaaaaaaahtaaaahtaaaaaaaaaaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdkDfcsdctrctrctrcttctugKzbZYcfNcfNcfNcfNcfmctxcflcfmcfmcfmcfmcejcekcfmcfmcfmcfmcelctxcfmbWVbWVceobQgbOwbNscrOaaacjmcwAcjmahtxNxrnErnEuknmIaboqfmhnYbnYbnYbbDibDiydfbvaaaaaaaaaabXkcbXcbXcbXbXkcfreVycfsymbbXkaahnAsaaiulYbXkaaccfuaacbXkeyjeyjeyjbXkaaccfuaacbXqfrjaajaajhUwuaOpBJuaOpBJahtahtfonshHfonaaafonfonfonfonmauaaaaaagYofonmaufonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYdpbcdocdocdoctJbZYbZYbZYcfNcfNcfNcfNcfmctKctLceJcfFcfGctMceMceNctNcfGctOcePceMctPcfmctQbWVbOwbQgbUCbNscrOaaacjmcwAcjmahtctSaaaaaabIZqdjboqrSHgVcdSrohRycxqBvihjbIZaaaaaaaaabXkceqcbVccQbXkcfObXkdWpbXksvAcfScfTcfUaaksWWtwvtlNvlCtlNeAHkTRqkMtlNloLjBncfXcfYaalupceiVnquwIowIowIoswgaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYctXkfMlzJbZYbZYcfNcfNcfNcfNcfNcfNcfmciDcggcfncfncfncfncfocfncfncfncfncfncfpcdxcfHcfIcfJbQgcfLbQgbNscrOaaacjmcwAxghkSbcFBaaaaaabvasXicgpbSouiPfmhreHlBPbDissxbvaaaaaaaaaabXkmhlcbVccQbXkcgrbXkcgsoremjKfFvwcstIScgucgvhoSncmiejncmlnrmEumiwncmcgxoxwvVOxNyeyjwIoupcnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcrOaaacjmcwAxghkSbaaaaaaaaabvabvadNrgHZxCVdJmxCVfvbpBDbvabvaeNFeNFeNFbXkceqceqccQbXkcgPbXkcgQqWGmjKfmLgggiCscgUlXbsWjcCIqeYlUOqeYwMXqeYpuwqeYmeFiopsmvuIBhyhdszgBbgBbgBbgBbpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcukcgbculcumcfCbWVcdrcdCcdCbXJcfmchfcfEcgGchicidcuncgkcuocupciVcgmcgGcfEcgncfmcgLcgMcgNcfmcgOcfmcrOaaacjmvcocjmahtaaaaaangeahtbBXbBXbBXehMbDixaObBXbBXbBXahtaaaaaaaaabXkceqceqccQbXkcgPbXkchvbXkmjKgXZqbprPgaamcgvdnSaanfyOmpdfBZdFJprQfyFfyOaaokWQxNyeyjupceiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcuscutchBcgdcuucgfcuvcuwcuxcuychFcuzcfpcgGcidcuAcuBcuAciVcuEcgHcuEcgGchnchochpchqchrchschtchucfmcfNaaacjmcwAcjmahtaaaaaaadRahtbBXbDiwfObDiwfOswwbDibDibBXahtaaaaaaaaabXkbXkbXkbXkbXkcgPtuemKkpaUaapkmdqbprPgaaquaPhSCaarfyOhKpfBZwYKprQcZtfyOaaooXqhGBeyjvoheiVnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVcuGcuHcuIcuJchUbWVbXJcbKcbKcuKcfmciDcfEbWVcuMcibcicciScgIcgKcgHcuObWVcfEcuPcuQchKchLchMcfmchNcfmcfNcfNcjmcwAcjmmauaaaaaaadRahtbBXbDibDidWkweLbDiwfOfLGbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmdSpaaclXJgEocBRaaccgvjTUaaofyOhKpfBZdFJprQcZtfyOaasqpdhStuIBpBJuaOgBbgBbgBbgBbhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVbWVchbchcchdcuRcuScePctgcePcePcuUcuVcuWcuXchjcgHcgHchkchlcgJcgHcgHcuYcdwcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcjmcwAxghfonaaaaaaadRahtbBXbBXbBXbBXbBXbBXbBXbBXbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmcdmaaclXJdMGiCsjzEukpfZKmeFqeYcitcgYuzhdgjfjDqeYcCItkLciveyjwIovohnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchCchDcuZchEciybWVcrjciAcdCbXJcfmciDcfEbWVcvbcgHchGcgHcibcgHcicciEbWVcfEcvccfmciocgMcipcfmciqcfmcfNcfNcjmcwAxghfonaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaahtcigpjHaaaaaabXkbXkbXkbXkbXkcgVpgHoKvoKvqeYciInUQpsdqeYcBScBStODciveyjvoheiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIabIabIabIabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchVchWchXchYchZbWVciNcvdciOcvecfmcfDcfEcgGciTciSciTcgHcvgabZciVciWcgGchnchociFchqchrchschtchucfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaadRngengeadRadReNFeNFngeeNFaaaaaaaaaaaaaaaaaaaaaaaaabIcgProcahtahtshHaaaaaaaaabXkcgvpgHwbBwbBpuwtdLfymfxCiTFcjtiLhtODvswbXkcdmcdmdszhyhdszhyhcdmaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIahiahiahiahiahiabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmchfcfEcgGcvhcidcjocvicidcvjcjqcjrcgGcfEcvkcuQciXchLciYcfmciZcfmcfNcfNcfNbNEcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkcgvuRkxzRwfPvBEdHrhondZjslJkaRliRikOqRlbXkaaaaaaahtaaaahtaaaahtaaaaaafonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjvcjvcjwcjxcjxcjxcjwcjvcjvcjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVciJciKbWVbWVcizcizcizcizcizcizbWVbXJcjHcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaabXkgQfciGhQChQChQChQChQChQChQChQChQChQCoKJbXkaaaaaaahtaaaahtaaaahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjvcjVcjxcjxcjxcjxcjvcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjfcjgcvqcgfcvrcvsckbckbckccvtcgfckdchFcvucfocfncfncfncvwcfncfncfncfncvwcfncvykXxcfmcfNcfNcfNcfNcfNcfNcfNcfNcfNqWocjmcjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkahtfonfonfonfonfonfonfonahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjxcktcjxcjxcjxcjxcjxcjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacjBcfHcfIcjCcfJbXJcjkcePcvAcePcvBckuckucvCcePcjlcePcuQcvEcvFciRcvFcvHcvIciRciRcvJckEcvKcePcfGcsSjSacwAxSdcwAcwAcwAcwAiXxxYVqWolxIeNccjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaaaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtahtahtfonshHshHshHshHshHfonaaaahtshHshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjucjucjxcjxcjxckLcjxcktcjxcjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjZckabWVbWVcvRcvScvTcvTcvVcrkbWVbWVcvXcvYcvZcwacwacwcckQcwacwecweckTcwgcwecwecfmcfmcfNcfNcfNcfNcfNcjmcjmcjmcjmxVtpiacjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonahtahtfonfonfonfonfonfonfonaaaahtshHfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjxcjxcjxcjxcjxcjxcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVcwjbXJcdwbZocwkceQbXJcwlbWVckeckfcwmcwncwocwpclfcjOcwecjPxhjcjRcwrcwecwecwecwecfNcfNcfNcfNcfNcfNahtcjmcjmcjmcjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaafonshHshHshHshHshHshHshHshHshHshHshHshHfonahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKcjucjucjuckKcjucjxcjxcljcjxcjxcjucjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbWVcwwbXJcjjcwxcwyciAbXJcwzbWVckyckfckjckgckhckicwAckkcwecklxhjjFOclmfWvfWvckpcwecfNcfNcfNcfNcfNcfNaaaahtahtahtahtnKoaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKcjucjucjucjucjucjucjucjxcjxcjxcjuckKcjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNcfNcfNbWVbWVcrjbXJcwEcwFbXJcwGbWVbWVcldclecwHckzckAckBcwAckCcweckDcwKckFckGqOEqOEckIcwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaafonaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKckKckKcjucjucjuckKcjuckKckKcjucjuckKckKcjuckKckKcjuckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwMfITcwObXJckvckwbXJcwOfITcwRcCRcjmckOckPckPckPcwSckRcweckSodMjFOcwUckVmKcckXcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKckKcjucjuckKckKckKckKckKcjucjuckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabITfITfITfITckMckNfITfITfITcwRaaacjmcjmcjmcjmcjmcjmcjmcweclgxhjcxejXhqOEqOEckIcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKcjuckKckKcjucjucjuckKckKckKckKcjuckKckKcjucjuckKckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgcxhfITclbclbfITcxkcxgaaaaaaaaacfNcfNcfNcaScfNcfNcweclkcxnjFOckUclnclnclncwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKckKckKcjuckKckKcjucjuckKckKckKckKckKcjuckKckKcjucjucjuckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgaaaaaacxgaaaaaaaaaaaaaaaaaacfNcfNcaScaScaScwecwexhjjFOcwecwecwecwecwecfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKcjuckKcjuckKckKckKckKcjucjuckKckKckKcjuckKckKcjuclsckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcaScfNcaScfNcwelqycxzcwecfNcaScfNcaScfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaaahtaaaaaaaaaaaaabNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKcjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKckKckKcjucjuckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcaSaaaahtaaacxBcxCcxDcxEaaaahtcfNcaScfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKcjuckKcjuckKckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxKcxLcxMaaaahtaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKckKckKckKcjuckKckKckKckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxXcxYcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPtfwaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKcjucjucjuckKckKckKckKckKckKcjucjuckKckKckKcjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacxJcylcymcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKcjuckKckKckKckKckKcjuclvckKckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacyycyzcyAcyBaaaahtaaaahtaaaaaaaaaaaaaaaaaacfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKckKckKcjuckKcjucjucjuckKckKckKckKcjucjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNaaaaaacjpcjpcjpcjpcjpjgrvOwcjpcjpcjpcjpcjpahtahtahtahtahtcyLcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPuHGclziBJouvrnrabIabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjucjucjuckKckKckKcjucjuckKcjucjucjucjucjucjuckKckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcyMahtahtcjpcjpcCWckWcyPcyQcjQijFcyRcySckocyTcjpcjpaaaahtaaaaaacfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclAclBclwclEclwclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKcjucjuckKckKckKckKckKcjuckKckKckKcjucjuckKckKckKcjucjucjuckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNaaaaaacyUckHckHckHckHckHcjQpXcickickickickxjccyUaaaahtaaacfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclDhQzclwxnmclNclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKckKclFcjucjucjuckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcyMahtahtcjpcyYcyZckHcyZckHcjQckmckHcyZckHcyZxjacjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclCclwclJclBclwclMqxqclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKcjucjucjuckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNaaaaaaaaacyUckHckHckHckHckHcjQckmckHckHckHckHckHcyUaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGclHclQclRclSclTclUclVclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKcjucjucjuckKckKckKcjucjuclvcjuckKckKcjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcyMahtahtahtahtcjpckHczlczlczlckHcjQckmckHczoclpczpczqcjpaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIclGclPclXclYclZcmacmbcmcclwabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjuckKckKcjuckKckKckKckKclvcjuckKckKcjucjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpckHczrczrcztckHcjQckmckHczuczvckHczwcjpahtahtcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGkFmrsZcmdtlwclLmxymDWclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKclvckKckKckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacyUckHczrczBczCckHcjQckmckHczDczvckHckHcyUaaaahtcfNcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclwclwcmhcmeclwclwclwclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpczHczIczIczIckHczLczMckHczNczOczPczQcjpahtahtahtcyMcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmfcmguznnMGcmjcmkcmlclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKckKckKckKcjuckKckKckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaahtaaacyUckHckHczVczWczWczYczZcAacAaclickHckHcyUaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmmcmncmocmpcmqcmrcmsclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcyMahtahtahtcjpcyRckHckHcAgcAgcAicAjcAgcAgckHckHcyRcjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRcmtclwcmucmvclGcmwclGcmxcmyclwcmzadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaaaaaaacyUcyUcjpcArcAscAtcAucAvcAtcAscAycjpcyUcyUaaaaaacfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclGclGclGcmFclGclGclGclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKcjuckKcjuckKcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacjpcABckHckHcACcADckHckHcABcjpaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmGclGopzclGcmHcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKcjucjucjuckKcjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacyUcyUcAHczWcAJcAKcAacAMcyUcyUaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBxFlgpIgpIqYScmKcmKcmKcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKckKckKcjuckKcjucjuckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcyMahtahtahtahtcjpcjpcAScATcAUcAVcjpcjpahtahtahtaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmLcmMcmNcmKcmOcmPcmQcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuclvckKckKcjuckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNcfNaaaaaaaaaaaacyUcyUcyUcyUcyUcyUahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmRcmKcmKcmKcmKcmKcmUcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKclvcjucjucjuckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaacyMcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmVcmWcmKcmXcmKcmYcmZcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnacnbcmKcnccmKcndcnecmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjxcjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaaacfNcfNcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmRcmKcmKcmKcmKcmKcmUcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjxcnpcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyMcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnjcnkcnlcmKcnmcnncnocmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjucjucnqcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmKcmKcmKcmKcmKcmKcmKcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnrcnscntcnucnvcnwcnxcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmBcmBcmBcmBcmBcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacnyaaaaaaaaaabIaaaaaaaaacnzaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC "} From f5ecdad8e95358a5b05c960b4982b2123e4201f0 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:58:46 -0700 Subject: [PATCH 102/165] Update eldritch_antag.dm --- code/modules/antagonists/eldritch_cult/eldritch_antag.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm index 25602c8588..d54f008108 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm @@ -98,7 +98,7 @@ var/pck = pick("assasinate","protect") switch(pck) if("assasinate") - var/datum/objective/assassinate/A = new + var/datum/objective/assassinate/once/A = new A.owner = owner var/list/owners = A.get_owners() A.find_target(owners,protection) From 646db6ef325eaf2c3efa24513c6def842d9bf1cf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:03:51 -0700 Subject: [PATCH 103/165] Update rust_lore.dm --- code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm b/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm index f5c54dd7bf..9d65396c63 100644 --- a/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm +++ b/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm @@ -69,7 +69,7 @@ var/mob/living/living_user = user living_user.adjustBruteLoss(-3, FALSE) living_user.adjustFireLoss(-3, FALSE) - living_user.adjustToxLoss(-3, FALSE) + living_user.adjustToxLoss(-3, FALSE, TRUE) living_user.adjustOxyLoss(-1, FALSE) living_user.adjustStaminaLoss(-6) From 017db3de90b6935888d1a49e97496affba862cc6 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:05:18 -0700 Subject: [PATCH 104/165] Update topic.dm --- code/modules/admin/view_variables/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/view_variables/topic.dm b/code/modules/admin/view_variables/topic.dm index af412a6caa..d7e893ec03 100644 --- a/code/modules/admin/view_variables/topic.dm +++ b/code/modules/admin/view_variables/topic.dm @@ -98,7 +98,7 @@ L.adjustFireLoss(amount) newamt = L.getFireLoss() if("toxin") - L.adjustToxLoss(amount, toxins_type = TOX_OMNI) + L.adjustToxLoss(amount, toxins_type = TOX_OMNI, forced = TRUE) newamt = L.getToxLoss() if("oxygen") L.adjustOxyLoss(amount) From 92b2177316e54b960494546af0d7e08d4a68cc7f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:35:09 -0700 Subject: [PATCH 105/165] Update _job.dm --- code/modules/jobs/job_types/_job.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index 9b816a9f90..64ab4791d3 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -133,12 +133,12 @@ return TRUE /datum/job/proc/GetAntagRep() - . = CONFIG_GET(keyed_list/antag_rep)[lowertext(title)] + . = CONFIG_GET(keyed_list/antag_rep)[ckey(title)] if(. == null) return antag_rep /datum/job/proc/GetThreat() - . = CONFIG_GET(keyed_list/job_threat)[lowertext(title)] + . = CONFIG_GET(keyed_list/job_threat)[ckey(title)] if(. == null) return threat From 269182f6ec96cd875821b994b1b71fff45c753e0 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Sat, 26 Dec 2020 18:53:55 -0400 Subject: [PATCH 106/165] added al light switch to surgery --- _maps/map_files/BoxStation/BoxStation.dmm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 01bb0a3f3f..19a9908826 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -34032,6 +34032,9 @@ /area/medical/surgery) "bCJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 26 + }, /turf/open/floor/plasteel/white, /area/medical/surgery) "bCK" = ( @@ -36314,6 +36317,9 @@ /obj/item/bedsheet/medical, /obj/machinery/iv_drip, /obj/machinery/light, +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, /turf/open/floor/plasteel/white, /area/medical/surgery) "bIe" = ( @@ -52049,8 +52055,8 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "cCp" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 +/obj/machinery/light_switch{ + pixel_y = -25 }, /turf/open/floor/plasteel, /area/medical/surgery) From 6508f76fcfcff7a947a4a832249464f246f838fe Mon Sep 17 00:00:00 2001 From: Chiirno Date: Sat, 26 Dec 2020 18:56:14 -0400 Subject: [PATCH 107/165] removed toxins mixing chamber zone and replaced it with toxins mixing lab zone --- _maps/map_files/BoxStation/BoxStation.dmm | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 19a9908826..8762726c1c 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -38203,17 +38203,17 @@ pixel_y = 32 }, /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "bMu" = ( /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "bMv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/closed/wall/r_wall, -/area/science/mixing/chamber) +/area/science/mixing) "bMw" = ( /obj/machinery/sparker/toxmix{ pixel_x = 25 @@ -38222,7 +38222,7 @@ dir = 4 }, /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "bMx" = ( /obj/machinery/airlock_sensor/incinerator_toxmix{ pixel_y = 24 @@ -38232,7 +38232,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/engine, -/area/science/mixing/chamber) +/area/science/mixing) "bMy" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 4; @@ -38553,19 +38553,19 @@ /area/medical/virology) "bNt" = ( /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "bNu" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, /turf/open/floor/engine, -/area/science/mixing/chamber) +/area/science/mixing) "bNv" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, /turf/open/floor/engine, -/area/science/mixing/chamber) +/area/science/mixing) "bNw" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, /turf/open/floor/engine, -/area/science/mixing/chamber) +/area/science/mixing) "bNx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -38981,7 +38981,7 @@ dir = 4 }, /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "bOF" = ( /obj/structure/sign/warning/fire{ pixel_y = -32 @@ -38991,7 +38991,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/engine, -/area/science/mixing/chamber) +/area/science/mixing) "bOG" = ( /obj/machinery/light, /obj/machinery/atmospherics/components/binary/valve{ @@ -51898,7 +51898,7 @@ /obj/effect/landmark/event_spawn, /obj/machinery/air_sensor/atmos/toxins_mixing_tank, /turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) +/area/science/mixing) "cBF" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ From 6d89c9f7b60fac601622b1bac27f0719106c4223 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Sat, 26 Dec 2020 16:39:20 -0700 Subject: [PATCH 108/165] I learned about mapmerger --- _maps/map_files/PubbyStation/PubbyStation.dmm | 134919 ++++++++++++++- 1 file changed, 127931 insertions(+), 6988 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 19d17bd138..0aaeba8e39 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,6991 +1,127934 @@ -"aaa" = (/turf/open/space/basic,/area/space) -"aab" = (/obj/machinery/holopad,/obj/effect/landmark/start/cyborg,/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aac" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aad" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"aae" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaf" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aag" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering) -"aah" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aai" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aal" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plating,/area/engine/engineering) -"aam" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aan" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aao" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aap" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaq" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aar" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/tank/internals/plasma,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aas" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aat" = (/obj/structure/closet/wardrobe/green,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aau" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/sign/poster/official/hydro_ad{pixel_y = 32},/turf/open/floor/plasteel,/area/hydroponics) -"aav" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aaw" = (/obj/structure/sign/poster/official/hydro_ad,/turf/closed/wall,/area/hydroponics) -"aax" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"aay" = (/obj/structure/sign/poster/official/medical_green_cross,/turf/closed/wall,/area/medical/medbay/central) -"aaz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"aaA" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"aaB" = (/obj/structure/closet/masks,/obj/item/reagent_containers/food/snacks/deadmouse,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"aaC" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"aaD" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/mask/balaclava,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaE" = (/obj/machinery/light/small,/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaF" = (/turf/closed/wall,/area/crew_quarters/fitness/pool) -"aaG" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaI" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aaK" = (/obj/machinery/light{dir = 1; light_color = "#706891"},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaL" = (/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"aaM" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 8},/area/crew_quarters/fitness/pool) -"aaN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaO" = (/turf/open/pool,/area/crew_quarters/fitness/pool) -"aaP" = (/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"aaQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaR" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Pool"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster/official/walk{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaW" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"aaX" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaY" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aaZ" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"aba" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abb" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner,/area/crew_quarters/fitness/pool) -"abd" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abe" = (/obj/machinery/vending/kink,/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abf" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/science) -"abg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abj" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"abk" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abl" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"abn" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"abo" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"abp" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abq" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"abr" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/pool) -"abs" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/pool) -"abt" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"abu" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"abw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"abx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/athletic_mixed,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"aby" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space/nearstation) -"abz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abA" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness/pool) -"abB" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"abC" = (/obj/machinery/light,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"abD" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) -"abE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; name = "Pool APC"; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"abG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"abH" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abI" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"abJ" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat External Fore"; dir = 1; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"abK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abN" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space) -"abO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"abP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abS" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abT" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"abV" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abW" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abX" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abY" = (/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abZ" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/effect/landmark/xmastree,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"acc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acd" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"ace" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acf" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber North"; dir = 1; network = list("minisat")},/obj/machinery/light,/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"ach" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"aci" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) -"acj" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"ack" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Center"; network = list("minisat")},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acl" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acm" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Port"; dir = 8; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"acn" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber West"; dir = 4; network = list("minisat")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"aco" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acq" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acr" = (/obj/machinery/ai_slipper{uses = 8},/obj/machinery/power/terminal{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acs" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"act" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acu" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber East"; dir = 8; network = list("minisat")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acv" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Starboard"; dir = 4; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"acw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acy" = (/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -9},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_y = -31},/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -9},/obj/machinery/newscaster/security_unit{pixel_x = -28; pixel_y = -28},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 28; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acB" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acC" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acD" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber South"; network = list("minisat")},/obj/machinery/light{dir = 1},/obj/machinery/flasher{id = "AI"; pixel_y = 20},/obj/machinery/status_display/ai{pixel_y = 37},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acE" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/AIsatextAS) -"acG" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acI" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) -"acJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acM" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space/nearstation) -"acO" = (/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) -"acP" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"acQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"acR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acU" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"acV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"acW" = (/obj/machinery/computer/station_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acX" = (/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acY" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"ada" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"adb" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"adc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"ade" = (/obj/structure/table/glass,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/mmi,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adf" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/rdconsole/robotics,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adg" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adi" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adk" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat_interior"; dir = 8; name = "MiniSat Antechamber APC"; pixel_x = -24},/obj/machinery/recharger,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adl" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adn" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"ado" = (/obj/structure/table,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/paper_bin,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adq" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"ads" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adt" = (/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adv" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adx" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"ady" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Observation"; dir = 1; network = list("minisat")},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adB" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adD" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste Out"},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adH" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"adM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Observation"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"adN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adQ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adR" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"adS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adV" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"adW" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"adX" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"adY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"adZ" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) -"aea" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) -"aeb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aec" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aed" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) -"aee" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aef" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aeg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) -"aeh" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"aei" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aej" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) -"aek" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"ael" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aem" = (/turf/closed/wall/r_wall,/area/security/prison) -"aen" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison) -"aeo" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/potato,/obj/item/seeds/carrot,/obj/item/seeds/corn,/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) -"aep" = (/obj/item/cultivator,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeq" = (/obj/machinery/hydroponics/constructable,/obj/structure/cable{icon_state = "4-8"},/obj/item/seeds/glowshroom,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/camera{c_tag = "Permabrig Central"; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison) -"aer" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aes" = (/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) -"aet" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeu" = (/obj/machinery/biogenerator,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"aev" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aew" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aex" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"aey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aez" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"aeA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aeC" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeD" = (/obj/item/plant_analyzer,/obj/item/shovel/spade,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeE" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/sunflower,/obj/item/seeds/poppy,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeF" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeG" = (/obj/item/storage/crayons,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"aeO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aeP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"aeQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeS" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aeT" = (/obj/structure/bookcase,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeU" = (/turf/open/floor/plasteel/dark,/area/security/prison) -"aeV" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeW" = (/obj/structure/sink{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aeX" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aeY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; dir = 8; name = "MiniSat Port Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aeZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afc" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afe" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aff" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afg" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; network = list("minisat")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afm" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; dir = 4; name = "MiniSat Starboard Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afn" = (/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/security/prison) -"afo" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/security/prison) -"afp" = (/obj/item/storage/dice,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) -"afq" = (/obj/structure/table,/obj/item/instrument/harmonica,/turf/open/floor/plasteel/dark,/area/security/prison) -"afr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aft" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afu" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afv" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afw" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afx" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afy" = (/obj/effect/landmark/start/cyborg,/obj/item/beacon,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afA" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afB" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high,/obj/machinery/light/small{dir = 4},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afC" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"afD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/prison) -"afE" = (/obj/item/toy/cards/deck,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) -"afF" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/prison) -"afG" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"afH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"afI" = (/obj/machinery/computer/arcade{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"afJ" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/nearstation) -"afK" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afL" = (/obj/structure/table,/obj/item/wrench,/obj/item/tank/internals/emergency_oxygen,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afM" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afN" = (/obj/machinery/teleport/hub,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"afO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afR" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"afS" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afT" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool{layer = 5},/obj/item/extinguisher{layer = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afU" = (/turf/closed/wall,/area/security/execution/transfer) -"afX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"afZ" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/dark,/area/security/prison) -"aga" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) -"agb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) -"agc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/door/window/westleft{base_state = "right"; icon_state = "right"; name = "Unisex Showers"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agd" = (/obj/machinery/shower{dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/security/prison) -"age" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agf" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agg" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agh" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agi" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/security/execution/transfer) -"agj" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) -"agl" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/razor,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agn" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/dark,/area/security/prison) -"ago" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agp" = (/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison) -"agq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agr" = (/obj/machinery/computer/teleporter{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"ags" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agu" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) -"agw" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agx" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agy" = (/turf/closed/wall,/area/security/prison) -"agz" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/security/prison) -"agA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/security/prison) -"agB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/security/prison) -"agC" = (/obj/machinery/door/airlock{name = "Unisex Restroom"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agD" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agF" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/security/execution/transfer) -"agH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agI" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 2"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/slimeplushie,/turf/open/floor/plasteel,/area/security/prison) -"agK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) -"agL" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 1"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/lizardplushie,/turf/open/floor/plasteel,/area/security/prison) -"agM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/prison) -"agN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) -"agO" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agP" = (/turf/closed/wall,/area/security/main) -"agQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) -"agR" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agS" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"agT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"agV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agW" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"agY" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel,/area/security/prison) -"agZ" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"aha" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"ahb" = (/obj/structure/toilet/secret/prison{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison) -"ahd" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"ahi" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"ahj" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/clothing/suit/straight_jacket,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahk" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 6; pixel_y = 27},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = -6; pixel_y = 32; req_access_txt = "7"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/ignition{id = "secigniter"; pixel_x = 6; pixel_y = 36},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahm" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"ahn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall,/area/security/prison) -"aho" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/prison) -"ahp" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"ahq" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/maintenance/fore) -"ahs" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube,/turf/open/space/basic,/area/space/nearstation) -"aht" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ahu" = (/obj/structure/table/glass,/obj/item/flashlight/lamp,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) -"ahx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahz" = (/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{dir = 9; pixel_x = 24; pixel_y = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/execution/transfer) -"ahB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahC" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) -"ahD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"ahF" = (/obj/machinery/camera{c_tag = "Brig Prison Hallway"; network = list("ss13","prison")},/obj/machinery/computer/security/telescreen/prison{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) -"ahH" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"ahJ" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Prison Wing APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/prison) -"ahK" = (/obj/structure/table,/obj/item/melee/chainofcommand,/obj/item/melee/baton,/turf/open/floor/plasteel,/area/security/prison) -"ahL" = (/turf/closed/wall/r_wall,/area/security/armory) -"ahM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahQ" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahR" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube/crossing,/turf/open/space/basic,/area/space/nearstation) -"ahS" = (/obj/structure/table/optable,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahT" = (/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) -"ahV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Prisoner Transfer Centre"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"aia" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"aib" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"aic" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"aid" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aie" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aif" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aig" = (/turf/open/floor/plasteel,/area/security/prison) -"aih" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/restraints/handcuffs,/obj/item/razor,/turf/open/floor/plasteel,/area/security/prison) -"aii" = (/obj/structure/table,/obj/item/storage/box/chemimp{pixel_x = 6},/obj/item/storage/box/trackimp{pixel_x = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"aij" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/item/poster/random_contraband,/obj/item/clothing/suit/armor/navyblue/russian,/obj/item/grenade/plastic/c4,/turf/open/floor/plasteel/dark,/area/security/armory) -"aik" = (/obj/structure/closet/secure_closet/lethalshots,/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"},/turf/open/floor/plasteel/dark,/area/security/armory) -"ail" = (/obj/vehicle/ridden/secway,/turf/open/floor/plasteel/dark,/area/security/armory) -"aim" = (/obj/item/grenade/barrier{pixel_x = 4},/obj/item/grenade/barrier,/obj/item/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/armory) -"ain" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aio" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aip" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aiq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"air" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ais" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ait" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiu" = (/turf/closed/wall,/area/maintenance/department/security/brig) -"aiv" = (/obj/structure/table/glass,/obj/item/storage/backpack/duffelbag/sec/surgery{pixel_y = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"aiw" = (/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) -"aix" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiA" = (/turf/closed/wall/r_wall,/area/security/execution/transfer) -"aiB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"aiG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison) -"aiH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aiJ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiK" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/electropack,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiL" = (/obj/structure/table,/obj/item/storage/box/flashbangs{pixel_x = 6; pixel_y = 3},/obj/item/storage/box/flashbangs{pixel_x = -3; pixel_y = 3},/obj/item/storage/lockbox/loyalty{layer = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiM" = (/turf/open/floor/plasteel/dark,/area/security/armory) -"aiN" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiO" = (/obj/structure/table,/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/machinery/power/apc/highcap/five_k{dir = 4; name = "Armory APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) -"aiQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) -"aiR" = (/turf/closed/wall,/area/crew_quarters/heads/hos) -"aiS" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) -"aiT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aiU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/barsign,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aiV" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiW" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiX" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiY" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiZ" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aja" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ajb" = (/obj/structure/closet/secure_closet/injection,/obj/machinery/power/apc{dir = 4; name = "Prisoner Transfer Centre"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ajc" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel/dark,/area/security/prison) -"ajd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/prison) -"aje" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) -"ajf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/prison) -"ajg" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajh" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/shield/riot,/obj/item/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"aji" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajj" = (/obj/structure/rack,/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajk" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) -"ajl" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajm" = (/obj/structure/table,/obj/item/storage/fancy/donut_box{pixel_y = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajn" = (/obj/structure/table,/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/item/storage/box/handcuffs{pixel_x = 1; pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajo" = (/obj/machinery/vending/coffee,/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajp" = (/obj/machinery/photocopier,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajq" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) -"ajr" = (/obj/item/reagent_containers/food/snacks/donut/chaos,/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ajs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"ajt" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 4; pixel_y = 7},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aju" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"ajv" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajx" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajy" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajA" = (/obj/docking_port/stationary{dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_ne"; name = "northeast of station"; width = 23},/turf/open/space,/area/space/nearstation) -"ajB" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajD" = (/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajE" = (/obj/structure/bed,/obj/item/bedsheet,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajF" = (/obj/machinery/atmospherics/components/unary/tank/oxygen,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajG" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajH" = (/turf/closed/wall,/area/security/processing/cremation) -"ajI" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Crematorium"; req_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"ajJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajK" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajL" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajM" = (/turf/closed/wall,/area/security/brig) -"ajN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"ajO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/sign/poster/official/safety_report{pixel_y = 32},/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/brig) -"ajP" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/armory) -"ajR" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/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/dark,/area/security/armory) -"ajS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/armory) -"ajT" = (/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajU" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ajV" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"ajW" = (/obj/structure/chair/stool,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"ajX" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajY" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajZ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aka" = (/obj/machinery/suit_storage_unit/hos,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; name = "\improper 'Diploma' frame"; pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akc" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#706891"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akd" = (/obj/structure/table/wood,/obj/item/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/deputy,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"ake" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/button/door{id = "hos_spess_shutters"; name = "Space shutters"; pixel_x = 24; req_access_txt = "1"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akf" = (/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"akg" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akh" = (/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akj" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ako" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akp" = (/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akr" = (/obj/machinery/washing_machine,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aks" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akt" = (/obj/structure/bed,/obj/item/bedsheet,/obj/machinery/button/door{id = "mainthideout"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aku" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; node1_concentration = 0.2; node2_concentration = 0.8; on = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akv" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akw" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/machinery/meter,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akx" = (/obj/structure/bodycontainer/crematorium,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"aky" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"akz" = (/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "Crematorium APC"; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"akA" = (/turf/closed/wall/r_wall,/area/security/brig) -"akB" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"akC" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/regular,/obj/structure/table/glass,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"akD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"akE" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip,/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/white,/area/security/brig) -"akF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"akG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"akI" = (/obj/machinery/door/airlock/security{name = "Evidence Room"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/brig) -"akJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"akK" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera{c_tag = "Brig Evidence Room"; dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"akL" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/item/gun/energy/e_gun/advtaser,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akN" = (/obj/effect/landmark/event_spawn,/obj/structure/rack,/obj/item/key/security,/turf/open/floor/plasteel/dark,/area/security/armory) -"akO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akP" = (/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"akQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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/main) -"akT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"akU" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akV" = (/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akW" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ala" = (/obj/structure/transit_tube/curved{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"alb" = (/obj/structure/lattice/catwalk,/obj/structure/showcase/cyborg/old{pixel_y = 20},/turf/open/space,/area/space/nearstation) -"alc" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigars,/obj/item/stack/spacecash/c20,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ale" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alf" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alg" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alh" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ali" = (/obj/machinery/door/airlock/abandoned{id_tag = "mainthideout"; name = "Hideout"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"all" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"aln" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Brig Crematorium"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) -"alq" = (/obj/item/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/reagent_containers/syringe{name = "steel point"},/obj/item/reagent_containers/glass/bottle/charcoal,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"alr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"als" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) -"alt" = (/obj/machinery/door/window/westleft{dir = 4; name = "Brig Infirmary"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"alu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"alw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"aly" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"alz" = (/obj/structure/closet{name = "Evidence Closet"},/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,/area/security/brig) -"alA" = (/obj/machinery/flasher/portable,/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},/turf/open/floor/plasteel/dark,/area/security/armory) -"alB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{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/main) -"alC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/pen,/obj/item/folder/red{layer = 2.9; pixel_x = 8},/turf/open/floor/plasteel,/area/security/main) -"alD" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel,/area/security/main) -"alE" = (/turf/open/floor/plasteel,/area/security/main) -"alF" = (/obj/machinery/computer/security,/turf/open/floor/plasteel,/area/security/main) -"alG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alH" = (/turf/open/floor/plasteel/dark,/area/security/main) -"alI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"alJ" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alK" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alL" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alM" = (/obj/machinery/computer/secure_data{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"alO" = (/obj/structure/transit_tube/diagonal,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"alP" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"alQ" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"alR" = (/obj/effect/landmark/blobstart,/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"alS" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"alT" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Supply to Security"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alX" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alZ" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/security/brig) -"ama" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) -"amc" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"amd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ame" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amf" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{dir = 4; name = "Brig APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amg" = (/turf/closed/wall/r_wall,/area/security/warden) -"amh" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) -"ami" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/security/warden) -"amj" = (/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/security/warden) -"amk" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/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},/turf/open/floor/plasteel/dark,/area/security/warden) -"aml" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"amm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Office"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amo" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amp" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"amq" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amr" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ams" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/main) -"amt" = (/obj/machinery/door/airlock/command/glass{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"amu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/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/dark,/area/crew_quarters/heads/hos) -"amv" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amx" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amy" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amz" = (/obj/machinery/computer/security/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amA" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amB" = (/obj/structure/transit_tube/crossing/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amC" = (/obj/structure/transit_tube/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amD" = (/obj/structure/transit_tube/curved/flipped{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amF" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) -"amG" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/crew_quarters/dorms) -"amH" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"amI" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_one_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"amJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/security/processing/cremation) -"amK" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"amL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) -"amM" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amO" = (/obj/structure/closet/crate/freezer,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/item/reagent_containers/blood/OMinus,/obj/item/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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/security/brig) -"amP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"amQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amS" = (/obj/structure/closet/secure_closet/warden,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amT" = (/obj/machinery/computer/prisoner/management,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amU" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Brig Control Room"},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amV" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amX" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amZ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"anb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"anc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/main) -"and" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) -"ane" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) -"anf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ang" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ani" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"anj" = (/obj/structure/table/wood,/obj/item/phone,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ank" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"anl" = (/obj/structure/transit_tube/diagonal,/turf/open/space/basic,/area/space/nearstation) -"anm" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Pete's Speakeasy"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"anq" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ans" = (/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ant" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/security/processing/cremation) -"anw" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"anx" = (/obj/machinery/door/airlock/maintenance{name = "Brig Infirmary Maintenance"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"any" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"anz" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"anA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"anB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) -"anC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anJ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anK" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"anL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"anM" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"anN" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"anO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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,/area/security/main) -"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/security/main) -"anQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"anR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/keycard_auth{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anU" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 1},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anV" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{name = "Head of Security's Office APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"anX" = (/turf/closed/wall/r_wall,/area/teleporter) -"anY" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"aob" = (/obj/structure/closet/emcloset,/obj/item/camera,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aod" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aof" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aog" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aok" = (/obj/machinery/computer/security/labor,/turf/open/floor/plasteel/dark,/area/security/brig) -"aol" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/dark,/area/security/brig) -"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aon" = (/turf/open/floor/plasteel,/area/security/brig) -"aoo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"aop" = (/obj/structure/bed/dogbed,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/mob/living/simple_animal/pet/dog/pug{name = "McGriff"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aor" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aos" = (/obj/machinery/door/airlock/security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aot" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aou" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) -"aov" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"aow" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aox" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/turf/open/floor/plasteel,/area/security/main) -"aoy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aoz" = (/turf/closed/wall,/area/maintenance/fore) -"aoB" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/gateway) -"aoH" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/solar/port) -"aoI" = (/obj/structure/lattice,/turf/open/space,/area/solar/port) -"aoJ" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/solar/port) -"aoK" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aoL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Brig Gulag Teleporter"; dir = 4},/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/storage/box/prisoner,/obj/item/razor{pixel_x = -6},/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) -"aoP" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aoQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"aoR" = (/obj/item/book/manual/wiki/security_space_law,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/structure/table/reinforced,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoS" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Secure Gate"; name = "Entrance Lockdown"; pixel_x = 5; pixel_y = -2},/obj/machinery/button/door{id = "Prison Gate"; name = "Permabrig Lockdown"; pixel_x = 5; pixel_y = 8; req_access_txt = "2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoT" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/crew{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoV" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoX" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/item/laser_pointer/red,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoY" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light_switch{pixel_y = -22},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoZ" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"apa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) -"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apc" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/main) -"apd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ape" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/sign/warning/vacuum/external{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/main) -"apg" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Security Access"; req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fore) -"aph" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"api" = (/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"apj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"apk" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) -"apl" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"apm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"apn" = (/turf/open/floor/plating,/area/maintenance/fore) -"apo" = (/obj/structure/transit_tube/diagonal/crossing,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"app" = (/obj/machinery/camera{c_tag = "Bridge Starboard Exterior"; dir = 1},/turf/open/space,/area/space/nearstation) -"apr" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/dark,/area/gateway) -"apt" = (/obj/structure/chair{dir = 4},/obj/item/clothing/mask/cigarette,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"apu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"apv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"apw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/camera_film,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"apz" = (/obj/item/target/clown,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"apB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"apE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"apF" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) -"apG" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/dark,/area/security/brig) -"apH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"apI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) -"apJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"apK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/paper_bin{layer = 2.9},/obj/item/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"apL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"apM" = (/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"apO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"apP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access_txt = "1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"apQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/fore) -"apR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore) -"apS" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"apT" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"apU" = (/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/gateway) -"apV" = (/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/gateway) -"apW" = (/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/gateway) -"apX" = (/turf/closed/wall,/area/crew_quarters/dorms) -"aqa" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/port) -"aqc" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqe" = (/obj/item/target/alien,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqh" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqi" = (/obj/structure/closet,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aqn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqq" = (/obj/machinery/camera{c_tag = "Brig Cells"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqv" = (/obj/machinery/camera{c_tag = "Brig Entrance"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqz" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqA" = (/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/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/brig) -"aqB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/brig) -"aqC" = (/turf/open/floor/plasteel/dark,/area/security/brig) -"aqD" = (/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/brig) -"aqE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) -"aqF" = (/turf/closed/wall/r_wall,/area/maintenance/fore) -"aqG" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"aqH" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/bridge) -"aqI" = (/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 = "bridgespace"; name = "bridge external shutters"},/turf/open/floor/plating,/area/bridge) -"aqJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/bridge) -"aqK" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/bridge) -"aqL" = (/obj/machinery/computer/bank_machine,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aqM" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqO" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqP" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aqQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/gateway) -"aqR" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"aqS" = (/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/gateway) -"aqT" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqU" = (/obj/machinery/washing_machine,/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqV" = (/obj/machinery/washing_machine,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqY" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_station"; name = "Station"; roundstart_template = /datum/map_template/shuttle/escape_pod/large; width = 5},/turf/open/space/basic,/area/space) -"ara" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) -"arc" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ard" = (/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ari" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_y = -25; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"ark" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"arl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"arm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"arn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"aro" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arr" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"ars" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aru" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arw" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arx" = (/obj/item/flashlight/lamp,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) -"ary" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"arz" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8; network = list("interrogation")},/turf/open/floor/plasteel/dark,/area/security/brig) -"arA" = (/turf/closed/wall/r_wall,/area/bridge) -"arB" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Bridge MiniSat Access"; dir = 4},/turf/open/floor/plating,/area/bridge) -"arC" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/plating,/area/bridge) -"arD" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/bridge) -"arE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/floor/plating,/area/bridge) -"arF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"arG" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/bridge) -"arH" = (/obj/machinery/modular_computer/console/preset/command,/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/bridge) -"arI" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arL" = (/obj/machinery/computer/card,/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arM" = (/obj/machinery/computer/communications,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arN" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arO" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/recharger,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arP" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arQ" = (/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/dark,/area/bridge) -"arR" = (/obj/machinery/computer/prisoner/management,/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/dark,/area/bridge) -"arS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"arU" = (/obj/machinery/nuclearbomb/selfdestruct,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"arW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/ore_silo,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arX" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4},/obj/structure/table,/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway) -"arY" = (/obj/machinery/computer/gateway_control,/turf/open/floor/plasteel,/area/gateway) -"arZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"asa" = (/obj/structure/table,/obj/item/radio/off{pixel_y = 6},/obj/item/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/radio/off,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/off,/turf/open/floor/plasteel,/area/gateway) -"asb" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"asc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"asd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ase" = (/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"asf" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"asg" = (/obj/machinery/newscaster{pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/bedsheetbin/color,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ash" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/dorms) -"asi" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/dorms) -"asj" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/crew_quarters/dorms) -"aso" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"asr" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"asu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"asw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) -"asx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"asy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/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,/area/security/brig) -"asG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"asH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asI" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asJ" = (/obj/item/folder/red,/obj/item/taperecorder,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) -"asK" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) -"asM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/bridge) -"asN" = (/turf/open/floor/plasteel,/area/bridge) -"asO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/bridge) -"asP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/bridge) -"asQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 10},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"asR" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"asS" = (/turf/open/floor/plasteel/dark,/area/bridge) -"asT" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"asU" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/bridge) -"asV" = (/obj/structure/closet/crate/goldcrate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"asW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asZ" = (/obj/structure/closet/crate/silvercrate,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"ata" = (/obj/machinery/light_switch{pixel_x = -20},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"atb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"atc" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"atd" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/gateway) -"atf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) -"atg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ath" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Laundry Room"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ati" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"atj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"atk" = (/turf/open/floor/plating,/area/crew_quarters/dorms) -"atl" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/crew_quarters/dorms) -"atn" = (/turf/closed/wall,/area/crew_quarters/fitness/recreation) -"atp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) -"atq" = (/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) -"atv" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/brig) -"atw" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atx" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) -"aty" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"atz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"atA" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 2"; name = "Cell 2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"atC" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 3"; name = "Cell 3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) -"atE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atF" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"atG" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"atH" = (/obj/machinery/door/airlock/security/glass{name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"atI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"atJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) -"atK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/fore) -"atL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) -"atM" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"atN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) -"atO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/bridge) -"atP" = (/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/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/dark,/area/bridge) -"atQ" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/purple{dir = 1},/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/dark,/area/bridge) -"atR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atS" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atT" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atU" = (/obj/item/beacon,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"atW" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atX" = (/obj/machinery/computer/shuttle/labor{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atY" = (/turf/closed/wall,/area/bridge) -"atZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"aua" = (/obj/structure/closet/secure_closet/freezer/money,/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/clothing/head/bearpelt,/obj/item/skub,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aub" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aud" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aue" = (/obj/structure/safe,/obj/item/bikehorn/golden,/obj/item/ammo_box/a357,/obj/item/tank/internals/plasma/full,/obj/item/disk/nuclear/fake,/obj/item/stack/ore/diamond,/obj/item/gun/energy/disabler,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/open/floor/plasteel,/area/gateway) -"aug" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/internals,/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/turf/open/floor/plasteel,/area/gateway) -"auh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/gateway) -"aui" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/gateway) -"auj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/dorms) -"auk" = (/obj/machinery/door/airlock{name = "Laundry Room"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aul" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/structure/sign/warning/pods{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aum" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) -"aur" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) -"aus" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aut" = (/obj/item/clothing/head/collectable/police,/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/department/security/brig) -"auu" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel,/area/maintenance/department/security/brig) -"aux" = (/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"auz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"auA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) -"auB" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"auC" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"auD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/turf/open/floor/plasteel/dark,/area/security/brig) -"auE" = (/obj/machinery/computer/secure_data,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 36; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 24; req_access_txt = "63"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = 6; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) -"auF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"auG" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/dark,/area/security/brig) -"auH" = (/turf/closed/wall,/area/crew_quarters/heads/captain) -"auI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads/captain) -"auJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"auK" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) -"auL" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) -"auM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/bridge) -"auN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auO" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"auQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auR" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/bridge) -"auS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"auT" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"auU" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/bridge) -"auV" = (/turf/open/floor/plating,/area/bridge) -"auW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"auX" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"auY" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auZ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"ava" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"avb" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"avc" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/gateway) -"avd" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm3Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"ave" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm3Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avf" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"avg" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avh" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avi" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Dormitories Fore"},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avk" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avl" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/cryopod{pixel_y = 30},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avm" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"avn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"avp" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) -"avq" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) -"avr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock"; dir = 8},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) -"avs" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/item/bedsheet/blue,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avu" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/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/security/brig) -"avv" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/obj/item/bedsheet/green,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avw" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avx" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/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/security/brig) -"avy" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/obj/item/bedsheet/orange,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avA" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avC" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel/dark,/area/security/brig) -"avD" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"avE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/security/brig) -"avF" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"avG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/captain) -"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/curtain,/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avI" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avK" = (/obj/structure/toilet/secret/low_loot{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avL" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fore) -"avM" = (/obj/machinery/door/airlock/command{name = "Balcony"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"avN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"avO" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Bridge MiniSat Access Foyer"; dir = 1},/obj/machinery/light/small,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"avP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"avQ" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"avR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/bridge) -"avU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"avV" = (/obj/structure/table/glass,/obj/item/storage/box/ids{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/PDAs,/turf/open/floor/plasteel/dark,/area/bridge) -"avW" = (/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/dark,/area/bridge) -"avX" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/dark,/area/bridge) -"avY" = (/obj/structure/table/glass,/obj/item/aicard,/turf/open/floor/plasteel/dark,/area/bridge) -"avZ" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/item/laser_pointer/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"awa" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awb" = (/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"awd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) -"awe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) -"awf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awh" = (/obj/machinery/camera{c_tag = "Vault Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awk" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awm" = (/obj/machinery/light{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awn" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/dorms) -"awo" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) -"awp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) -"awq" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"awr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aws" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aww" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"awB" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"awC" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 1; name = "Fitness Room APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"awD" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"awE" = (/obj/item/storage/briefcase,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"awH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) -"awI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awJ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"awL" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"awM" = (/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awN" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"awO" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/item/radio,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awP" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/table/reinforced,/obj/item/folder/red{layer = 2.9},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awQ" = (/obj/structure/table/reinforced,/obj/item/pen,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awS" = (/obj/machinery/door/airlock{name = "Private Restroom"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"awT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Captain's Office Access"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"awU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awY" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/bridge) -"axa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axb" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"axd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"axe" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/rdconsole{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/bridge) -"axh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) -"axi" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) -"axj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/central) -"axk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) -"axl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/central) -"axm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) -"axn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/central) -"axo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"axp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axq" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"axv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"axw" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) -"axC" = (/turf/closed/wall,/area/maintenance/solars/port) -"axE" = (/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axF" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axG" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axH" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axI" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axJ" = (/obj/structure/sign/departments/security{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axL" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axN" = (/obj/structure/dresser,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axP" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"},/obj/item/clothing/suit/armor/riot/knight/blue,/obj/item/clothing/head/helmet/knight/blue,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axQ" = (/obj/machinery/suit_storage_unit/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"axS" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/item/kirbyplants/random,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axT" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 30},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axU" = (/obj/machinery/computer/card,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axV" = (/obj/machinery/computer/communications,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axW" = (/obj/structure/filingcabinet/employment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axX" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"axY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"ayb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"ayc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"ayd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aye" = (/obj/machinery/door/airlock/command{name = "External Access"; req_one_access_txt = "19; 65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"ayf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"ayg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/bridge) -"ayh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) -"ayi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm2Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"ayj" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm2Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayl" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ayn" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayo" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayq" = (/obj/structure/table/wood,/obj/item/storage/backpack,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayr" = (/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ayt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayw" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayx" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayy" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port) -"ayz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayA" = (/obj/machinery/power/solar_control{dir = 4; id = "portsolar"; name = "Port Solar Control"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayC" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Port Solar APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ayE" = (/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_x = -25; req_access_txt = "2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayF" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS2"; location = "BrigP"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayN" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigP"; location = "BrigS1"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayO" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayQ" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayR" = (/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayS" = (/obj/structure/bed,/obj/item/bedsheet/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayT" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"ayX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"ayY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"ayZ" = (/obj/machinery/door/window{dir = 8; name = "Captain's Desk"; req_access_txt = "20"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aza" = (/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azb" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/captain,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azc" = (/obj/item/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aze" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/bridge) -"azf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azg" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azh" = (/obj/machinery/light{light_color = "#e8eaff"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"azk" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai_upload"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Central"; dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"azo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 4; name = "Bridge APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azp" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Bridge External Access"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/bridge) -"azq" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"azr" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azs" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azu" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"azv" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azx" = (/obj/structure/table/wood,/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azy" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"azB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azE" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azF" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Holodeck"; dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"azH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/port) -"azI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/port) -"azJ" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/port) -"azK" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"azL" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"azN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azP" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azS" = (/obj/machinery/door/airlock/engineering{name = "Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azY" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"azZ" = (/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aAa" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aAb" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAd" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAe" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAf" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Port"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Tool"; location = "BrigS2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAn" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Fore Primary Hallway Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAo" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAp" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAq" = (/obj/structure/table/wood,/obj/item/storage/box/matches,/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAr" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAs" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/card/id/captains_spare,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aAu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAv" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAw" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAx" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAy" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/light{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aAA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aAB" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aAC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aAD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) -"aAE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAM" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAN" = (/turf/closed/wall,/area/hallway/primary/central) -"aAO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aAP" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/comfy{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aAQ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aAS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/port) -"aAW" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/port) -"aAX" = (/obj/structure/chair/stool,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) -"aAY" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) -"aBa" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"aBc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aBd" = (/turf/closed/wall,/area/security/detectives_office) -"aBe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "datboidetective"; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office) -"aBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/detectives_office) -"aBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aBh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aBi" = (/turf/closed/wall,/area/storage/primary) -"aBj" = (/turf/closed/wall/r_wall,/area/storage/primary) -"aBk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/vending/wardrobe/cap_wardrobe,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBl" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBm" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBn" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBp" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBq" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aBr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"aBs" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBt" = (/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBu" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBx" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; dir = 1; name = "Upload APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBy" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"aBz" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBA" = (/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/obj/machinery/computer/security/mining,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBB" = (/obj/machinery/computer/cargo/request,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBC" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBD" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Head of Personnel's Office"},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBE" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBF" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBG" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBH" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Central Hall APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBK" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/crowbar,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm1Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"aBM" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm1Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBN" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBO" = (/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBT" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBU" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBW" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBX" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/obj/item/storage/backpack,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aBZ" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aCa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) -"aCc" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCd" = (/obj/machinery/vending/cola/random,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCe" = (/obj/structure/filingcabinet/employment,/turf/open/floor/wood,/area/lawoffice) -"aCf" = (/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/lawoffice) -"aCg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCi" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 12},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Detective's office"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCk" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCm" = (/obj/item/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCn" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "datboidetective"; name = "Privacy Shutters"; pixel_x = 2; pixel_y = 26},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 27},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCo" = (/obj/structure/closet/secure_closet/detective,/obj/item/hand_labeler,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aCq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aCr" = (/obj/machinery/vending/assist,/obj/structure/sign/poster/official/pda_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aCs" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCt" = (/obj/structure/table,/obj/item/wrench,/obj/item/analyzer,/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCu" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCv" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/item/assembly/voice,/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCw" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool,/obj/machinery/airalarm{pixel_y = 22},/obj/item/flashlight,/obj/item/electronics/airlock,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCx" = (/obj/structure/sign/poster/official/obey{pixel_y = 32},/obj/machinery/disposal/deliveryChute{name = "Crate Disposal Chute"; pixel_y = 6},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Crate Disposal Chute"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCy" = (/obj/structure/displaycase/captain,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCz" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"aCE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aCF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aCG" = (/obj/structure/table,/obj/item/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload Port"; dir = 4; network = list("aiupload")},/obj/item/aiModule/reset,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCK" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCM" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/machinery/camera/motion{c_tag = "AI Upload Starboard"; dir = 8; network = list("aiupload")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aCO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aCP" = (/obj/structure/table/wood,/obj/item/pen{layer = 4},/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 6},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCR" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCS" = (/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCT" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCY" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aDa" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aDb" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDc" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDe" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aDf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDh" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Dormitories Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/dorms) -"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white/side,/area/crew_quarters/dorms) -"aDk" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 8},/area/crew_quarters/dorms) -"aDl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aDm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aDo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDq" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDr" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aDw" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "Tool Storage APC"; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aDx" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aDy" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary) -"aDz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/primary) -"aDA" = (/turf/open/floor/plasteel,/area/storage/primary) -"aDB" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aDC" = (/obj/structure/table/wood,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDD" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDE" = (/obj/structure/chair/comfy/brown,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDF" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDG" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDI" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aDK" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aDL" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aDM" = (/obj/machinery/holopad,/obj/machinery/camera/motion{c_tag = "AI Upload Center"; dir = 1; network = list("aiupload")},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aDN" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aDP" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"aDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDY" = (/obj/machinery/power/apc{dir = 4; name = "Head of Personnel APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDZ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEb" = (/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aEd" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"aEe" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEf" = (/obj/structure/urinal{pixel_y = 32},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEg" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEh" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEi" = (/obj/effect/landmark/blobstart,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) -"aEj" = (/turf/closed/wall,/area/maintenance/department/cargo) -"aEk" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aEl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aEm" = (/obj/structure/table/wood,/obj/item/flashlight/lamp{pixel_x = 3; pixel_y = 6},/turf/open/floor/carpet,/area/security/detectives_office) -"aEn" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/security/detectives_office) -"aEo" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter,/obj/item/clothing/glasses/hud/security/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) -"aEp" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) -"aEq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = -1; pixel_y = 9},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 7; pixel_y = 2},/turf/open/floor/carpet,/area/security/detectives_office) -"aEr" = (/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aEs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aEt" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/light{dir = 8},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aEu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/primary) -"aEv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/primary) -"aEw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aEx" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEy" = (/obj/structure/table/wood,/obj/item/hand_tele,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aEB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aEC" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Bridge Port Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aED" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEF" = (/obj/machinery/computer/upload/ai{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aEG" = (/obj/machinery/flasher{id = "AI"; pixel_y = -6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aEH" = (/obj/machinery/computer/upload/borg{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aEI" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/aiModule/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/protectStation,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEJ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Bridge Starboard Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aEK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"aEL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEM" = (/obj/item/kirbyplants{icon_state = "plant-24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEN" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEO" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aEP" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aEQ" = (/obj/structure/chair/office/dark,/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aER" = (/obj/structure/table/wood,/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aES" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Vault"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aET" = (/turf/closed/wall,/area/storage/emergency/starboard) -"aEU" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/item/storage/toolbox,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/storage/emergency/starboard) -"aEW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEZ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFb" = (/obj/machinery/light_switch{pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFc" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFe" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFg" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFi" = (/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFj" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat Entrance"; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"aFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/minor/bowler_or_that,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aFm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aFn" = (/turf/open/floor/carpet,/area/security/detectives_office) -"aFo" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/effect/landmark/start/detective,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aFp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/security/detectives_office) -"aFr" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aFs" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/electronics/apc,/obj/item/t_scanner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aFt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aFv" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aFw" = (/obj/structure/table/wood,/obj/item/camera,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aFx" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aFy" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aFz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aFA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/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) -"aFB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"aFC" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aFD" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/taperecorder,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aFE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aFF" = (/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Starboard Emergency Storage APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"aFG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFH" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFK" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFM" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFN" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFO" = (/obj/effect/decal/cleanable/vomit/old,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFP" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/food/condiment/rice,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aFV" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aFW" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aFX" = (/obj/machinery/computer/med_data{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aFY" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aGa" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGe" = (/obj/structure/rack,/obj/item/wirecutters,/obj/item/flashlight,/obj/item/gps,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGf" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGg" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/gloves/color/fyellow,/obj/item/assembly/timer,/obj/item/radio,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGh" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGi" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGj" = (/obj/structure/disposalpipe/junction/flip,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGk" = (/obj/machinery/vending/boozeomat/pubby_captain,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGm" = (/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/computer/arcade{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGn" = (/obj/item/kirbyplants/photosynthetic{layer = 3.1},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"aGo" = (/obj/structure/lattice,/obj/structure/sign/logo{pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGp" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign2"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGq" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign3"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGr" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign4"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGs" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign5"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGt" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGu" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGw" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGx" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGy" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGz" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aGB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aGC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGF" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGH" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGI" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGJ" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGK" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie{desc = "It has a distinctly eldritch taste to it."; name = "grandma's cookie"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGL" = (/obj/structure/chair/stool,/obj/item/clothing/suit/apron/chef,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGM" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGN" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGO" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGP" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGV" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGX" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) -"aGY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) -"aGZ" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) -"aHb" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aHc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"aHe" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"aHf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHg" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"aHh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHj" = (/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/hallway/primary/central) -"aHk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHl" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHn" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aHo" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHp" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHq" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHr" = (/obj/machinery/shower{dir = 4},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHs" = (/obj/structure/closet/crate,/obj/item/cultivator,/obj/item/shovel/spade,/obj/item/storage/bag/plants/portaseeder,/obj/item/seeds/wheat/rice,/obj/item/seeds/replicapod,/obj/item/seeds/carrot,/obj/item/seeds/tomato,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHt" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHu" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHz" = (/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aHC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIe" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aIi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIj" = (/obj/machinery/vending/cigarette,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/departments/restroom{pixel_x = 32},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) -"aIk" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aIl" = (/obj/structure/toilet/secret/low_loot{dir = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aIp" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aIq" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/lawyer,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aIr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/port) -"aIC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aIH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aIL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIN" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIO" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIT" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIX" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/observer_start,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIY" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJd" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Robo"; location = "HoP"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJh" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJi" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoP"; location = "Dorms"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/hallway/primary/central) -"aJn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJo" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/table,/obj/structure/bedsheetbin/towel,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJp" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aJr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"aJs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJw" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/chaplain,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJD" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge Fore"},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aJE" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aJF" = (/obj/structure/chair{dir = 8},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit/departure_lounge"; dir = 1; name = "Departure Lounge APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aJG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -40},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJM" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bathroom"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJT" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJW" = (/obj/machinery/camera{c_tag = "Central Primary Hallway EVA"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJX" = (/obj/structure/sign/directions/security{dir = 8; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = -40},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKe" = (/obj/machinery/camera{c_tag = "Dormitories Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKg" = (/obj/item/kirbyplants{icon_state = "plant-04"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/primary/central) -"aKh" = (/obj/machinery/light_switch{pixel_x = -25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKi" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKj" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Dormitory Cyborg Recharging Station"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/oil,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKo" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aKp" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKq" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKr" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/curator,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKz" = (/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKA" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKG" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKH" = (/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKJ" = (/turf/closed/wall,/area/storage/art) -"aKK" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/art) -"aKL" = (/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/storage/art) -"aKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) -"aKN" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) -"aKO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lunchroom"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/cafeteria/lunchroom) -"aKP" = (/turf/closed/wall,/area/crew_quarters/cafeteria/lunchroom) -"aKQ" = (/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"aKR" = (/obj/machinery/door/airlock{id_tag = "Potty1"; name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"aKT" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/bar) -"aKU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aKV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/central) -"aKY" = (/turf/closed/wall/r_wall,/area/storage/eva) -"aKZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/eva) -"aLa" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "EVA Storage Shutters"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/eva) -"aLb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/teleporter) -"aLd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command/glass{name = "Teleporter"; req_access_txt = "17"},/turf/open/floor/plasteel,/area/teleporter) -"aLe" = (/turf/closed/wall,/area/security/checkpoint/supply) -"aLf" = (/turf/closed/wall,/area/quartermaster/office) -"aLg" = (/turf/closed/wall,/area/quartermaster/storage) -"aLh" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLi" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLj" = (/obj/effect/spawner/lootdrop/grille_or_trash,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLk" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLl" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLm" = (/turf/closed/wall,/area/maintenance/disposal) -"aLn" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) -"aLo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) -"aLu" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aLv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aLw" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) -"aLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLz" = (/obj/machinery/photocopier,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLA" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/friedegg,/obj/item/kitchen/fork,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLB" = (/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLD" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/vending/cola,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLG" = (/obj/structure/urinal{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "Potty1"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 36; pixel_y = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLI" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aLL" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/button/door{id = "evashutter"; name = "EVA Shutters Control"; pixel_x = -24; req_access_txt = "18"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aLR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLU" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aLV" = (/turf/closed/wall,/area/storage/eva) -"aLW" = (/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/airalarm{pixel_y = 22},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/teleporter) -"aLX" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) -"aLY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/teleporter) -"aLZ" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) -"aMa" = (/obj/structure/closet/crate,/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutters Control"; pixel_x = 25; pixel_y = -5; req_access_txt = "17"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aMb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMd" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aMe" = (/obj/machinery/computer/security/mining,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Cargo Security Post"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aMf" = (/obj/machinery/computer/secure_data,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/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/checkpoint/supply) -"aMg" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/sorting) -"aMh" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMi" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/sorting) -"aMj" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMk" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMm" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMn" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/warehouse) -"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMr" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMt" = (/obj/structure/closet/cardboard,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Cargo Warehouse"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMu" = (/obj/item/cigbutt/cigarbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMv" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Cargo Warehouse APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMw" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMx" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMy" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMz" = (/obj/structure/grille/broken,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/crowbar,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMA" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aME" = (/obj/machinery/button/massdriver{id = "trash"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMF" = (/obj/machinery/conveyor_switch/oneway{id = "garbagestacked"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMG" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMH" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aML" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aMR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/storage/art) -"aMV" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/toolbox/artistic{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/artistic{pixel_x = -3},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMW" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMX" = (/obj/structure/table,/obj/item/airlock_painter,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Art Storage APC"; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMY" = (/obj/structure/chair{dir = 1},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aMZ" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Lunchroom"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNa" = (/obj/structure/cable,/obj/machinery/power/apc{name = "Cafeteria APC"; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNb" = (/obj/machinery/vending/sustenance{contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); desc = "A vending machine which vends food."; product_ads = "Sufficiently healthy."},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNc" = (/obj/structure/toilet/secret/low_loot{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNd" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNe" = (/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/item/soap/nanotrasen,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNf" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aNg" = (/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNh" = (/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aNi" = (/obj/structure/grille/broken,/obj/item/crowbar,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNm" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNp" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aNq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aNr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aNt" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aNu" = (/obj/structure/closet/crate,/obj/item/melee/flyswatter,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aNv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/teleporter) -"aNw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/teleporter) -"aNx" = (/turf/open/floor/plasteel,/area/teleporter) -"aNy" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aNz" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"aNA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aNC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) -"aND" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNE" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNH" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNJ" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNK" = (/obj/structure/table,/obj/item/destTagger,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNL" = (/obj/item/stack/wrapping_paper{pixel_x = 3; pixel_y = 4},/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNM" = (/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/hand_labeler,/obj/item/hand_labeler,/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNN" = (/obj/structure/closet/crate/freezer,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNO" = (/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNP" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aNT" = (/obj/machinery/mass_driver{dir = 1; id = "trash"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -28},/turf/open/floor/plating,/area/maintenance/disposal) -"aNU" = (/obj/machinery/mineral/stacking_machine{input_dir = 8; output_dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aNV" = (/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) -"aNX" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aNY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aOf" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOg" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOh" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOk" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aOm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/wrench,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aOs" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aOt" = (/obj/structure/table,/obj/item/instrument/glockenspiel{pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOu" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/machinery/light,/obj/machinery/camera{c_tag = "Art Storage"; dir = 1},/obj/item/hand_labeler,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOv" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/obj/item/stack/sheet/glass{amount = 20; layer = 3.2},/obj/item/stack/rods{amount = 20; layer = 3.3},/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/nineteenXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOw" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOA" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOB" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/machinery/camera{c_tag = "EVA Storage"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aOC" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/storage/eva) -"aOD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aOE" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Teleporter"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aOF" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter) -"aOG" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aOJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"aOK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aON" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) -"aOO" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOP" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOR" = (/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOS" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aOU" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aOW" = (/obj/machinery/door/window/eastleft{dir = 8; icon_state = "right"; name = "Mail"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/sorting) -"aOX" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"aOY" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aOZ" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) -"aPf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aPg" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aPi" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aPn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aPo" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) -"aPq" = (/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Departure Lounge Starboard"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aPt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/mining/aux_base) -"aPv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPx" = (/obj/machinery/light/small{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aPz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aPA" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/gloves,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPD" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPE" = (/turf/closed/wall,/area/crew_quarters/bar) -"aPF" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPG" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aPI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aPJ" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/storage/eva) -"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aPL" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aPM" = (/obj/structure/table,/obj/item/beacon,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPN" = (/obj/machinery/computer/teleporter{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPO" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPP" = (/obj/machinery/teleport/hub,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPQ" = (/obj/structure/closet/crate,/obj/item/crowbar,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPT" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Security Post - Cargo APC"; pixel_x = -24},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aPU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aPV" = (/obj/structure/filingcabinet/security,/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,/area/security/checkpoint/supply) -"aPW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) -"aPX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aPY" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"aPZ" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQa" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Cargo Mailroom"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQc" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQd" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQe" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQf" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQg" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQj" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aQk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) -"aQn" = (/obj/machinery/conveyor_switch/oneway{id = "garbage"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aQo" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"aQp" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aQr" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aQs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQt" = (/obj/machinery/status_display/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aQu" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQw" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aQx" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/pipe_dispenser,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aQz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aQE" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQF" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aQI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aQJ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aQK" = (/obj/structure/grille,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQL" = (/obj/structure/grille/broken,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQM" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aQR" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQS" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"aQT" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) -"aQU" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Bar Backroom"},/turf/open/floor/wood,/area/crew_quarters/bar) -"aQV" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/stack/cable_coil,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/wood,/area/crew_quarters/bar) -"aQW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQX" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQY" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aQZ" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "EVA Storage APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/storage/eva) -"aRa" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/eva) -"aRb" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/eva) -"aRc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) -"aRg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aRh" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRi" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRj" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/fifteen_k{dir = 4; name = "Delivery Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRm" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/quartermaster/sorting) -"aRn" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRo" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRp" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRq" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aRt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/disposal) -"aRu" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRv" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aRB" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aRD" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRE" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRF" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRG" = (/obj/structure/rack,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/assault_pod/mining,/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/auxbase{dir = 8; pixel_x = 30},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aRH" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/primary/central) -"aRI" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/coffee,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aRJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRK" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRL" = (/turf/closed/wall,/area/hydroponics) -"aRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRN" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"aRO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aRP" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aRQ" = (/obj/item/gun/ballistic/revolver/doublebarrel{pixel_y = 11},/obj/structure/table/wood,/obj/item/coin/silver,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar) -"aRR" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/wood/normal{dir = 8},/obj/item/clothing/under/rank/civilian/janitor/maid,/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/bar) -"aRS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"aRT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"aRU" = (/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRY" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRZ" = (/obj/item/trash/tray,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSa" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/grown/bananapeel,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSb" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/seeds/banana,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSc" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSf" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining/glass{name = "Mailroom"; req_one_access_txt = "48;50"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/quartermaster/sorting) -"aSi" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSl" = (/obj/machinery/power/apc{dir = 4; name = "Cargo Maintenance APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aSm" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/disposal) -"aSn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"aSo" = (/obj/machinery/power/apc{dir = 4; name = "Disposal APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"aSu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/wirecutters,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aSv" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 8},/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSw" = (/obj/item/statuebust,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSx" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSA" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics) -"aSB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aSC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aSE" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/hydroponics) -"aSF" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aSG" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/hydroponics) -"aSH" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aSI" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSJ" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSK" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSL" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/machinery/door/window/southleft{dir = 8; name = "Kitchen Delivery"; req_access_txt = "28"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aSM" = (/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) -"aSN" = (/obj/item/assembly/mousetrap,/obj/item/storage/box/mousetraps,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) -"aSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/crew_quarters/bar) -"aSP" = (/turf/open/floor/wood,/area/crew_quarters/bar) -"aSQ" = (/obj/effect/landmark/xeno_spawn,/obj/item/storage/box/beanbag,/turf/open/floor/wood,/area/crew_quarters/bar) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aST" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aSY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aTb" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"aTf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTi" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTm" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTn" = (/obj/machinery/light{dir = 1},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/storage) -"aTp" = (/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTr" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTs" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTy" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aTz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aTA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) -"aTB" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) -"aTC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"aTD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/starboard) -"aTE" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"aTH" = (/obj/docking_port/stationary{dir = 8; dwidth = 4; height = 15; id = "emergency_home"; name = "PubbyStation emergency evac bay"; width = 20},/turf/open/space/basic,/area/space) -"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aTK" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTL" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTM" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTQ" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) -"aTR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aTT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aTU" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) -"aTW" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/turf/open/floor/plasteel,/area/hydroponics) -"aTX" = (/obj/structure/kitchenspike,/obj/item/assembly/mousetrap,/obj/item/reagent_containers/food/snacks/deadmouse,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aTY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aTZ" = (/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUa" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/item/crowbar,/obj/item/wrench,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUb" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) -"aUc" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) -"aUd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aUe" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/crew_quarters/bar) -"aUf" = (/turf/closed/wall,/area/crew_quarters/theatre) -"aUg" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUi" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Cargo"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUl" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUm" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUo" = (/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUq" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUy" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) -"aUz" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage) -"aUA" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/space/basic,/area/space) -"aUB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aUD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) -"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/central) -"aUK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUQ" = (/obj/structure/plasticflaps/opaque,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) -"aUR" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Hydroponics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) -"aUS" = (/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/hydroponics) -"aUT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) -"aUU" = (/obj/machinery/power/apc{name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hydroponics) -"aUW" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/hydroponics) -"aUX" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUZ" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVa" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVb" = (/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVc" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aVd" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVg" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVh" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/patron{pixel_x = -5; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/cognac{pixel_x = -10; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/grappa{pixel_x = 10; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVi" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/bottle/hcider{layer = 3.1; pixel_x = -6; pixel_y = 8},/obj/item/reagent_containers/food/drinks/bottle/wine{layer = 3.1; pixel_x = 3; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/rum{layer = 3.2; pixel_x = -15; pixel_y = 4},/obj/item/reagent_containers/food/drinks/bottle/lizardwine{layer = 3.1; pixel_x = 13; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/tequila{layer = 3.2; pixel_x = 13; pixel_y = 7},/obj/item/reagent_containers/food/drinks/shaker{pixel_x = 1; pixel_y = 13},/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_x = -10; pixel_y = 15},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_x = 28; req_access_txt = "25"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVk" = (/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 22},/obj/item/instrument/accordion{pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVl" = (/obj/structure/dresser,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVm" = (/obj/machinery/vending/autodrobe,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVn" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aVo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVs" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{dir = 4; id = "cargodeliver"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"aVt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVv" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/conveyor_switch{id = "cargodeliver"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #1"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVy" = (/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVz" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Supply Dock"; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVG" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVH" = (/obj/structure/closet/l3closet/scientist,/obj/item/book/manual/wiki/chemistry,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVI" = (/obj/structure/closet,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/twentythreeXtwentythree,/obj/item/storage/crayons,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVS" = (/turf/closed/wall,/area/janitor) -"aVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor) -"aVU" = (/obj/machinery/door/window/eastright{dir = 2; name = "Janitor Delivery"; req_access_txt = "26"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Janitor"},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aVV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aVW" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVX" = (/obj/machinery/power/apc{name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVZ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) -"aWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWd" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWe" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/camera{c_tag = "Bar Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWm" = (/obj/structure/disposalpipe/segment,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWn" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWo" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWq" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWs" = (/obj/machinery/computer/cargo/request{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWu" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWv" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"aWw" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aWx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #2"},/obj/machinery/camera{c_tag = "Cargo Bay"; dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWz" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWA" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) -"aWE" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Departure Lounge Hallway"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWK" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWM" = (/obj/machinery/washing_machine,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aWN" = (/obj/machinery/camera{c_tag = "Custodial Quarters"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/light/small{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aWO" = (/obj/structure/bed,/obj/effect/landmark/start/janitor,/obj/item/bedsheet/purple,/obj/machinery/light_switch{pixel_x = 24},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aWP" = (/obj/machinery/hydroponics/constructable,/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) -"aWQ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aWR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics) -"aWS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sorting/mail{sortType = 21},/turf/open/floor/plasteel,/area/hydroponics) -"aWT" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 30},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aWU" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWW" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXd" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Bar APC"; pixel_x = 27},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXh" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXm" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 18},/obj/machinery/requests_console{department = "Theatre"; name = "theatre RC"; pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/clown,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXo" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/cardboard_cutout,/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) -"aXq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aXt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"aXu" = (/obj/machinery/door/firedoor,/obj/machinery/autolathe,/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"aXv" = (/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/camera{c_tag = "Cargo Foyer"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aXw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #3"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aXx" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aXy" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXz" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXA" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXB" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/security/checkpoint/customs) -"aXC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aXF" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aXG" = (/obj/structure/table,/obj/effect/holodeck_effect/cards{pixel_y = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aXH" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) -"aXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "papersplease"; name = "security shutters"},/turf/open/floor/plating,/area/security/checkpoint/customs) -"aXJ" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 2; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/folder/red,/obj/item/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aXK" = (/turf/closed/wall,/area/security/checkpoint/customs) -"aXL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/janitor) -"aXN" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aXO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aXP" = (/obj/structure/table,/obj/item/clothing/under/costume/maid,/obj/item/key/janitor,/obj/item/grenade/clusterbuster/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aXQ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aXR" = (/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aXS" = (/turf/open/floor/plasteel,/area/hydroponics) -"aXT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) -"aXU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aXV" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXW" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXX" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXY" = (/obj/machinery/hydroponics/constructable,/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXZ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aYa" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aYb" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aYd" = (/obj/machinery/door/airlock{name = "Service Access"; req_one_access_txt = "25; 26; 28; 35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYe" = (/obj/structure/table/reinforced,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYf" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYh" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/instrument/guitar,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYi" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYj" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYk" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYl" = (/obj/structure/table/wood,/obj/item/soap,/obj/structure/table/wood,/obj/item/bikehorn,/obj/item/toy/cattoy,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYm" = (/obj/structure/closet/crate/wooden/toy,/obj/item/lipstick/random,/obj/item/clothing/gloves/color/rainbow,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYn" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -32},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYo" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYp" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYq" = (/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYr" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYu" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #4"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYC" = (/obj/structure/grille/broken,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYD" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/matches,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYE" = (/obj/structure/table,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/obj/item/stack/rods{amount = 25},/obj/item/shard{icon_state = "small"},/obj/item/light/bulb,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYG" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"aYH" = (/obj/machinery/computer/security{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYI" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYJ" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYK" = (/obj/structure/closet/secure_closet/security,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/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/checkpoint/customs) -"aYL" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Quarters"; req_access_txt = "26"},/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},/turf/open/floor/plasteel/dark,/area/janitor) -"aYN" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aYO" = (/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aYP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aYQ" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/hydroponics) -"aYR" = (/obj/machinery/vending/dinnerware,/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYS" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYT" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYU" = (/obj/machinery/processor,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aYY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYZ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/landmark/start/assistant,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZe" = (/obj/structure/disposalpipe/segment{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZg" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZj" = (/obj/machinery/status_display/supply{pixel_x = -32},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aZn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZq" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZs" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aZw" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aZx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aZy" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZF" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZK" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/customs) -"aZL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) -"aZP" = (/turf/open/floor/plasteel,/area/janitor) -"aZQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/power/apc{dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/janitor) -"aZR" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) -"aZT" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aZU" = (/obj/machinery/vending/hydronutrients,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) -"aZV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aZX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZZ" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) -"baa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bab" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bac" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bad" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/item/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"bae" = (/obj/structure/chair/stool/bar,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bag" = (/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bah" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"ban" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/obj/structure/chair/wood/normal,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bao" = (/obj/machinery/computer/slot_machine,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bap" = (/obj/machinery/computer/slot_machine,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"baq" = (/obj/machinery/computer/arcade,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bas" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/item/paper_bin{layer = 2.9},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/office) -"bat" = (/obj/structure/table,/obj/item/clipboard,/obj/item/folder/yellow,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"bau" = (/obj/machinery/photocopier,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bav" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) -"baw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) -"bax" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"baz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"baA" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baF" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/quartermaster/storage) -"baG" = (/turf/closed/wall,/area/maintenance/solars/starboard) -"baH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"baI" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"baJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baK" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baL" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baQ" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/button/door{id = "papersplease"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 6; req_access_txt = "1"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -26; pixel_y = -4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baR" = (/obj/item/pen,/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baT" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baU" = (/obj/machinery/power/apc{name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/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,/area/security/checkpoint/customs) -"baV" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"baW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = 25; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"baX" = (/obj/vehicle/ridden/janicart,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = -25; req_access_txt = "26"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/janitor) -"baY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/janitor) -"baZ" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/janitor) -"bba" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics) -"bbb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/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},/turf/open/floor/plasteel/dark,/area/hydroponics) -"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bbd" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bbg" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbh" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbi" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbl" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"bbm" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbo" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbr" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbs" = (/obj/item/cane,/obj/item/clothing/head/that,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbt" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/clothing/under/dress/sundress,/obj/item/clothing/under/suit/waiter,/obj/item/clothing/under/dress/blacktango,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbu" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) -"bbv" = (/obj/structure/chair/stool,/obj/item/trash/can,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbw" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbx" = (/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bby" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbA" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Office Maintenance"; req_access_txt = "50"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) -"bbB" = (/obj/structure/table,/obj/item/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbC" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/hand_labeler,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbD" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbE" = (/turf/closed/wall,/area/quartermaster/qm) -"bbF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/qm) -"bbG" = (/obj/machinery/door/airlock/mining/glass{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bbH" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) -"bbI" = (/turf/closed/wall,/area/quartermaster/miningdock) -"bbJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bbK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bbL" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bbM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bbP" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard) -"bbQ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bbR" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbS" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbV" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/crowbar,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"bbW" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "jangarage"; name = "Custodial Closet Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/janitor) -"bbX" = (/obj/structure/janitorialcart,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) -"bbY" = (/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 8},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/janitor) -"bbZ" = (/obj/machinery/seed_extractor,/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},/turf/open/floor/plasteel/dark,/area/hydroponics) -"bca" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bcb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{base_state = "left"; dir = 1; icon_state = "left"; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bcc" = (/obj/machinery/biogenerator,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bcd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/food/snacks/cube/monkey,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bce" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bcg" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bch" = (/obj/structure/table,/obj/item/storage/box/ingredients/wildcard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bck" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcm" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bco" = (/obj/structure/table/wood/fancy,/obj/item/gun/ballistic/revolver/russian{pixel_y = 16},/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bcq" = (/obj/item/clothing/glasses/monocle,/obj/item/instrument/recorder,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bcr" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/wood/normal{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcs" = (/obj/item/clothing/shoes/sandal,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bct" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bcx" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"bcy" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bcz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcA" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/belt/fannypack/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcD" = (/obj/structure/closet/wardrobe/miner,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcG" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcN" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/bridge) -"bcO" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/space,/area/space/nearstation) -"bcQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/starboard) -"bcR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/starboard) -"bcS" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"bcT" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard) -"bcU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space,/area/solar/starboard) -"bcV" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"bcX" = (/turf/open/floor/plating,/area/hallway/secondary/entry) -"bcY" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bcZ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bda" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"bdd" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bde" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = -28; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) -"bdh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"bdi" = (/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light_switch{dir = 9; pixel_x = 22},/turf/open/floor/plasteel,/area/janitor) -"bdj" = (/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bdk" = (/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bdl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bdm" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) -"bdn" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdo" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdp" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdq" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/grown/tomato,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdr" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bdz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bdB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster APC"; pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdG" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdH" = (/obj/machinery/computer/bounty{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock) -"bdJ" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdK" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdM" = (/obj/machinery/requests_console{department = "Mining"; pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bdR" = (/obj/structure/chair/stool,/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bdS" = (/obj/machinery/power/solar_control{dir = 8; id = "starboardsolar"; name = "Starboard Solar Control"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bdU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/starboard) -"bdV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bdW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bea" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"beb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bec" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bed" = (/obj/structure/table,/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) -"bee" = (/obj/structure/table,/obj/item/storage/box/lights/mixed{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/mousetraps,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/clothing/head/crown,/turf/open/floor/plasteel,/area/janitor) -"bef" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"beg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bei" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"bej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bek" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"ben" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"beo" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"bep" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"beq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ber" = (/obj/effect/landmark/start/cook,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bes" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"beu" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bex" = (/obj/machinery/camera{c_tag = "Bar Port"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bey" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bez" = (/obj/structure/table/wood,/obj/item/instrument/trombone,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beA" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beC" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/kitchen/fork,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beE" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beF" = (/obj/structure/disposalpipe/segment{dir = 5},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bar Starboard"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beI" = (/turf/closed/wall,/area/science/robotics/mechbay) -"beJ" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -23},/turf/open/floor/plasteel,/area/quartermaster/qm) -"beK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) -"beL" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"beM" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/shaft_miner,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beO" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beP" = (/obj/machinery/computer/shuttle/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"beS" = (/obj/item/caution,/turf/open/floor/plating,/area/maintenance/department/cargo) -"beU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) -"beY" = (/obj/machinery/camera{c_tag = "Arrivals Central"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"beZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bfb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfc" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bff" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 8; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bfj" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bfk" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bfl" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bfm" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"bfn" = (/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bfo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfp" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{id = "kitchenwindowshutters"; name = "Kitchen Window Shutters Control"; pixel_x = -26; pixel_y = 5; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bfr" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) -"bfs" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bft" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bfu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfv" = (/obj/structure/table,/obj/item/crowbar/large,/obj/machinery/airalarm{pixel_y = 22},/obj/item/clothing/head/welding,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/machinery/power/apc{dir = 1; name = "Mech Bay APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfx" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfy" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfz" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfA" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfB" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/computer/card/minor/qm{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfC" = (/obj/structure/table,/obj/item/clipboard,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Quartermaster's Office"; dir = 1},/obj/machinery/light_switch{pixel_y = -24},/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster,/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/coin/silver,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/computer/security/qm{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfE" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/camera{c_tag = "Cargo Mining Dock"; dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfH" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfI" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) -"bfJ" = (/turf/open/floor/plating,/area/quartermaster/miningdock) -"bfK" = (/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) -"bfM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfN" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/paperplane,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfP" = (/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfZ" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge) -"bga" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/lounge) -"bgb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lounge"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"bgc" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/lounge) -"bgd" = (/turf/closed/wall,/area/crew_quarters/lounge) -"bge" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/science{dir = 4; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgh" = (/obj/structure/chair{name = "Throne of Custodia"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgi" = (/obj/machinery/vending/cola,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hydroponics) -"bgk" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bgl" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bgn" = (/obj/structure/chair{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgo" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/storage/fancy/rollingpapers,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgq" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgr" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/donut,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bgu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bgv" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgw" = (/obj/structure/chair,/obj/item/clothing/head/bowler,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgx" = (/obj/machinery/firealarm{pixel_y = 27},/obj/structure/chair,/obj/item/clothing/mask/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgy" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgz" = (/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 8; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgB" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgC" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgD" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgE" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgI" = (/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgK" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Mining Dock APC"; pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgM" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgS" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 13; id = "arrivals_stationary"; name = "pubby arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/pubby; width = 6},/turf/open/space/basic,/area/space) -"bgU" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgV" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "loungeshutters"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bha" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhc" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 38},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar1"; location = "Robo"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhn" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bho" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bhp" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhr" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bht" = (/obj/structure/closet/secure_closet/miner,/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhu" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhv" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhE" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhF" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bhG" = (/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bhH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bhI" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/camera{c_tag = "Lounge"; dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bhJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = -1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS1"; location = "Lounge"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lounge"; location = "Kitchen"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L7"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhP" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhQ" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 25; req_access_txt = "29"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhR" = (/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = -25; req_access_txt = "29"},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhU" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bhV" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bib" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bic" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bid" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bie" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair{dir = 4},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"big" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bih" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/medbay/alt{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bij" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bik" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bim" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bin" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Hydroponics"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bio" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"biq" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bir" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Robotics"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bis" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bit" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biw" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bix" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/shard{icon_state = "small"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biJ" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/lounge) -"biK" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biN" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biO" = (/obj/structure/table/glass,/obj/item/healthanalyzer{layer = 3.1},/obj/item/pen{layer = 3.2},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biP" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/departments/examroom{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biR" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Genetics"; dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biT" = (/obj/structure/closet/firecloset,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/storage/emergency/port) -"biX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/emergency/port) -"biY" = (/turf/closed/wall,/area/medical/morgue) -"biZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bja" = (/turf/closed/wall,/area/security/checkpoint/medical) -"bjb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint/medical) -"bjc" = (/turf/closed/wall,/area/medical/medbay/central) -"bjd" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) -"bje" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/central) -"bjf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bjg" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bji" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjk" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bar"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjl" = (/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjn" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bjr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bju" = (/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bjv" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjw" = (/turf/closed/wall/r_wall,/area/science/explab) -"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjB" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bjD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjI" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjJ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjK" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjL" = (/turf/closed/wall,/area/storage/emergency/port) -"bjN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/emergency/port) -"bjP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/port) -"bjQ" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bjR" = (/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"bjS" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjW" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjX" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bjY" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bjZ" = (/obj/machinery/computer/secure_data,/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bka" = (/obj/machinery/computer/security,/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/checkpoint/medical) -"bkb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) -"bkc" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkd" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bke" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkh" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bkn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci3"; location = "Sci2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bkp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkq" = (/obj/structure/table,/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/clothing/head/welding,/obj/item/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkr" = (/obj/machinery/modular_computer/console/preset/civilian,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bks" = (/obj/structure/table,/obj/item/wrench,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkt" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) -"bku" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/robotics/lab) -"bkv" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"bkw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bkx" = (/turf/closed/wall/r_wall,/area/science/server) -"bky" = (/turf/open/floor/engine,/area/science/explab) -"bkz" = (/obj/machinery/camera{c_tag = "Experimentation Lab Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) -"bkA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bkB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/engine,/area/science/explab) -"bkD" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/explab) -"bkF" = (/turf/closed/wall/r_wall,/area/science/xenobiology) -"bkH" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{glass = 1; name = "Slime Euthanization Chamber"; opacity = 0; req_access_txt = "55"},/turf/open/floor/plating,/area/science/xenobiology) -"bkP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/starboard) -"bkQ" = (/obj/machinery/vending/snack,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkR" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkW" = (/obj/item/hemostat,/obj/item/retractor,/obj/item/cautery,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bkX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bkY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bkZ" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Genetics Cloning Foyer"; network = list("ss13","medbay")},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bla" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"blb" = (/turf/open/floor/plating,/area/storage/emergency/port) -"blc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"bld" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"ble" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blf" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blg" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blh" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"blj" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"blk" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bll" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bln" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blq" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 3; pixel_y = 2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blr" = (/obj/structure/table,/obj/item/folder/white,/obj/item/healthanalyzer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bls" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blt" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blv" = (/obj/structure/table,/obj/item/paicard,/obj/item/clothing/glasses/science,/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/hallway/primary/aft) -"blw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blx" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -26; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blC" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/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,/area/hallway/primary/aft) -"blE" = (/obj/structure/filingcabinet/chestdrawer,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"blF" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/roboticist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blG" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blH" = (/obj/machinery/camera{c_tag = "Robotics Lab"; network = list("ss13","rd")},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blI" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30; receive_ore_updates = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel,/area/science/robotics/lab) -"blJ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 14},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Robotics Lab APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"blM" = (/obj/machinery/rnd/server,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"blN" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) -"blP" = (/obj/effect/landmark/event_spawn,/obj/item/beacon,/obj/machinery/light{dir = 8},/turf/open/floor/engine,/area/science/explab) -"blQ" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) -"blR" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) -"blS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/book/manual/wiki/experimentor,/turf/open/floor/engine,/area/science/explab) -"blT" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/obj/structure/sign/warning/securearea{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"blU" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/integrated_electronics/debugger,/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"blV" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/stack/sheet/metal/ten,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"blW" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/wirer,/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"blX" = (/turf/open/floor/engine,/area/science/xenobiology) -"blZ" = (/obj/machinery/computer/camera_advanced/xenobio,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bmc" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bmd" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bme" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bmf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bmg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bmh" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmk" = (/obj/structure/table,/obj/item/crowbar,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bml" = (/obj/structure/girder,/turf/open/floor/plating,/area/storage/emergency/port) -"bmn" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/storage/emergency/port) -"bmp" = (/obj/structure/bodycontainer/morgue,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bmq" = (/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bmr" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/camera{c_tag = "Morgue"; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bms" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/medical"; dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay Security Post"; dir = 4; network = list("ss13","medbay")},/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmt" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmv" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/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,/area/security/checkpoint/medical) -"bmw" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmy" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Kitchen"; location = "Med"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmC" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmH" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci2"; location = "Sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmL" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bmM" = (/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmN" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmO" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmR" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bmS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"bmT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) -"bmU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"bmV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine,/area/science/explab) -"bmW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine,/area/science/explab) -"bmX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/science/explab) -"bmY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/engine,/area/science/explab) -"bmZ" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/magnetic_controller{autolink = 1; pixel_x = -28; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bna" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/box/red,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bnb" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bnc" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bnd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) -"bnh" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) -"bni" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) -"bnj" = (/turf/closed/wall,/area/science/xenobiology) -"bnl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bnn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"bno" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnq" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnt" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bnv" = (/turf/closed/wall,/area/medical/genetics) -"bnw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bnx" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bnz" = (/obj/structure/table,/obj/item/folder/white,/obj/item/clothing/gloves/color/latex,/obj/item/storage/fancy/candle_box,/obj/machinery/light_switch{pixel_x = 22},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bnA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bnB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Medbay Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/medical) -"bnC" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnD" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnO" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bnP" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnQ" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnS" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/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/assembly/flash/handheld,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bnT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/science/server) -"bnU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Server Room"; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/science/server) -"bnV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/science/explab) -"bnW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) -"bnX" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/science/explab) -"bnY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) -"bnZ" = (/obj/item/kirbyplants{icon_state = "plant-10"},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"boa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) -"boc" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bod" = (/turf/closed/wall,/area/science/explab) -"boe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bof" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/trinary/filter,/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/science/explab) -"bog" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/engine,/area/science/explab) -"boh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) -"bok" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bom" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"bon" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"boo" = (/obj/machinery/camera{c_tag = "Arrivals Port Aft"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bop" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"boq" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bor" = (/obj/structure/flora/grass/jungle,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/medical/genetics) -"bos" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) -"bot" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/medical/genetics) -"bou" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) -"bov" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bow" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"box" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boy" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boz" = (/obj/machinery/vending/clothing,/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"boC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"boD" = (/obj/item/ectoplasm,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"boE" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boH" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boI" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boJ" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen,/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) -"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boL" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boM" = (/obj/structure/bed/roller,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boO" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boP" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boQ" = (/obj/structure/closet/firecloset/full,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boR" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boS" = (/obj/structure/chair,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boU" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/machinery/camera{c_tag = "Research Division Lobby"; dir = 1},/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-10"},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boX" = (/obj/machinery/computer/rdconsole/robotics{dir = 4},/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 4; req_access_txt = "29"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"boZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bpa" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/science/server) -"bpb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/dark,/area/science/server) -"bpc" = (/obj/machinery/computer/rdservercontrol{dir = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/camera{c_tag = "Server Room"; network = list("ss13","rd"); pixel_x = 22},/turf/open/floor/plasteel/dark,/area/science/server) -"bpd" = (/obj/machinery/button/door{id = "testlab"; name = "Window Blast Doors"; pixel_x = -6},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Door"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpe" = (/obj/machinery/computer/rdconsole/experiment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"bpg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/paper_bin,/obj/item/pen,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bph" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Experimentation Lab Central"; network = list("ss13","rd")},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpi" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpn" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bpo" = (/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bpp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bpq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bpr" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/science/xenobiology) -"bpt" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bpu" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bpv" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) -"bpw" = (/obj/structure/flora/grass/jungle,/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) -"bpx" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/junglebush,/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) -"bpy" = (/obj/machinery/clonepod,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bpz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) -"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue"; req_access_txt = "6"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpK" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bpM" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/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) -"bpO" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpR" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpS" = (/obj/structure/table/reinforced,/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) -"bpT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry) -"bpW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bpX" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) -"bpY" = (/turf/closed/wall,/area/medical/chemistry) -"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plating,/area/science/lab) -"bqc" = (/obj/structure/table/reinforced,/obj/item/pen{layer = 3.1},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Research and Development Desk"; req_one_access_txt = "7;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/item/folder/white,/turf/open/floor/plating,/area/science/lab) -"bqd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqg" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/storage/belt/utility,/obj/item/reagent_containers/glass/beaker/large,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/radio/headset/headset_sci{pixel_x = -3},/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bqh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqk" = (/obj/machinery/aug_manipulator,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bql" = (/obj/machinery/power/apc{dir = 8; name = "Server Room APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/science/server) -"bqm" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/server) -"bqn" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/server) -"bqo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqq" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqs" = (/turf/open/floor/plasteel/white,/area/science/explab) -"bqt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqx" = (/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bqC" = (/obj/machinery/monkey_recycler,/obj/structure/window/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/science/xenobiology) -"bqE" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bqF" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 1},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bqG" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bqH" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqI" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqJ" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bqK" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqL" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqO" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bqS" = (/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 4; name = "Arrivals APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bqT" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/obj/item/reagent_containers/food/snacks/grown/banana,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Fore"; dir = 4; network = list("ss13","medbay")},/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) -"bqU" = (/obj/structure/sink/puddle,/obj/structure/flora/ausbushes/reedbush{pixel_y = 6},/turf/open/floor/grass,/area/medical/genetics) -"bqV" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/light/small{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bqW" = (/obj/machinery/computer/cloning{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bqX" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bqY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 23},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bqZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bra" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{id_tag = "GeneticsDoor"; name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/unres{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"brb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"brc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"brd" = (/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brh" = (/obj/machinery/computer/med_data{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bri" = (/obj/machinery/computer/crew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brj" = (/obj/machinery/chem_master,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brk" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brl" = (/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brm" = (/obj/machinery/chem_master,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brq" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/item/stack/cable_coil/orange,/obj/item/storage/toolbox/mechanical,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brr" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brs" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brt" = (/obj/structure/chair/office/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/lab) -"bru" = (/obj/machinery/holopad,/obj/machinery/light_switch{pixel_x = 25},/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"brw" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"brx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bry" = (/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus{pixel_x = 5; pixel_y = -5},/obj/item/crowbar,/obj/structure/table,/turf/open/floor/plasteel,/area/science/robotics/lab) -"brz" = (/obj/item/circular_saw,/obj/item/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/item/razor{pixel_y = 5},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brA" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/bot_assembly/cleanbot,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brB" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brC" = (/obj/item/clothing/gloves/color/latex,/obj/item/surgical_drapes,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/science/server) -"brE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/server) -"brF" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) -"brG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"brH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"brJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"brK" = (/obj/structure/table/reinforced,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/white,/area/science/explab) -"brL" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/white,/area/science/explab) -"brM" = (/obj/machinery/libraryscanner,/turf/open/floor/plasteel/white,/area/science/explab) -"brO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"brR" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/science/xenobiology) -"brT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/l3closet,/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/xenobiology) -"brU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/xenobio{pixel_x = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) -"brW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"brX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bsa" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsb" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) -"bsc" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsd" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) -"bse" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsf" = (/obj/machinery/camera{c_tag = "Xenobiology Starboard"; network = list("ss13","rd")},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bsl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bsm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Arrivals Starboard Aft"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bsn" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/engine) -"bso" = (/obj/structure/flora/junglebush,/obj/structure/flora/grass/jungle/b,/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/medical/genetics) -"bsp" = (/obj/item/toy/beach_ball,/turf/open/floor/grass,/area/medical/genetics) -"bsq" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/medical/genetics) -"bsr" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bss" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bst" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) -"bsx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsz" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsA" = (/turf/closed/wall,/area/medical/sleeper) -"bsB" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsC" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsD" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsF" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsG" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsJ" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/structure/sign/poster/official/safety_eye_protection{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsK" = (/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsL" = (/obj/item/storage/box/beakers,/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsN" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) -"bsS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) -"bsT" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/white,/area/science/lab) -"bsU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bsV" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bsW" = (/obj/item/kirbyplants,/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},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bsX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bsY" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bsZ" = (/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,/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bta" = (/obj/item/retractor,/obj/item/hemostat,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btb" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/machinery/camera{c_tag = "Robotics - Aft"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btc" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btd" = (/obj/item/mmi,/obj/item/mmi,/obj/item/mmi,/obj/structure/table,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/server) -"btf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access_txt = "30"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) -"btg" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/multitool,/obj/item/multitool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bth" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bti" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) -"btk" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"btl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bts" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"btt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btA" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/landmark/xeno_spawn,/obj/structure/sign/departments/xenobio{pixel_x = -32},/turf/open/floor/plasteel,/area/science/xenobiology) -"btB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"btE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"btK" = (/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) -"btL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"btM" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"btN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"btO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"btP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"btQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"btR" = (/obj/structure/flora/ausbushes/brflowers,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"btS" = (/turf/open/floor/grass,/area/medical/genetics) -"btT" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sunnybush,/obj/item/reagent_containers/food/snacks/grown/banana,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"btU" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btX" = (/obj/structure/table,/obj/item/book/manual/wiki/medical_cloning{pixel_y = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btY" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 24; pixel_y = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bub" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"buc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bud" = (/obj/item/wrench/medical,/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bue" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/medical/sleeper) -"buf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bug" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"buh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bui" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"buj" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/camera{c_tag = "Chemistry"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"buk" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bul" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bun" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bup" = (/obj/machinery/rnd/destructive_analyzer,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"buq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) -"bur" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/protolathe/department/science,/turf/open/floor/plasteel,/area/science/lab) -"bus" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Research and Development Lab"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"but" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buu" = (/obj/structure/chair{dir = 8},/obj/item/clothing/mask/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/science/robotics/lab) -"buw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"buy" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"buz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) -"buA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"buC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/explab) -"buD" = (/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buG" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buH" = (/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/white,/area/science/explab) -"buI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buK" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"buL" = (/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/dark,/area/science/xenobiology) -"buM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bva" = (/turf/closed/wall,/area/maintenance/department/engine) -"bvb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bvc" = (/turf/closed/wall/r_wall,/area/medical/genetics) -"bvd" = (/obj/machinery/door/airlock/research/glass{name = "Genetics"; req_access_txt = "9"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bve" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/genetics) -"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Port Hallway"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvh" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvk" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvm" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvo" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvq" = (/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvw" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"bvx" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) -"bvy" = (/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/circuit_imprinter/department/science,/turf/open/floor/plasteel,/area/science/lab) -"bvz" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/lab) -"bvA" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_y = 34},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvE" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/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,/area/hallway/primary/aft) -"bvG" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bvH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) -"bvI" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Science Access Airlock"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/explab) -"bvJ" = (/obj/structure/closet/firecloset/full,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/explab) -"bvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/science/explab) -"bvL" = (/obj/machinery/power/apc/highcap/ten_k{dir = 1; name = "Research Division APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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/dark,/area/science/explab) -"bvU" = (/obj/machinery/recharger,/obj/structure/table,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvV" = (/turf/open/floor/plasteel,/area/science/explab) -"bvW" = (/obj/machinery/magnetic_module,/obj/effect/landmark/blobstart,/obj/structure/target_stake,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"bvZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/dark,/area/science/explab) -"bwa" = (/turf/open/floor/plasteel/dark,/area/science/explab) -"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) -"bwc" = (/obj/machinery/chem_master,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/explab) -"bwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwm" = (/turf/closed/wall,/area/maintenance/department/science) -"bwn" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"bws" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/obj/item/electronics/airalarm,/turf/open/floor/plating,/area/maintenance/department/engine) -"bwt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bwu" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bwv" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bww" = (/obj/machinery/computer/scan_consolenew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwx" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwA" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/bodybags,/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/medical/genetics) -"bwB" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/table/glass,/obj/item/storage/box/gloves{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/masks,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/bloodbankgen,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwV" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwW" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bxa" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/research_and_development,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/turf/open/floor/plasteel/dark,/area/science/lab) -"bxc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/lab) -"bxd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 13},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bxe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/lab) -"bxf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"bxg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bxh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"bxi" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci9"; location = "Sci8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci8"; location = "Sci7"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxn" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxo" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxp" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bxq" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxu" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxz" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxC" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxD" = (/obj/structure/reagent_dispensers/watertank,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) -"bxH" = (/obj/effect/turf_decal/box/corners,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxJ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/chem_heater,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxK" = (/obj/structure/chair/stool,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxM" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxN" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxO" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/science) -"bxQ" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxR" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxS" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxT" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxY" = (/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bya" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"byb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plating,/area/maintenance/department/engine) -"byc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"byd" = (/obj/structure/flora/junglebush/c,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bye" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/grass,/area/medical/genetics) -"byf" = (/obj/structure/table,/obj/item/storage/box/disks,/obj/item/flashlight/pen,/obj/item/flashlight/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byg" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"byk" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/storage/box/monkeycubes,/obj/machinery/light{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byl" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bym" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"byn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"byo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/sleeper) -"byp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bys" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"byt" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"byu" = (/turf/closed/wall,/area/crew_quarters/heads/cmo) -"byv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"byw" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/headset/headset_med,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"byx" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"byz" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/door/window/eastright{dir = 1; name = "Chemistry Testing"; req_access_txt = "5; 33"},/obj/effect/turf_decal/stripes/line{dir = 9},/mob/living/simple_animal/mouse/white{name = "Labrette"},/turf/open/floor/engine,/area/medical/chemistry) -"byA" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/medical/chemistry) -"byC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/science/lab) -"byE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/lab) -"byF" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byH" = (/obj/structure/table,/obj/item/multitool,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci5"; location = "Sci4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byO" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"byP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) -"byQ" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"byR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/shower{dir = 8; name = "emergency shower"; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/science/explab) -"byT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants/photosynthetic{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byU" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byV" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byW" = (/obj/structure/chair/comfy{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byX" = (/obj/machinery/camera{c_tag = "Research Division Secure Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzb" = (/obj/structure/closet/radiation,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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/dark,/area/science/explab) -"bzc" = (/obj/structure/reagent_dispensers/fueltank,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"bzd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) -"bze" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) -"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bzh" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Experimentation Lab"; dir = 1; network = list("ss13","rd")},/obj/item/storage/toolbox/electrical{pixel_x = -4; pixel_y = 5},/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzi" = (/obj/structure/table,/obj/item/electropack,/obj/item/taperecorder,/obj/item/screwdriver,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzj" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzk" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzl" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzm" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) -"bzn" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzp" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzq" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzr" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzs" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) -"bzy" = (/obj/structure/grille,/turf/open/space,/area/space/nearstation) -"bzz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzA" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzB" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; dir = 8; name = "Monastery Monitor"; network = list("monastery"); pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzC" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bzD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bzE" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Aft"; dir = 4; network = list("ss13","medbay")},/obj/structure/flora/ausbushes/grassybush,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) -"bzF" = (/obj/machinery/door/window/eastleft{name = "Monkey Pen"; req_one_access_txt = "9"},/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) -"bzG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzH" = (/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzM" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzN" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzO" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzP" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bzQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzR" = (/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzT" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzU" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/medical/sleeper) -"bzV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzY" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/crew_quarters/heads/cmo) -"bzZ" = (/obj/machinery/suit_storage_unit/cmo,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAa" = (/obj/machinery/computer/crew,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAb" = (/obj/machinery/computer/med_data,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAc" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/keycard_auth{pixel_x = 26},/obj/machinery/button/door{dir = 4; id = "cmoshutters"; name = "Privacy shutters"; pixel_x = 38; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAf" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAg" = (/obj/structure/table/glass,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/stack/cable_coil/random,/obj/item/book/manual/wiki/chemistry,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/stack/sheet/mineral/plasma{amount = 2; layer = 2.9},/obj/item/screwdriver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAi" = (/obj/machinery/smoke_machine,/turf/open/floor/engine,/area/medical/chemistry) -"bAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bAo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Director's Office"; req_access_txt = "30"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bAq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/science) -"bAu" = (/turf/closed/wall,/area/security/checkpoint/science) -"bAv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAy" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bAA" = (/turf/closed/wall,/area/science/storage) -"bAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/science/storage) -"bAC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bAD" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"bAE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bAF" = (/turf/closed/wall,/area/science/mixing) -"bAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"bAH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) -"bAI" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bAJ" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAK" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAL" = (/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bAN" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) -"bAO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small,/turf/open/floor/grass,/area/medical/genetics) -"bAP" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/medical/genetics) -"bAQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/item/storage/pill_bottle/mutadone,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAV" = (/obj/machinery/shower{dir = 8},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics Requests Console"; pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAW" = (/turf/closed/wall,/area/medical/virology) -"bAX" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_exterior"; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/white,/area/medical/virology) -"bAY" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/virology) -"bBb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBd" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/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) -"bBf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bBg" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBh" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBi" = (/obj/effect/landmark/start/chief_medical_officer,/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBk" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/computer/security/telescreen/cmo{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBl" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBo" = (/turf/closed/wall,/area/hallway/primary/aft) -"bBp" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) -"bBq" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/power/apc{dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBu" = (/obj/item/kirbyplants/dead,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{desc = "A switch that controls privacy shutters."; id = "rdprivacy"; name = "Privacy Shutters"; pixel_x = 40; pixel_y = -5; req_access_txt = "30"},/obj/machinery/keycard_auth{pixel_x = 28; pixel_y = 6},/obj/machinery/button/door{id = "rndshutters"; name = "Research Lockdown"; pixel_x = 28; pixel_y = -5; req_access_txt = "47"},/obj/machinery/button/door{id = "research_shutters_2"; name = "RnD Shutters"; pixel_x = 40; pixel_y = 5; req_access_txt = "47"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBw" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBx" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBy" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_x = 28; 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},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBB" = (/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bBC" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) -"bBD" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) -"bBE" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bBF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bBG" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) -"bBH" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bBI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"bBJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bBK" = (/obj/structure/closet/bombcloset,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBL" = (/obj/structure/closet/bombcloset,/obj/machinery/airalarm/unlocked{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"bBO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bBP" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Toxins Lab APC"; pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Toxins Lab Starboard"; network = list("ss13","rd")},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/portable_atmospherics/pump,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBU" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) -"bBV" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bBW" = (/turf/open/space,/area/space) -"bBX" = (/turf/closed/wall/r_wall,/area/maintenance/department/engine) -"bBY" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/mesh,/obj/item/stack/medical/suture,/turf/open/floor/plating,/area/maintenance/department/engine) -"bBZ" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCa" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCb" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCc" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCe" = (/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 27},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCh" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; network = list("ss13","medbay")},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCi" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCj" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCl" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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) -"bCo" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bCp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bCq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Chief Medical Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"bCr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCs" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen{layer = 3.1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCt" = (/obj/structure/table/glass,/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCu" = (/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/medical/gauze,/obj/item/clothing/neck/stethoscope,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCw" = (/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 11},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bCz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCB" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bCD" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCE" = (/obj/machinery/computer/robotics{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCG" = (/obj/structure/displaycase/labcage,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bCK" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Science Security Post"; dir = 4; network = list("ss13","rd")},/obj/item/book/manual/wiki/security_space_law,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCL" = (/obj/effect/landmark/start/depsec/science,/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCN" = (/obj/structure/chair/comfy,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bCO" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) -"bCP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) -"bCQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bCR" = (/turf/open/floor/engine,/area/science/storage) -"bCS" = (/obj/structure/sign/warning/fire,/turf/closed/wall,/area/science/storage) -"bCT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bCU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bCV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) -"bCW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bCX" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bCZ" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDa" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDb" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDd" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/wrench,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDe" = (/obj/machinery/light{light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) -"bDf" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bDg" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDi" = (/turf/open/floor/plating,/area/maintenance/department/engine) -"bDj" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bDk" = (/obj/item/chair,/obj/item/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDn" = (/obj/machinery/vending/wardrobe/gene_wardrobe,/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/white,/area/medical/genetics) -"bDo" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bDp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque,/turf/open/floor/plasteel/white,/area/medical/virology) -"bDq" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bDr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/sleeper) -"bDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/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) -"bDt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDv" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDx" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDy" = (/turf/closed/wall,/area/medical/exam_room) -"bDz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDA" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bDB" = (/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/machinery/computer/rdconsole{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDD" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDE" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/research_director,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDF" = (/obj/machinery/computer/card/minor/rd{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDG" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDK" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/light{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bDL" = (/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/engine,/area/science/storage) -"bDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) -"bDN" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) -"bDO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/storage) -"bDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) -"bDQ" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/turf/open/floor/plasteel/dark,/area/science/storage) -"bDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research/glass{name = "Toxins Lab"; req_access_txt = "8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"bEa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bEb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEf" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEj" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEk" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/obj/machinery/meter,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) -"bEl" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEm" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bEq" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEr" = (/turf/closed/wall/r_wall,/area/medical/virology) -"bEs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEu" = (/obj/structure/closet/l3closet,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEv" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/rnd/production/techfab/department/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEw" = (/obj/structure/table,/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEx" = (/obj/structure/table,/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southleft{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEy" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southright{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEz" = (/obj/structure/table,/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bED" = (/obj/structure/closet/secure_closet/CMO,/obj/item/valentine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEE" = (/obj/machinery/modular_computer/console/preset/civilian{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEF" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table,/obj/machinery/light,/obj/item/wrench/medical,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEG" = (/obj/item/folder/blue,/obj/item/stamp/cmo,/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEH" = (/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/light_switch{pixel_y = -22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEI" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/closet,/obj/item/clothing/under/rank/medical/doctor/nurse,/obj/item/clothing/head/nursehat,/obj/effect/decal/cleanable/cobweb,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/blobstart,/obj/item/melee/baton/cattleprod{preload_cell_type = /obj/item/stock_parts/cell/high},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "CMOCell"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEL" = (/obj/machinery/door/airlock/command{id_tag = "CMOCell"; name = "Personal Examination Room"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bEQ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bER" = (/obj/machinery/computer/mecha{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bES" = (/obj/item/aicard,/obj/item/circuitboard/aicore,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = -30; receive_ore_updates = 1},/obj/machinery/light,/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bET" = (/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 5},/obj/item/folder/white,/obj/item/pen,/obj/item/stamp/rd,/obj/machinery/status_display/ai{pixel_y = -32},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bEU" = (/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/structure/table/glass,/obj/machinery/computer/security/telescreen/rd{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bEV" = (/obj/machinery/newscaster{pixel_y = -30},/obj/machinery/modular_computer/console/preset/research{dir = 8},/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/dark,/area/crew_quarters/heads/hor) -"bEW" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEY" = (/obj/machinery/power/apc{dir = 4; name = "Science Security APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/closet/secure_closet/security/science,/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,/area/security/checkpoint/science) -"bEZ" = (/obj/structure/chair/comfy{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bFa" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/science/storage) -"bFb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/science/storage) -"bFd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/science/storage) -"bFf" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bFh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFi" = (/obj/item/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/science/mixing) -"bFj" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFk" = (/obj/structure/table/reinforced,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 10},/obj/item/analyzer,/turf/open/floor/plasteel/white,/area/science/mixing) -"bFl" = (/turf/open/floor/plasteel/white,/area/science/mixing) -"bFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFn" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bFp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/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/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bFr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFu" = (/obj/machinery/button/massdriver{dir = 4; id = "toxinsdriver"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"bFy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) -"bFz" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/science) -"bFB" = (/obj/item/newspaper,/turf/open/floor/plating,/area/maintenance/department/science) -"bFC" = (/obj/item/wallframe/camera,/obj/machinery/button/door{id = "PottySci"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bFD" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/science) -"bFE" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_asteroid"; name = "monastery"; width = 5},/turf/open/space,/area/space/nearstation) -"bFF" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bFG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bFH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"bFI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFL" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFM" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_interior"; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bFN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"bFO" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) -"bFP" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFR" = (/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFU" = (/turf/closed/wall,/area/medical/surgery) -"bFV" = (/obj/structure/table/glass,/obj/item/flashlight/pen,/obj/item/clothing/neck/stethoscope,/obj/item/lipstick/black,/obj/machinery/power/apc{dir = 8; name = "Personal Examination Room APC"; pixel_x = -25},/obj/structure/cable,/obj/item/reagent_containers/pill/morphine,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFW" = (/obj/effect/decal/remains/human,/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFX" = (/obj/structure/bed,/obj/item/bedsheet/cmo,/obj/effect/decal/cleanable/blood/drip,/obj/item/restraints/handcuffs,/obj/item/clothing/mask/muzzle,/obj/machinery/light_switch{pixel_y = -22},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/departments/examroom{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"bGa" = (/obj/structure/sign/departments/science,/turf/closed/wall,/area/hallway/primary/aft) -"bGb" = (/obj/machinery/door/airlock/security/glass{name = "Research Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/science) -"bGc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) -"bGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bGe" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bGf" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine,/area/science/storage) -"bGg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) -"bGh" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bGi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/engine,/area/science/storage) -"bGj" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bGk" = (/obj/machinery/light,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark,/area/science/explab) -"bGl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/science/explab) -"bGm" = (/obj/structure/closet/emcloset,/obj/machinery/light_switch{dir = 8; pixel_x = -24; pixel_y = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGn" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGo" = (/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGp" = (/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = 5},/obj/item/transfer_valve{pixel_x = 5},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Toxins Lab Port"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGq" = (/obj/item/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/assembly/timer,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/white,/area/science/mixing) -"bGs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGt" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGu" = (/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGv" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGw" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bGx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) -"bGy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bGA" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/science/mixing) -"bGB" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bGD" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) -"bGE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/dock) -"bGF" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/chapel/dock) -"bGG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plating/airless,/area/chapel/dock) -"bGH" = (/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bGI" = (/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"bGK" = (/obj/structure/closet/boxinggloves,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bGM" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/department/engine) -"bGN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bGO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGP" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGQ" = (/obj/structure/window/reinforced,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGR" = (/obj/machinery/door/window/eastleft{dir = 2; name = "Monkey Pen"; req_one_access_txt = "39"},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGS" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/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) -"bGT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bGU" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Virology APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = 22},/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) -"bGV" = (/obj/machinery/shower{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGW" = (/turf/open/floor/plasteel/white,/area/medical/virology) -"bGX" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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) -"bHa" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bHb" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHc" = (/obj/machinery/computer/med_data,/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHd" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/surgery) -"bHf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHh" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHj" = (/obj/item/storage/belt/utility,/obj/item/clothing/glasses/science,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHk" = (/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/mask/gas,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bHu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/storage) -"bHv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/engine,/area/science/storage) -"bHw" = (/turf/closed/wall/r_wall,/area/science/storage) -"bHy" = (/turf/closed/wall/r_wall,/area/science/mixing) -"bHz" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/door/incinerator_vent_toxmix{pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bHA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/ignition{id = "toxigniter"; pixel_x = -6; pixel_y = -24},/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = 6; pixel_y = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bHC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Incinerator Output Pump"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bHD" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"bHE" = (/obj/structure/window/reinforced,/obj/machinery/doppler_array/research/science,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"bHI" = (/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) -"bHJ" = (/turf/open/floor/plating,/area/chapel/dock) -"bHK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/chapel/dock) -"bHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/chapel/dock) -"bHM" = (/turf/closed/wall/r_wall,/area/chapel/dock) -"bHN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bHP" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHQ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHR" = (/obj/effect/decal/cleanable/vomit/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHS" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHT" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/engine) -"bHU" = (/obj/machinery/vending/medical,/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) -"bHV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{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) -"bHY" = (/obj/machinery/camera{c_tag = "Virology"; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bIc" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bId" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIe" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/light,/obj/machinery/camera{c_tag = "Medbay Equipment Room"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIf" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIg" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/storage/box/syringes,/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/spray/cleaner,/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/white,/area/medical/medbay/central) -"bIh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/surgery) -"bIk" = (/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIl" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIm" = (/obj/machinery/camera{c_tag = "Medbay Recovery Room"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery) -"bIo" = (/obj/structure/closet/crate/freezer/blood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/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_switch{pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sink{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Surgery"; network = list("ss13","surgery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIs" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIt" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng2"; location = "Eng"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci6"; location = "Eng3"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIy" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci7"; location = "Sci6"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bID" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng"; location = "Sci5"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIE" = (/obj/machinery/vending/assist,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bIF" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) -"bIG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) -"bIH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/power/apc{name = "Toxins Storage APC"; pixel_y = -25},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/storage) -"bII" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bIJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) -"bIK" = (/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bIL" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/turf/open/floor/engine,/area/science/mixing) -"bIM" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/science/mixing) -"bIN" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 4; layer = 4; name = "Test Chamber Telescreen"; network = list("toxins"); pixel_x = -32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"bIP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"bIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bIR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"bIT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"bIU" = (/obj/effect/spawner/structure/window/reinforced,/turf/closed/wall,/area/chapel/dock) -"bIV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/dock) -"bIW" = (/obj/machinery/computer/shuttle/monastery_shuttle,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bIX" = (/obj/machinery/atmospherics/components/unary/tank/air,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bIY" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space) -"bIZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/engine) -"bJa" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJb" = (/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJc" = (/obj/structure/chair/comfy/black,/obj/item/trash/pistachios,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJd" = (/obj/structure/chair/comfy/black,/obj/item/stack/spacecash/c100,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJe" = (/obj/structure/chair/comfy/black,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJf" = (/obj/structure/chair/comfy/black,/obj/item/cigbutt,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJg" = (/obj/item/trash/popcorn,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJh" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJi" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJj" = (/obj/structure/rack,/obj/item/cartridge/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJk" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/infections,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bJm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJo" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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) -"bJp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJq" = (/obj/machinery/door/airlock/medical/glass{name = "Recovery Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Surgery"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJw" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJy" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJz" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/camera{c_tag = "Research Division Entrance"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/space_heater,/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/poster/random{pixel_x = 32},/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJN" = (/turf/closed/wall/r_wall,/area/engine/atmos) -"bJO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Toxins Storage"; req_access_txt = "24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/storage) -"bJP" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"bJQ" = (/obj/machinery/atmospherics/components/binary/pump/on,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_x = -24},/turf/open/floor/engine,/area/science/mixing) -"bJR" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 8},/turf/open/floor/engine,/area/science/mixing) -"bJS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/science/mixing) -"bJT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) -"bJV" = (/obj/machinery/mass_driver{id = "toxinsdriver"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 8; name = "Mass Driver Door"; req_access_txt = "7"},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plating,/area/science/mixing) -"bJZ" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bKa" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKc" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKd" = (/obj/machinery/power/apc{dir = 4; name = "Monastery Docking Bay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bKf" = (/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bKh" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced{dir = 1},/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) -"bKi" = (/obj/structure/window/reinforced{dir = 1},/mob/living/simple_animal/chicken{name = "Bloodthirsty Peckins"},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKj" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKl" = (/obj/item/stack/medical/gauze,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bKm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bKn" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/virology) -"bKo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bKp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bKq" = (/obj/effect/spawner/structure/window,/obj/structure/sign/warning/deathsposal,/turf/open/floor/plating,/area/medical/virology) -"bKr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKt" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKu" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bKv" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/structure/mirror{pixel_x = -28},/obj/structure/curtain{layer = 4.5},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKw" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKx" = (/obj/machinery/button/door{id = "patientB"; name = "Privacy Shutters"; pixel_y = 25},/obj/machinery/camera{c_tag = "Patient Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKy" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bKB" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKD" = (/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKF" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKG" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26},/obj/structure/cable,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bKI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/aft) -"bKO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bKP" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bKQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"bKR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"bKS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) -"bKT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bKU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) -"bKY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bLb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "mix_in"; name = "distro out"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLd" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLe" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLf" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/turf/open/floor/engine,/area/science/mixing) -"bLh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/science/mixing) -"bLn" = (/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLp" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLq" = (/obj/machinery/door/airlock/grunge{name = "Monastery Transit"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLr" = (/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,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLt" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bLu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) -"bLv" = (/turf/open/floor/engine,/area/maintenance/department/engine) -"bLx" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/engine,/area/maintenance/department/engine) -"bLy" = (/obj/structure/mineral_door/wood{name = "The Roosterdome"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bLz" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLB" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLC" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/plasma{amount = 2},/obj/item/storage/box/monkeycubes{layer = 3.1},/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical/virology) -"bLE" = (/obj/structure/table/glass,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/item/paper_bin{layer = 2.9},/obj/item/pen/red,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bLF" = (/obj/structure/table,/obj/item/clipboard,/obj/item/pen{layer = 3.1},/obj/item/clothing/neck/stethoscope{layer = 3.2},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLG" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLI" = (/obj/machinery/door/poddoor/shutters/preopen{id = "patientB"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) -"bLJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/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) -"bLK" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bLL" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bLM" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLO" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLQ" = (/obj/structure/table,/obj/item/surgical_drapes,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLR" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLS" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLT" = (/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) -"bLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"bLW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bLX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bLY" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest{pixel_x = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bLZ" = (/obj/machinery/meter/atmos/atmos_waste_loop,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMb" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMc" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Distro"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMe" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bMf" = (/turf/open/floor/plasteel,/area/engine/atmos) -"bMg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMh" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMi" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/engine/atmos) -"bMj" = (/obj/machinery/air_sensor{id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bMk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bMl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMm" = (/obj/machinery/igniter{id = "toxigniter"; luminosity = 2},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/science/mixing) -"bMq" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) -"bMr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"bMs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{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" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/dock) -"bMw" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bMx" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bMy" = (/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/dock) -"bMA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/maintenance/department/engine) -"bMB" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/engine,/area/maintenance/department/engine) -"bMC" = (/obj/item/stack/spacecash/c10,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bMD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bME" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bMF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bMG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bMH" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/syringes,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMJ" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{pixel_x = 32},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMK" = (/obj/item/soap/nanotrasen,/obj/item/clothing/neck/stethoscope,/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/gun/syringe/dart,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMM" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMN" = (/obj/structure/table,/obj/item/hemostat,/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMO" = (/obj/structure/table,/obj/item/surgicaldrill,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMP" = (/obj/structure/table,/obj/item/scalpel{pixel_y = 12},/obj/item/circular_saw,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMQ" = (/obj/structure/table,/obj/item/cautery{pixel_x = 4},/obj/item/razor{pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMR" = (/obj/structure/table,/obj/item/retractor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMU" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Atmospherics"; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) -"bMX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"bMY" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "External to Filter"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bNe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bNf" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) -"bNg" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bNh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bNl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bNm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bNn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bNo" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bNp" = (/turf/open/floor/engine/vacuum,/area/science/mixing) -"bNq" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/turf/open/floor/plating,/area/maintenance/department/science) -"bNr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bNs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bNt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Monastery Dock"; dir = 1; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bNu" = (/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" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light/small,/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},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bNw" = (/turf/closed/wall,/area/chapel/dock) -"bNx" = (/obj/structure/transit_tube/station/reverse{dir = 1},/turf/open/floor/plating,/area/chapel/dock) -"bNy" = (/obj/structure/transit_tube/horizontal,/obj/machinery/camera{c_tag = "Monastery Transit"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating,/area/chapel/dock) -"bNz" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/chapel/dock) -"bNA" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/dock) -"bNB" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bNE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"bNF" = (/obj/item/stack/medical/suture,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bNG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) -"bNH" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/maintenance/department/engine) -"bNI" = (/obj/structure/window/reinforced,/mob/living/simple_animal/chicken{name = "Killer Cluck"},/turf/open/floor/engine,/area/maintenance/department/engine) -"bNJ" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced,/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) -"bNK" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNL" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNM" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNN" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNO" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNP" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNR" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNS" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNT" = (/obj/structure/closet/firecloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bNU" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNV" = (/obj/item/wrench/medical,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNW" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bNX" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bNZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) -"bOf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bOg" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bOi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bOk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bOl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bOm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bOp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bOq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bOr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bOs" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) -"bOt" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) -"bOu" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/mixing) -"bOv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bOw" = (/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bOx" = (/obj/structure/cable{icon_state = "1-2"},/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/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bOy" = (/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{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bOz" = (/obj/structure/chair/comfy/black{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bOA" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bOB" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"bOC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/virology) -"bOD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) -"bOE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/virology) -"bOF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) -"bON" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"bOO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) -"bOR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plating,/area/engine/atmos) -"bOS" = (/obj/effect/turf_decal/vg_decals/atmos/mix,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bOT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall,/area/engine/atmos) -"bOU" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOV" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/turf/open/floor/plasteel,/area/engine/atmos) -"bOX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bPa" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bPe" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bPg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "n2o_out"; name = "n2o out"},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bPh" = (/turf/open/floor/engine/n2o,/area/engine/atmos) -"bPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) -"bPn" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/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/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bPo" = (/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/dock) -"bPp" = (/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPq" = (/obj/item/trash/chips,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPr" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPs" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"bPt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) -"bPv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) -"bPz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPB" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bPC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPD" = (/obj/structure/table,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPE" = (/turf/closed/wall,/area/storage/tech) -"bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Tech Storage Maintenance"; req_access_txt = "23"},/turf/open/floor/plating,/area/storage/tech) -"bPG" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPJ" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPK" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/wrench,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPL" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPM" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPN" = (/obj/machinery/conveyor_switch{id = "atmosdeliver"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bPO" = (/obj/structure/disposalpipe/sorting/mail{sortType = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bPP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPQ" = (/turf/closed/wall,/area/engine/atmos) -"bPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bPS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bPT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPU" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPX" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bPZ" = (/obj/machinery/air_sensor{id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQa" = (/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQc" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQd" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQe" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQf" = (/obj/structure/cable{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" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"bQh" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Staboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bQj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQm" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQo" = (/obj/machinery/camera{c_tag = "Gravity Generator"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQr" = (/turf/closed/wall/r_wall,/area/storage/tech) -"bQs" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/aicard,/obj/item/aiModule/reset,/obj/item/assembly/flash/handheld,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQu" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQv" = (/obj/structure/rack,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQw" = (/obj/structure/rack,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/camera{c_tag = "Tech Storage"},/obj/item/circuitboard/computer/monastery_shuttle,/obj/effect/spawner/lootdrop/techstorage/service,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQy" = (/obj/structure/rack,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/electronics/firealarm,/obj/item/electronics/firelock,/obj/item/electronics/tracker,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQz" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQA" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQB" = (/obj/machinery/power/apc{dir = 8; name = "Aft Hall APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng3"; location = "Eng2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQD" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) -"bQF" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bQH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"bQI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bQJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Ports to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) -"bQK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bQL" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bQM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Unfiltered to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bQO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bQP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bQR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bQS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bQT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQU" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRa" = (/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"bRb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bRd" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRe" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tech) -"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRj" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRm" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bRs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/atmos) -"bRt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRw" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bRx" = (/obj/machinery/computer/atmos_control,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRy" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) -"bRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/atmos) -"bRA" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) -"bRB" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bRC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bRD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bRE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"bRF" = (/obj/structure/girder,/turf/closed/wall,/area/maintenance/department/engine) -"bRG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRH" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tech) -"bRL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/tcomms,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRR" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRT" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRU" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSa" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/conveyor{dir = 4; id = "atmosdeliver"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bSb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/conveyor_switch{id = "atmosdeliver"},/turf/open/floor/plasteel,/area/engine/atmos) -"bSc" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bSd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bSe" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bSh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bSj" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "tox_out"; name = "toxin out"},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSk" = (/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSl" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSm" = (/obj/structure/flora/ausbushes,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bSn" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) -"bSo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bSp" = (/obj/structure/disposalpipe/junction/yjunction{dir = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bSq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bSs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bSt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSu" = (/obj/item/broken_bottle,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSv" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSw" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bSx" = (/obj/structure/closet,/obj/item/restraints/handcuffs/cable,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSy" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bSA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bSB" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bSC" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/storage/tech) -"bSE" = (/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSN" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Engineering"; dir = 1; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSP" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSQ" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bSR" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bSS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bST" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bSU" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bSV" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bSW" = (/obj/machinery/air_sensor{id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSX" = (/obj/effect/turf_decal/vg_decals/atmos/plasma,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSY" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSZ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) -"bTa" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bTb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"bTd" = (/obj/item/stack/sheet/cardboard{amount = 14},/obj/item/vending_refill/cola,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bTf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Virology Waste to Space"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bTg" = (/obj/machinery/atmospherics/components/binary/pump{name = "Virology Waste to Atmospherics"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bTh" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bTi" = (/obj/item/picket_sign,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTj" = (/obj/structure/bonfire,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTk" = (/obj/structure/closet,/obj/item/cigbutt/cigarbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTl" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTm" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTo" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTr" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/gravity_generator) -"bTs" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes{charge = 5e+006},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/gravity_generator) -"bTt" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate/engineering/electrical,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTw" = (/obj/structure/rack,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTx" = (/obj/structure/rack,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTy" = (/obj/structure/rack,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTz" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTA" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/multitool,/obj/machinery/requests_console{department = "Tech storage"; pixel_y = -32},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTB" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable,/obj/structure/closet/crate/solarpanel_small,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/engineering) -"bTD" = (/turf/closed/wall,/area/security/checkpoint/engineering) -"bTE" = (/turf/closed/wall,/area/engine/engineering) -"bTF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/break_room) -"bTH" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bTI" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Entrance"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/engine/atmos) -"bTL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser/disposal,/turf/open/floor/plasteel,/area/engine/atmos) -"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bTN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bTO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/atmos) -"bTP" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bTQ" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bTR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bTS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bTT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bTV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bTW" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bTX" = (/obj/structure/table,/obj/item/storage/box/mousetraps,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUb" = (/obj/structure/grille/broken,/obj/structure/musician/piano,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUc" = (/obj/item/reagent_containers/food/snacks/beans,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUd" = (/obj/structure/closet,/obj/item/shard,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUe" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUf" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) -"bUg" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bUh" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) -"bUi" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/camera{c_tag = "Engineering Security Post"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUj" = (/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/checkpoint/engineering) -"bUk" = (/obj/machinery/computer/secure_data,/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/checkpoint/engineering) -"bUl" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Engineering Foyer APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/break_room) -"bUm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"bUn" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Access"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/break_room) -"bUo" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/break_room) -"bUp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bUr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bUs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"bUt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bUv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bUw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bUy" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bUA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bUC" = (/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bUD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space,/area/space/nearstation) -"bUE" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space,/area/space/nearstation) -"bUF" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUG" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) -"bUI" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUJ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/obj/machinery/computer/security/telescreen/ce{pixel_y = 30},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUK" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/computer/apc_control,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUL" = (/obj/machinery/computer/station_alert,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUM" = (/obj/machinery/computer/card/minor/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/stairs,/area/storage/tech) -"bUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) -"bUP" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall,/area/engine/engine_smes) -"bUQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUR" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUS" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUT" = (/turf/closed/wall,/area/engine/engine_smes) -"bUU" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) -"bUV" = (/obj/structure/table,/obj/item/pen,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUW" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUY" = (/obj/machinery/door/airlock/security/glass{name = "Engineering Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/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,/area/security/checkpoint/engineering) -"bUZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/break_room) -"bVa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/goonplaque,/area/engine/break_room) -"bVb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bVc" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) -"bVd" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bVe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bVf" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bVg" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"bVh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating,/area/engine/atmos) -"bVi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plating,/area/engine/atmos) -"bVj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{name = "incinerator mix pump"},/turf/open/floor/plasteel,/area/engine/atmos) -"bVk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bVl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bVm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating,/area/engine/atmos) -"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"bVo" = (/turf/open/floor/engine/co2,/area/engine/atmos) -"bVp" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bVr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space/nearstation) -"bVs" = (/obj/structure/mopbucket,/obj/item/mop,/turf/open/floor/plating,/area/maintenance/department/engine) -"bVu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"bVv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVw" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVy" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bVz" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/engine) -"bVD" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -10; req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; req_access_txt = "11"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 10; req_access_txt = "24"},/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/paper/monitorkey,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVE" = (/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVG" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVH" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/lighter,/obj/item/stamp/ce,/obj/item/stock_parts/cell/high/plus,/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = 26},/obj/machinery/power/apc{dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-8"},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVL" = (/obj/structure/table,/obj/item/storage/box/smart_metal_foam{pixel_x = 4; pixel_y = 7},/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVM" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVN" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/engineering"; dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"bVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"bVT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) -"bVU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 27; pixel_y = -25},/turf/open/floor/plasteel,/area/engine/break_room) -"bVW" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bVY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bVZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bWb" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"bWe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWf" = (/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWh" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"bWi" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/obj/machinery/camera{c_tag = "Monastery Asteroid Primary Entrance"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bWj" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bWk" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bWl" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bWn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/clothing/glasses/meson/gar,/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) -"bWo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWr" = (/obj/machinery/modular_computer/console/preset/engineering{dir = 8},/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) -"bWt" = (/obj/structure/rack,/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 1},/obj/effect/spawner/lootdrop/techstorage/command,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) -"bWu" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/storage/tech) -"bWv" = (/obj/structure/table,/obj/item/stack/sheet/plasteel/twenty{pixel_x = -3; pixel_y = 3},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWy" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWz" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWA" = (/obj/structure/filingcabinet,/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bWB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bWC" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/structure/closet/secure_closet/security/engine,/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,/area/security/checkpoint/engineering) -"bWD" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"bWE" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bWF" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bWG" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/shower{dir = 8; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/break_room) -"bWH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/engine/break_room) -"bWI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bWJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bWM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bWO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bWP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"bWQ" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bWR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"bWT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"bWV" = (/turf/closed/wall,/area/chapel/main/monastery) -"bWW" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/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/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"bWZ" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bXa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bXd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"bXe" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bXf" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXg" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXi" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "ce_privacy"; name = "Privacy Shutters"; pixel_x = 24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXk" = (/turf/closed/wall/r_wall,/area/engine/engineering) -"bXl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engine_smes"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXm" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"bXr" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/binary/pump{name = "Waste to Space"},/turf/open/floor/plasteel,/area/engine/atmos) -"bXs" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXt" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXu" = (/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXw" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plasteel,/area/engine/atmos) -"bXx" = (/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bXy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bXA" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXB" = (/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXC" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"bXI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bXJ" = (/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bXL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXN" = (/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXS" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bXU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bXV" = (/obj/item/shard{icon_state = "small"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bXY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"bXZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"bYa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bYb" = (/turf/closed/wall,/area/crew_quarters/heads/chief) -"bYc" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYd" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYe" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes) -"bYg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engine_smes) -"bYh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Storage"; req_access_txt = "11"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bYi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engine_smes) -"bYj" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYk" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYl" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYm" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"bYn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"bYp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bYs" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bYt" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal/incinerator) -"bYu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Incinerator"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bYv" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 9},/turf/closed/wall,/area/maintenance/disposal/incinerator) -"bYw" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bYz" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bYA" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"bYB" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"bYF" = (/obj/item/trash/pistachios,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/department/engine) -"bYI" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYK" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Port Fore"},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYT" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"bYU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Starboard Fore"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZa" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZc" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZf" = (/obj/machinery/power/apc{dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZg" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZl" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"bZm" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"bZn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"bZo" = (/turf/open/floor/carpet,/area/chapel/main/monastery) -"bZr" = (/obj/item/trash/tray,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bZs" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/engine) -"bZt" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bZx" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/storage/belt/utility,/obj/item/flashlight,/obj/item/flashlight,/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"bZz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bZF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"bZI" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"bZJ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"bZK" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/atmos) -"bZL" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bZM" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/engine/atmos) -"bZN" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/engine/atmos) -"bZO" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZQ" = (/obj/machinery/computer/turbine_computer{dir = 8; id = "incineratorturbine"},/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = 24; pixel_y = 6},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZR" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airlock_sensor/incinerator_atmos{pixel_y = 22},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"bZT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 8},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = 32; pixel_y = -32},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"bZV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bZY" = (/turf/closed/wall,/area/chapel/office) -"caa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"cab" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"cae" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/engine/engineering) -"caf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"cah" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"caj" = (/obj/structure/table,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cak" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cam" = (/turf/open/floor/plasteel,/area/engine/engineering) -"can" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"caq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"car" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"caw" = (/obj/structure/table,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) -"cax" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"caz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"caA" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) -"caB" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"caC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"caD" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) -"caE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"caF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"caG" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) -"caH" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"caI" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Incinerator"; dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 4; name = "turbine vent monitor"; network = list("turbine"); pixel_x = -29},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{pixel_x = -6; pixel_y = -26},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caQ" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 8; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caR" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/turbine{dir = 4; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caS" = (/turf/closed/wall,/area/chapel/asteroid/monastery) -"caT" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"caV" = (/obj/machinery/holopad,/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"caW" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"caZ" = (/obj/structure/table,/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"cba" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/maintenance/department/engine) -"cbb" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"cbc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cbd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbe" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) -"cbf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cbg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"cbh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cbi" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"cbj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"cbk" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"cbm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"cbo" = (/obj/structure/rack,/obj/item/storage/belt/utility,/obj/item/wrench,/obj/item/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/item/airlock_painter,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"cbp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cbs" = (/turf/open/floor/engine/n2,/area/engine/atmos) -"cbt" = (/obj/effect/turf_decal/vg_decals/atmos/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"cbu" = (/turf/open/floor/engine/o2,/area/engine/atmos) -"cbv" = (/obj/effect/turf_decal/vg_decals/atmos/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"cbw" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) -"cbx" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/vg_decals/atmos/air,/turf/open/floor/engine/air,/area/engine/atmos) -"cby" = (/turf/open/floor/engine/air,/area/engine/atmos) -"cbz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"cbA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Incinerator to Output"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbC" = (/obj/machinery/button/ignition/incinerator/atmos{pixel_x = 26; pixel_y = -6},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cbE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cbF" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cbG" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) -"cbK" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cbM" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"cbN" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cbO" = (/obj/structure/table/wood,/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" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"cbR" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cbS" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"cbT" = (/obj/item/shovel,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/engine) -"cbV" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) -"cbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"cbX" = (/turf/open/floor/plating,/area/engine/engineering) -"cbY" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cca" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ccb" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ccc" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/engineering) -"cci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"ccm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"ccn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"cco" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) -"ccp" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccq" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccr" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Incinerator Output Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccs" = (/obj/structure/lattice,/turf/closed/wall,/area/maintenance/department/cargo) -"ccu" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ccE" = (/obj/structure/cable{icon_state = "1-8"},/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/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ccH" = (/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"ccJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ccM" = (/obj/structure/chair,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ccN" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/gauze,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"ccO" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/department/engine) -"ccQ" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) -"ccR" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps/engineering,/turf/open/floor/plating,/area/engine/engineering) -"ccW" = (/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"ccX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"ccY" = (/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) -"cda" = (/obj/structure/reflector/single/anchored{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdg" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdh" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdj" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdl" = (/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdm" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"cdo" = (/turf/open/floor/carpet,/area/chapel/office) -"cdp" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/carpet/black,/area/chapel/office) -"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main/monastery) -"cdr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cds" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Port Access"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdu" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"cdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdC" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdD" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/kitchen/fork,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"cdE" = (/obj/structure/chair,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/engine) -"cdI" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/open/floor/plasteel,/area/engine/engineering) -"cdL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Engineering Port Aft"; dir = 1; pixel_x = 23},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cdR" = (/obj/machinery/door/airlock/engineering/glass{name = "Laser Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cdT" = (/obj/machinery/power/emitter/anchored{dir = 4; state = 2},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) -"cdW" = (/obj/structure/reflector/box/anchored,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceb" = (/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cec" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"ced" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cee" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"cef" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"ceg" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/office) -"cei" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cej" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cek" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cel" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cen" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ceq" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) -"cer" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Transit Tube"; req_access_txt = "10; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cet" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"ceu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering) -"cey" = (/obj/structure/girder,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"ceB" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) -"ceC" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Crematorium"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceF" = (/obj/structure/filingcabinet,/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},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceK" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceL" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceT" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) -"ceU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching telecomms."; layer = 4; name = "Telecomms Telescreen"; network = list("tcomms"); pixel_y = 28},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceX" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cfa" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cff" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"cfl" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfm" = (/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"cfn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfr" = (/obj/structure/transit_tube_pod,/obj/structure/transit_tube/station/reverse{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"cfs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfu" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/engine/engineering) -"cfC" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cfD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Monastery APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) -"cfI" = (/turf/open/floor/plating,/area/chapel/main/monastery) -"cfJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) -"cfL" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Starboard Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"cfN" = (/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cfO" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"cfP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfQ" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"cfS" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfX" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"cfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Engine"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"cgb" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cgd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cgf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) -"cgg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cgk" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/camera{c_tag = "Monastery Garden"; network = list("ss13","monastery")},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgm" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cgp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"cgr" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/engine/engineering) -"cgs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/engine/engineering) -"cgu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cgv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"cgx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"cgG" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main/monastery) -"cgH" = (/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgI" = (/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgJ" = (/obj/item/cultivator,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgK" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgL" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgM" = (/obj/structure/dresser,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgN" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4},/obj/item/flashlight/lantern,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgO" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cgP" = (/obj/structure/transit_tube,/turf/open/floor/plating/airless,/area/space/nearstation) -"cgQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cgU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cgV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"cgY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"chb" = (/obj/machinery/camera{c_tag = "Monastery Kitchen"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chc" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chd" = (/obj/item/clothing/suit/apron/chef,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chf" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"chi" = (/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chk" = (/obj/structure/sink/puddle,/obj/item/reagent_containers/glass/bucket,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chl" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"chp" = (/obj/machinery/door/airlock{id_tag = "Cell1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chr" = (/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cht" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"chv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"chB" = (/obj/item/seeds/banana,/obj/item/seeds/grass,/obj/item/seeds/grape,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chC" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chD" = (/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"chG" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) -"chK" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/instrument/violin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chL" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chM" = (/obj/structure/bed,/obj/item/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chN" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"chU" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chV" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chW" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 3; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/obj/item/storage/box/ingredients/wildcard{layer = 3.1},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chX" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/flour,/obj/item/kitchen/rollingpin,/obj/item/kitchen/knife,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chY" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chZ" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cib" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cic" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cid" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cif" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/cable_coil/yellow,/turf/open/floor/plating,/area/maintenance/department/engine) -"cig" = (/obj/structure/transit_tube/crossing,/turf/open/floor/plating/airless,/area/space/nearstation) -"cio" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cip" = (/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciq" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cit" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) -"civ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"ciy" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"ciz" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciE" = (/obj/structure/flora/ausbushes/genericbush,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciF" = (/obj/machinery/door/airlock{id_tag = "Cell2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciG" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"ciI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Chamber"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"ciJ" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciK" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciN" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/condiment/saltshaker{layer = 3.1; pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciS" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciT" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/harebell,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciV" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciW" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciX" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciY" = (/obj/structure/bed,/obj/item/bedsheet/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciZ" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cjf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjl" = (/obj/machinery/door/airlock/grunge{name = "Monastery Cemetary"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjm" = (/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"cjo" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjp" = (/turf/closed/wall,/area/library) -"cjq" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjr" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"cju" = (/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) -"cjv" = (/turf/closed/wall,/area/asteroid/nearstation/bomb_site) -"cjw" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) -"cjx" = (/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cjB" = (/obj/docking_port/stationary{dir = 8; dwidth = 11; height = 22; id = "whiteship_home"; name = "monastery"; width = 35},/turf/open/space/basic,/area/space) -"cjC" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) -"cjH" = (/obj/machinery/door/airlock/grunge{name = "Chapel Garden"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjO" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cjP" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) -"cjR" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"cjV" = (/obj/machinery/camera/preset/toxins,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cjZ" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cka" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckb" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ckc" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckd" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cke" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckf" = (/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckg" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckh" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cki" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckk" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/stack/rods/fifty,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library) -"cko" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library) -"ckp" = (/obj/structure/bookcase/random/religion,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckt" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cku" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ckv" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/machinery/door/window/eastleft{dir = 8; name = "Mass Driver"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckw" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cky" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckz" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckA" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckB" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckC" = (/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckD" = (/obj/structure/chair/wood/normal,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"ckG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckH" = (/turf/open/floor/plasteel/dark,/area/library) -"ckI" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckJ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) -"ckK" = (/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) -"ckL" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/asteroid/nearstation/bomb_site) -"ckM" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckN" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckO" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckP" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"ckR" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckS" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/camera{c_tag = "Monastery Library"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckT" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckU" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckV" = (/obj/structure/bookcase/random/reference,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library) -"ckX" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clb" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "mass driver door"},/turf/open/floor/plating,/area/chapel/main/monastery) -"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"cle" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"clf" = (/obj/machinery/light/small{dir = 1},/obj/item/storage/box/lights/bulbs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"clg" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cli" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"clj" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"clk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/libraryscanner,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clm" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cln" = (/obj/structure/bookcase/random/adult,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/dark,/area/library) -"cls" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) -"clv" = (/turf/closed/mineral/iron,/area/asteroid/nearstation/bomb_site) -"clw" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"clA" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/tcommsat/computer) -"clD" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clF" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) -"clG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/computer) -"clH" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"clJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clL" = (/turf/closed/wall,/area/tcommsat/computer) -"clM" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Waste to Space"},/turf/open/floor/plating,/area/tcommsat/computer) -"clN" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) -"clP" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"clQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall,/area/tcommsat/computer) -"clU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/wrench,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"clV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) -"clX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clY" = (/obj/item/beacon,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"clZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cma" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/turf/open/floor/plating,/area/tcommsat/computer) -"cmb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"cmc" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/tcommsat/computer) -"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cmf" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmg" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmh" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmj" = (/obj/machinery/door/airlock/command/glass{name = "Control Room"; req_access_txt = "19; 61"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmk" = (/obj/machinery/power/apc{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Monitoring APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cml" = (/obj/machinery/announcement_system,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmm" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"cmr" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cms" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmt" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port"; dir = 8; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cmu" = (/obj/machinery/status_display/evac{pixel_x = -32},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmv" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"cmx" = (/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmy" = (/obj/machinery/computer/message_monitor{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard"; dir = 4; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cmB" = (/turf/closed/wall/r_wall,/area/tcommsat/server) -"cmF" = (/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"cmG" = (/obj/machinery/blackbox_recorder,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmH" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmK" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmL" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmM" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmN" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmO" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmP" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmQ" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmR" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmU" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmV" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmW" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmY" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmZ" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cna" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnb" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnc" = (/obj/machinery/power/terminal,/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnd" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cne" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnj" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnk" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnl" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnm" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnn" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cno" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnp" = (/obj/machinery/camera/preset/toxins{c_tag = "Bomb Testing Asteroid Aft"; dir = 1},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cnq" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) -"cnr" = (/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) -"cns" = (/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) -"cnt" = (/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) -"cnu" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnv" = (/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) -"cnw" = (/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) -"cnx" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cny" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cnz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cnC" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"cnD" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnG" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAS) -"cnH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnN" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/camera{c_tag = "Brig Equipment Room"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnP" = (/obj/machinery/vending/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnQ" = (/obj/machinery/suit_storage_unit/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnT" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnV" = (/obj/structure/punching_bag,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cod" = (/obj/structure/table,/obj/item/clothing/under/color/grey,/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"coe" = (/obj/machinery/power/apc{dir = 8; name = "Dormitory Maintenance APC"; pixel_x = -24},/obj/structure/cable,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"coi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"coj" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"cok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"col" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"com" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"con" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"cop" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"cor" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"cos" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cou" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"coy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"coz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Primary Hallway Bridge"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/bar) -"coG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"coH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"coJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"coL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) -"coN" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"coV" = (/obj/machinery/vending/cigarette,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"coW" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"cpa" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar) -"cpb" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/goldschlager{pixel_x = -8; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vermouth{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 7; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/kahlua{pixel_x = 9; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/absinthe{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpc" = (/obj/machinery/chem_dispenser/drinks,/obj/structure/table,/obj/machinery/camera{c_tag = "Bar Drinks"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpe" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpg" = (/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = 26; req_access_txt = "28"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cph" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpk" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpl" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpm" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpn" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpo" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpq" = (/obj/machinery/deepfryer,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpt" = (/obj/item/beacon,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpu" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpx" = (/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/button/door{id = "kitchenshutters"; name = "Kitchen Shutters Control"; pixel_x = 5; pixel_y = -24; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpz" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpA" = (/obj/structure/rack,/obj/item/reagent_containers/food/snacks/mint,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/bar) -"cpH" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpI" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpK" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpL" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpM" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpQ" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpT" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpU" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cpY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cpZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqc" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqe" = (/obj/effect/turf_decal/plaque,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Med"; location = "Sci9"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cql" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"cqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqD" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqE" = (/obj/item/kirbyplants{icon_state = "plant-18"; layer = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cqH" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"cqS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/space/nearstation) -"cqU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"cqV" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_engineer,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cqW" = (/obj/structure/chair,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"cqX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"crb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/office) -"cre" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"crg" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crh" = (/obj/machinery/button/crematorium{id = "foo"; pixel_x = 25},/obj/structure/bodycontainer/crematorium{id = "foo"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cri" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/engine/engineering) -"crj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"crm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space,/area/space/nearstation) -"crt" = (/obj/structure/table/wood/fancy,/obj/item/folder,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cru" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crv" = (/turf/open/floor/plasteel/dark,/area/chapel/office) -"crx" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cry" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space,/area/space/nearstation) -"crz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crA" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"crC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crD" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/bodybags,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crH" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Chapel Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crL" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"crM" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"crN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crO" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"crT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crU" = (/obj/machinery/power/apc{dir = 4; name = "Chapel Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crY" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/breadslice/plain,/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 4},/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csd" = (/turf/open/floor/carpet/black,/area/chapel/office) -"cse" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/black,/area/chapel/office) -"csf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csi" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/wine{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_x = -32},/obj/structure/closet,/obj/item/storage/backpack/cultpack,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/suit/chaplain/holidaypriest,/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},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cso" = (/obj/structure/table/wood,/obj/item/nullrod,/turf/open/floor/carpet/black,/area/chapel/office) -"csp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet/black,/area/chapel/office) -"csq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"css" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"csv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csy" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"csB" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/black,/area/chapel/office) -"csC" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/turf/open/floor/carpet/black,/area/chapel/office) -"csE" = (/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) -"csF" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) -"csG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) -"csM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Chapel Office Tunnel"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"csN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Starboard Access"; network = list("ss13","monastery")},/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/main/monastery) -"csY" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/newscaster{pixel_x = -32},/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},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cta" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"ctg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cth" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctu" = (/obj/machinery/light/small,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"ctJ" = (/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctK" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctL" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctM" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Fore"; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctQ" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) -"ctS" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"ctX" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/carpet,/area/chapel/office) -"cuc" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Xenobiology Central"; dir = 1; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"cuk" = (/obj/structure/closet{name = "beekeeping wardrobe"},/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cul" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cum" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cun" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small{dir = 1},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuo" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cup" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small{dir = 1},/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cus" = (/obj/structure/closet{name = "beekeeping supplies"},/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cut" = (/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuu" = (/obj/item/storage/bag/plants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/storage/bag/plants/portaseeder,/obj/item/storage/bag/plants/portaseeder,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuv" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuw" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cux" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/mug/tea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuy" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuA" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuE" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuG" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuH" = (/obj/item/hatchet,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuJ" = (/obj/item/shovel/spade,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Dining Room"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuM" = (/obj/machinery/power/apc{dir = 8; name = "Garden APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuO" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuS" = (/obj/machinery/door/airlock{name = "Kitchen"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuU" = (/obj/machinery/door/airlock{name = "Dining Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuV" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Garden"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuY" = (/obj/machinery/door/airlock{name = "Garden"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuZ" = (/obj/item/wrench,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cvb" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvd" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cve" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvf" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"cvg" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvh" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvi" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvj" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvk" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Monastery Cloister Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvq" = (/obj/machinery/camera{c_tag = "Monastery Secondary Dock"; dir = 8; network = list("ss13","monastery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{dir = 1; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvA" = (/obj/machinery/door/airlock/external{name = "Dock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvB" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvC" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvH" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvI" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Monastery Cloister Aft"; dir = 1; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvJ" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/machinery/camera{c_tag = "Monastery Cemetary"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvS" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvT" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cvV" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvX" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cvY" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cvZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cwa" = (/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cwc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Monastery Maintenance"; req_one_access_txt = "22;24;10;11;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwe" = (/turf/closed/wall/mineral/iron,/area/library/lounge) -"cwg" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cwj" = (/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwl" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/fancy/candle_box,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwn" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwo" = (/obj/machinery/power/apc{dir = 1; name = "Monastery Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwr" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Library Lounge APC"; pixel_x = 24},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cww" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwx" = (/obj/structure/table/wood/fancy,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwy" = (/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/candle,/obj/item/candle{pixel_x = 6; pixel_y = 8},/obj/item/candle{pixel_x = -8; pixel_y = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwz" = (/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwA" = (/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwG" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/massdriver{id = "chapelgun"; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library/lounge) -"cwM" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space,/area/space/nearstation) -"cwO" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwR" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cwS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwU" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"cxe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"cxg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space/basic,/area/space/nearstation) -"cxh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cxk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cxn" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"cxt" = (/obj/effect/turf_decal/box/corners{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"cxz" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/library/lounge) -"cxC" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxD" = (/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/library/lounge) -"cxJ" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/library/lounge) -"cxK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxM" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library/lounge) -"cxX" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Access Tunnel"; dir = 4; network = list("ss13","monastery")},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cym" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/library/lounge) -"cyz" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyA" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/library/lounge) -"cyL" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cyM" = (/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cyP" = (/obj/structure/bookcase/random/nonfiction,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cyQ" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Monastery Archives Fore"; network = list("ss13","monastery")},/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/library) -"cyR" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/library) -"cyS" = (/obj/structure/bookcase/random/religion,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cyT" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) -"cyU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) -"cyY" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cyZ" = (/obj/structure/displaycase/trophy,/turf/open/floor/plasteel/dark,/area/library) -"czl" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/library) -"czo" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/library) -"czp" = (/obj/structure/table/wood,/obj/item/disk/nuclear/fake,/obj/item/barcodescanner,/turf/open/floor/plasteel/dark,/area/library) -"czq" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/library) -"czr" = (/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/library) -"czt" = (/obj/structure/table/wood/fancy,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/library) -"czu" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/library) -"czv" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"czw" = (/obj/machinery/newscaster{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/library) -"czB" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/turf/open/floor/carpet,/area/library) -"czC" = (/obj/structure/table/wood/fancy,/obj/item/flashlight/lantern{icon_state = "lantern-on"; pixel_y = 8},/turf/open/floor/carpet,/area/library) -"czD" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) -"czH" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"czI" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/library) -"czL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/library) -"czM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/library) -"czN" = (/obj/structure/table/wood,/obj/item/storage/bag/books,/turf/open/floor/plasteel/dark,/area/library) -"czO" = (/obj/structure/table/wood,/obj/item/instrument/saxophone,/turf/open/floor/plasteel/dark,/area/library) -"czP" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/coin/gold,/turf/open/floor/plasteel/dark,/area/library) -"czQ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Archives Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"czV" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAg" = (/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},/turf/open/floor/plasteel/dark,/area/library) -"cAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) -"cAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) -"cAr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 2; icon_state = "left"; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAs" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/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},/turf/open/floor/plasteel/dark,/area/library) -"cAt" = (/obj/structure/table/wood,/obj/item/flashlight/lantern{pixel_y = 8},/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},/turf/open/floor/plasteel/dark,/area/library) -"cAu" = (/obj/structure/table/wood,/obj/item/clothing/head/pharaoh,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) -"cAv" = (/obj/structure/table/wood,/obj/item/camera,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/library) -"cAy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window/northright{dir = 2; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAB" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/wood/wings{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/wood/wings{dir = 1},/obj/effect/landmark/start/librarian,/turf/open/floor/plasteel/dark,/area/library) -"cAH" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/library) -"cAK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/library) -"cAM" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cAS" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/plasteel/dark,/area/library) -"cAT" = (/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel/dark,/area/library) -"cAU" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/book/codex_gigas,/obj/machinery/camera{c_tag = "Monastery Archives Aft"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"cAV" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel/dark,/area/library) -"cBi" = (/obj/machinery/flasher/portable,/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/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/armory) -"cBk" = (/obj/machinery/vending/boozeomat/pubby_maint,/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) -"cBl" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBm" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"cBn" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"cBo" = (/obj/structure/table,/obj/item/lighter,/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBp" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBq" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBr" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBs" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBv" = (/obj/item/cigbutt/roach,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBw" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBA" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"cBB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"cBK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"cBL" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) -"cBM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/office) -"cBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) -"cBT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"cBU" = (/turf/closed/wall/r_wall,/area/gateway) -"cCl" = (/turf/closed/wall/r_wall,/area/science/lab) -"cCt" = (/turf/open/floor/plasteel/white,/area/science/lab) -"cCB" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cCF" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCH" = (/obj/effect/turf_decal/bot/left,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCI" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cCP" = (/obj/effect/turf_decal/bot/right,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/chapel/monastery) -"cCS" = (/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel/dark,/area/security/main) -"cCT" = (/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel,/area/quartermaster/storage) -"cCU" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/tcomms{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) -"cCV" = (/obj/machinery/rnd/production/protolathe/department/engineering,/turf/open/floor/plasteel,/area/engine/engineering) -"cCW" = (/obj/machinery/vending/games,/turf/open/floor/plasteel/dark,/area/library) -"cCX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cCY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cCZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cDa" = (/turf/closed/wall,/area/quartermaster/warehouse) -"cDB" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"cFB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) -"cHS" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"cJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"cKA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"cKV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cLw" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) -"cOp" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel,/area/science/xenobiology) -"cPy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/structure/sign/warning/nosmoking{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cPO" = (/obj/item/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"cPT" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/window/reinforced,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cSJ" = (/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2; pixel_y = 9},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5; pixel_y = 9},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6; pixel_y = 2},/obj/item/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 4; name = "Treatment Center APC"; pixel_x = 24},/obj/structure/cable,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cSK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 8; freq = 1400; location = "Research Division"},/turf/open/floor/plasteel/dark,/area/science/lab) -"cXW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"cZt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"daY" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"dbi" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"dci" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"dcL" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"deJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/gps/mining{gpstag = "MINE_PUB"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"dgg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"dgj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"dgz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dgI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"dhz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"dir" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dkR" = (/obj/effect/turf_decal/box/corners{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"dmP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/science) -"dmT" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/science/xenobiology) -"dnS" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"doo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"dpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"dpb" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) -"dpc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"dps" = (/obj/machinery/status_display/ai,/turf/closed/wall,/area/quartermaster/qm) -"dqw" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"dqG" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"dqY" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"dse" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"dsv" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plating,/area/maintenance/department/cargo) -"dsz" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"dtm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"duF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = 1; pixel_y = 5},/obj/item/reagent_containers/glass/beaker{pixel_x = -2},/obj/item/reagent_containers/glass/beaker{pixel_x = 2; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/lab) -"duQ" = (/obj/machinery/camera{c_tag = "Departure Lounge Aft"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"dxc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dye" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/structure/sign/departments/science{pixel_y = 32},/obj/item/kitchen/knife,/turf/open/floor/plating,/area/maintenance/department/engine) -"dym" = (/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"dAF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/science/mixing) -"dAG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"dEy" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/reflector/double/anchored{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"dFJ" = (/turf/open/floor/engine,/area/engine/supermatter) -"dHr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"dHZ" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/machinery/button/door{id = "chemistry_shutters"; name = "Shutters Control"; pixel_x = 26; pixel_y = 4; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"dJk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) -"dJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Pit"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) -"dKs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"dLY" = (/obj/structure/table,/obj/item/assembly/igniter,/turf/open/floor/plating,/area/maintenance/department/cargo) -"dMB" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) -"dMG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"dMI" = (/obj/item/clothing/suit/apron/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"dMO" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"dNr" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) -"dSp" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{dir = 1},/turf/open/floor/plating/airless,/area/engine/engineering) -"dSr" = (/obj/item/chair,/turf/open/floor/wood,/area/maintenance/department/engine) -"dTV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"dVI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"dVJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"dWk" = (/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"dWp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"dYe" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/security/prison) -"dZj" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/airalarm/engine{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"eaw" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ebD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) -"edl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) -"edJ" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"eex" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/office) -"eeQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office) -"efu" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/dark,/area/science/explab) -"efU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"egK" = (/obj/structure/girder,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"ehM" = (/obj/effect/decal/remains/human,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"eiV" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ekU" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"elk" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/lawoffice) -"epj" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"epJ" = (/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"epV" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) -"eqD" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) -"eta" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"euQ" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"eyj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"ezF" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ezJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"eAp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"eAH" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"eAZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"eCw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"eCK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"eDC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"eEp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"eFj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"eFG" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 8; pixel_x = -32; pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) -"eHI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"eIL" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"eLt" = (/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"eMC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"eNc" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"eNq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"eNF" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) -"eOZ" = (/obj/structure/closet,/obj/item/clothing/suit/judgerobe,/obj/item/gavelblock,/obj/item/gavelhammer,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ePU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) -"eQN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"eQR" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/turf/open/floor/engine,/area/science/xenobiology) -"eQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"eRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"eSB" = (/obj/machinery/computer/cryopod{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/security/prison) -"eSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"eVy" = (/obj/effect/turf_decal/arrows{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"eWi" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) -"eXo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/engine,/area/science/explab) -"eYr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"eZA" = (/obj/item/stack/cable_coil/cut/random,/turf/open/floor/plating,/area/maintenance/department/cargo) -"fdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"fdS" = (/obj/machinery/door/window/southleft{dir = 4; name = "Engineering Delivery"; req_access_txt = "10"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Engineering"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"fef" = (/obj/machinery/door/airlock/maintenance{name = "Menagerie"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"ffJ" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"fgS" = (/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},/mob/living/simple_animal/opossum/poppy,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"fhM" = (/obj/item/storage/secure/safe{pixel_x = -22},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"fjs" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"fjD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) -"fkH" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light,/obj/machinery/camera{c_tag = "Experimentation Lab Testing Zone"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/explab) -"fmh" = (/turf/open/floor/wood,/area/maintenance/department/engine) -"fmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"fmU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"fon" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) -"fow" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"fpT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"frj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) -"ftp" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"ftW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"fuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/wood,/area/lawoffice) -"fvb" = (/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/maintenance/department/engine) -"fwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"fwl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"fwr" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"fwI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"fxC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"fym" = (/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"fyF" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"fyO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter) -"fzu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/gloves/color/black,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"fAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"fBt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"fBz" = (/obj/effect/turf_decal/loading_area{dir = 4},/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/science/mixing) -"fBZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) -"fFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"fIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"fIN" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"fIT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main/monastery) -"fKj" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Mineral Room"},/turf/open/floor/plating,/area/maintenance/department/science) -"fLG" = (/obj/effect/decal/remains/xeno,/turf/open/floor/plating,/area/maintenance/department/engine) -"fNv" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"fQf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"fRr" = (/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"fRs" = (/turf/closed/wall,/area/crew_quarters/heads/hor) -"fTY" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"fUA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"fWv" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library/lounge) -"fZK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"gam" = (/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"gdJ" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"gdL" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"geU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"gfi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"ggg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"giI" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/office) -"giO" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gjp" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"gjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gjv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Space Loop In"},/turf/open/floor/plating,/area/maintenance/department/science) -"gjN" = (/obj/item/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gkR" = (/obj/item/kirbyplants/random,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"gkS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"gkX" = (/obj/machinery/door/airlock/maintenance{name = "Storage"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"glf" = (/obj/structure/closet/emcloset,/obj/structure/sign/poster/official/random{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"gmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/science) -"gmO" = (/obj/structure/chair{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/exit/departure_lounge) -"gmZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"gna" = (/turf/open/floor/plasteel/stairs/medium,/area/maintenance/department/crew_quarters/dorms) -"gnq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/engineering) -"gpC" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"gpI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"gue" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gvf" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"gwn" = (/obj/structure/sign/warning{pixel_y = 32},/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gxe" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/structure/light_construct/small{dir = 8},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"gxq" = (/obj/structure/chair{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"gxK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"gAG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/lawoffice) -"gBb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"gDR" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"gDZ" = (/obj/effect/turf_decal/box/corners{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"gEo" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"gFo" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters_2"; name = "Shutters Control Button"; pixel_x = -28; pixel_y = -7; req_access_txt = "47"},/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/item/wrench,/obj/item/crowbar,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/dark,/area/science/lab) -"gGy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gGA" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"gHZ" = (/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/maintenance/department/engine) -"gIC" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) -"gIG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"gKz" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"gKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gLF" = (/obj/machinery/vending/snack/random,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"gMm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/mixing) -"gMO" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating,/area/maintenance/department/engine) -"gNv" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) -"gNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"gPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice) -"gQf" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"gQo" = (/obj/machinery/vending/wardrobe/det_wardrobe,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"gSH" = (/turf/closed/wall,/area/lawoffice) -"gSI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"gUb" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"gVc" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) -"gXg" = (/obj/item/extinguisher,/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/science) -"gXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"gYo" = (/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) -"haA" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"hbl" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/space) -"heC" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Science Maintenance APC"; pixel_x = -25},/obj/structure/cable,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"hfZ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"hgD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/science) -"hiw" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hiY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci4"; location = "Sci3"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"hjk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"hjD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"hka" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/camera{c_tag = "Atmospherics Console"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"hkQ" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"hnu" = (/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_x = 34; pixel_y = -1; req_access_txt = "38"},/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) -"hon" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Filter"},/turf/open/floor/engine,/area/engine/engineering) -"hoS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/engine,/area/engine/engineering) -"hqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"hvW" = (/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"hwd" = (/obj/machinery/camera{c_tag = "Departure Lounge Port"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"hwj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/security/execution/transfer) -"hxn" = (/obj/structure/chair,/obj/item/clothing/glasses/regular,/turf/open/floor/plating,/area/maintenance/department/science) -"hxI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"hyh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"hzc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/wrench,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"hzd" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) -"hDG" = (/obj/machinery/door/airlock/engineering{name = "Auxillary Base Construction"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"hEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"hFp" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"hFy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"hGB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hHr" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"hKp" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"hMx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"hOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hOz" = (/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/cargo) -"hPN" = (/obj/structure/table/glass,/obj/item/clothing/glasses/science,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"hPU" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/surgical_drapes,/obj/item/clothing/mask/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"hQz" = (/obj/structure/closet/emcloset/anchored,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"hQC" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"hSt" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Cooling Loop"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hSC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hSM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"hTl" = (/obj/structure/sink{dir = 4; pixel_x = 12},/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/department/science) -"hUt" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"hUw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering) -"hUJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"hVx" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"hXt" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/science) -"hXK" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"hYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/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/dark,/area/chapel/office) -"hZB" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"iab" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"ick" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/library) -"iej" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"igB" = (/obj/machinery/camera{c_tag = "Turbine Chamber"; network = list("turbine")},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"igE" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"ihj" = (/obj/item/clothing/suit/toggle/labcoat/science,/turf/open/floor/plating,/area/maintenance/department/engine) -"ihk" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"ijF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library) -"ijU" = (/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"ikB" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plating,/area/maintenance/department/science) -"ikO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"ilD" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"ilE" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"imE" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ioj" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light{light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"iop" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ioF" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"iqc" = (/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) -"irM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"itl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"iuM" = (/obj/machinery/door/window/southleft{dir = 8; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ivO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/bot/secbot{arrest_type = 1; health = 45; icon_state = "secbot1"; idcheck = 1; name = "Sergeant-at-Armsky"; weaponscheck = 1},/turf/open/floor/plasteel/dark,/area/security/armory) -"iwe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"iyg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"iyJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"izB" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) -"izF" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"iAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"iBJ" = (/obj/machinery/camera{c_tag = "Telecomms External Fore"; dir = 1; network = list("tcomms"); start_active = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"iCe" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plating,/area/maintenance/department/cargo) -"iCs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"iCV" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/security/execution/transfer) -"iEQ" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/engine) -"iEU" = (/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"iFI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/engine/engineering) -"iGJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"iJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"iKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) -"iLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"iLl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"iLR" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"iPj" = (/obj/machinery/igniter{id = "xenoigniter"; luminosity = 2},/turf/open/floor/engine,/area/science/xenobiology) -"iPz" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Test Lab"; dir = 4; network = list("xeno","rd")},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"iPH" = (/obj/machinery/vr_sleeper{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"iPO" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"iPU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) -"iSz" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"iTF" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/engine/supermatter) -"iVJ" = (/obj/effect/spawner/lootdrop/organ_spawner,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"iWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"iXx" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"jcT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"jen" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"jeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"jgr" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) -"jhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jhD" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"jjC" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/open/floor/wood,/area/lawoffice) -"jrG" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4; name = "emergency shower"},/turf/open/floor/plasteel,/area/engine/engineering) -"jsf" = (/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jsj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"jsD" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) -"jtf" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"juw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"jvi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"jwe" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"jxl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"jxK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"jzz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/entry) -"jzE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"jAy" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"jBh" = (/obj/structure/rack,/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating,/area/maintenance/department/cargo) -"jBn" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"jCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"jDA" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"jEX" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) -"jFw" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"jFO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"jHP" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{pixel_x = 6; pixel_y = 10},/obj/item/reagent_containers/food/drinks/bottle/tequila{pixel_x = -6; pixel_y = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"jOB" = (/turf/open/floor/plating,/area/storage/emergency/starboard) -"jPf" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/kitchen/knife,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"jQh" = (/obj/item/stack/sheet/animalhide/xeno,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"jRG" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"jSa" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/chapel/main/monastery) -"jTh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jTu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/carpet,/area/lawoffice) -"jTU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"jUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"jXh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"jXA" = (/obj/structure/table,/obj/item/stack/ore/iron,/turf/open/floor/plating,/area/maintenance/department/science) -"jXF" = (/obj/machinery/cryopod{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison) -"jXV" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"jYe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"jYh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Supply to Virology"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"jZG" = (/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) -"kas" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"kaR" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"kfh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/mixing) -"kfM" = (/obj/structure/closet,/obj/machinery/light/small,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/office) -"kgR" = (/obj/structure/toilet/secret/low_loot{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"khk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"kjK" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"kkk" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"kkQ" = (/obj/machinery/vending/cola/pwr_game,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"klb" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/sorting) -"klo" = (/obj/structure/dresser,/obj/structure/mirror{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/department/engine) -"klB" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"klV" = (/obj/item/clothing/under/rank/civilian/clown/sexy,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"kmd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"kmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"koz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"kpK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"krU" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"ksf" = (/obj/item/stack/tile/carpet,/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/engine) -"kvj" = (/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"kwm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"kxj" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/lawoffice) -"kxs" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kyv" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"kAa" = (/obj/structure/chair{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"kDf" = (/obj/machinery/light/small,/turf/open/floor/carpet/black,/area/chapel/office) -"kDJ" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/engineering) -"kDY" = (/obj/item/shard{icon_state = "small"},/turf/open/floor/wood,/area/maintenance/department/engine) -"kEM" = (/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"kEW" = (/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) -"kFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/tcommsat/computer) -"kFu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"kFx" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kFD" = (/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/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) -"kGe" = (/obj/structure/transit_tube/horizontal,/obj/structure/sign/departments/holy{pixel_x = -32},/turf/open/floor/plating,/area/hallway/secondary/entry) -"kIo" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"kIO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"kJo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kJw" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range Target"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"kKI" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) -"kNf" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #4"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"kPi" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"kQy" = (/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/white,/area/medical/sleeper) -"kQZ" = (/obj/structure/closet,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kRq" = (/turf/open/floor/plasteel,/area/maintenance/department/engine) -"kRK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/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) -"kSb" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space) -"kSF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"kSO" = (/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/turf/open/floor/plating,/area/storage/emergency/port) -"kTj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"kTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"kWQ" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"kXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"kYM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"lcU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lcZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) -"ldQ" = (/obj/structure/floodlight_frame,/turf/open/floor/plating,/area/maintenance/department/science) -"lem" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_y = 25},/obj/machinery/igniter{id = "secigniter"},/turf/open/floor/plating,/area/security/execution/transfer) -"lfx" = (/obj/structure/table,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"lhA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"liR" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"lje" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"lms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/department/engine) -"lnn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"lnr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"loz" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"loL" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4; filter_type = "n2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"lqc" = (/obj/item/toy/gun,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lqy" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"lrM" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"lxI" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/chapel/monastery) -"lzJ" = (/obj/structure/closet/crate/bin,/turf/open/floor/carpet,/area/chapel/office) -"lAf" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"lAs" = (/turf/closed/wall,/area/quartermaster/sorting) -"lAR" = (/obj/effect/turf_decal/stripes/line{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/explab) -"lBP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"lEn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"lFh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"lGp" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/dark,/area/security/prison) -"lGv" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"lGS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"lHc" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lHX" = (/obj/structure/bed,/obj/item/bedsheet/orange,/turf/open/floor/plating,/area/maintenance/department/engine) -"lIr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"lJr" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/science) -"lJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"lKL" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) -"lMU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lNW" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/science) -"lQn" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"lQQ" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/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},/turf/open/floor/plasteel/dark,/area/bridge) -"lQX" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"lTC" = (/obj/item/shard,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"lUO" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/supermatter) -"lWy" = (/turf/open/floor/plating,/area/maintenance/department/science) -"lWH" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel,/area/science/xenobiology) -"lWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"lXb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Mix"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"lXc" = (/obj/structure/table,/obj/item/clothing/head/beret,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lXJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"mau" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) -"maW" = (/obj/structure/table/glass,/obj/item/weldingtool/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"mbe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"mci" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) -"mdL" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"meF" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall,/area/engine/supermatter) -"mfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"mgz" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"mhl" = (/obj/machinery/power/emitter,/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/engine/engineering) -"mhn" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/random{pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"mhK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/space/basic,/area/space/nearstation) -"miw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"mjn" = (/obj/machinery/jukebox,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"mjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering) -"mlr" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"mmv" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mnG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"mpd" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"mpy" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/blue,/turf/open/floor/wood,/area/lawoffice) -"mql" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"mqp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"msX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"mtu" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/light/small{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) -"mtI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Xenobiology APC"; pixel_x = -25},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"mvm" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Starboard Solar APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"mwg" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox,/obj/item/gun/ballistic/shotgun/toy,/obj/item/gun/ballistic/shotgun/toy,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"mwG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"mxy" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/tcommsat/computer) -"myu" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"mzl" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating,/area/security/execution/transfer) -"mzE" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) -"mzU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"mCe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"mDW" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"mEu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mES" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Surgical Room"},/turf/open/floor/plating,/area/maintenance/department/science) -"mHy" = (/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/wood,/area/maintenance/department/engine) -"mIa" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"mJp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"mKc" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library/lounge) -"mKk" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"mLB" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) -"mMz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"mQm" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"mSc" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/science) -"mTS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"mVM" = (/turf/open/floor/plating/airless,/area/space/nearstation) -"mXq" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice) -"mZE" = (/turf/open/space/basic,/area/space/nearstation) -"naq" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"naS" = (/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"nbu" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/space) -"ncm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"ndI" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"nev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"new" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"nfi" = (/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"nfz" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nge" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"ngp" = (/obj/item/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"nih" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"niy" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie,/obj/machinery/airalarm{pixel_y = 22},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"nku" = (/obj/machinery/door/airlock/centcom{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"nnh" = (/obj/structure/chair{dir = 8},/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"noC" = (/obj/machinery/vending/kink,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"noM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"npE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nqu" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"nqV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nsy" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/power/apc{areastring = "/area/construction/mining/aux_base"; dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"nsD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) -"nsJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ntj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"nuv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nxT" = (/obj/machinery/smartfridge/extract/preloaded,/turf/open/floor/plasteel,/area/science/xenobiology) -"nyB" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) -"nyO" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"nzD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/science) -"nAs" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"nAY" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"nBw" = (/obj/machinery/computer/crew{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"nBL" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"nDo" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/engine) -"nDx" = (/obj/machinery/vending/coffee,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"nEb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"nGi" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"nIm" = (/obj/machinery/computer/security/telescreen{dir = 8; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) -"nIU" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"nJI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/turf/open/floor/engine,/area/science/explab) -"nKo" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"nLl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"nMG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/camera/motion{c_tag = "Telecomms Monitoring"; network = list("tcomms")},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"nNJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"nNN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) -"nOY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nPA" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"nQc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"nRM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"nSj" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) -"nTr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"nUQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"nVU" = (/obj/item/spear,/turf/open/floor/plating,/area/maintenance/department/engine) -"nWP" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/engine) -"nYb" = (/obj/structure/table_frame/wood,/turf/open/floor/wood,/area/maintenance/department/engine) -"nYn" = (/obj/structure/sign/warning/docking,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"nZw" = (/obj/machinery/door/airlock/abandoned{name = "Backup Laboratory"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"obj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"obP" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plating,/area/maintenance/department/science) -"odM" = (/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"oep" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ofN" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ofX" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ohR" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/engine) -"olc" = (/obj/machinery/door/airlock/maintenance{name = "Bedroom"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"onX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) -"ooh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/wrench/medical,/turf/open/floor/engine,/area/medical/chemistry) -"opz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"ore" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/engine/engineering) -"ost" = (/obj/structure/table/glass,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/stripes/corner,/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) -"ous" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_y = -24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) -"ouv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"ovB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"ovM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Port Fore"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"owS" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"oxw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"oyF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary) -"ozO" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"oAw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/engine/engineering) -"oAW" = (/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"oBb" = (/obj/structure/sign/warning/biohazard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) -"oCn" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet,/area/lawoffice) -"oCX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"oDP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"oEA" = (/turf/closed/wall,/area/construction/mining/aux_base) -"oEG" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/item/shard{icon_state = "medium"},/obj/item/circuitboard/computer/operating,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"oEW" = (/obj/machinery/button/door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/button/ignition{id = "xenoigniter"; pixel_y = 7},/turf/open/floor/plasteel,/area/science/xenobiology) -"oFf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"oFo" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/emergency/starboard) -"oFI" = (/obj/structure/closet,/obj/effect/decal/cleanable/blood/old,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"oGw" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal/incinerator) -"oHa" = (/obj/machinery/power/emitter/anchored{dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) -"oKa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"oKv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) -"oKJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"oLR" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) -"oMN" = (/turf/open/floor/plasteel/stairs/left,/area/maintenance/department/crew_quarters/dorms) -"oNE" = (/obj/structure/chair/office/light,/obj/structure/sign/warning/deathsposal{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"oPx" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"oPy" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock) -"oQm" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "commonmining_home"; name = "SS13: Common Mining Dock"; roundstart_template = /datum/map_template/shuttle/mining_common/meta; width = 7},/turf/open/space/basic,/area/space) -"oRX" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) -"oSc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"oSL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"oTl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"oTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"oTC" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"oUa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"oWu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"oWw" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"oXe" = (/obj/structure/table/glass,/obj/item/mmi,/obj/item/clothing/mask/balaclava,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"oXq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Cooling Loop Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"oYj" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"oZW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"paU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating/airless,/area/engine/engineering) -"pbm" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/chapel/dock) -"pbI" = (/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/explab) -"pbR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"pdq" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"pdW" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/explab) -"peE" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) -"pfz" = (/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/security/execution/transfer) -"pfB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"pfP" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/machinery/camera{c_tag = "Xenobiology Computers"; dir = 4; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/xenobiology) -"pgH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"phJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"phS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"pia" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/rack,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"pjH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"pkM" = (/obj/machinery/door/airlock/external{req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/office) -"plA" = (/obj/structure/musician/piano,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"pmB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"pnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"poP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"pps" = (/turf/closed/wall,/area/engine/break_room) -"ppQ" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"pqP" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) -"prQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/engine/supermatter) -"psd" = (/obj/machinery/atmospherics/components/binary/pump{name = "Gas to Filter"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"puw" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter) -"pvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"pwj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"pwS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"pxD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) -"pzF" = (/mob/living/simple_animal/opossum,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"pBD" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) -"pBJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"pCo" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"pDP" = (/obj/machinery/vending/assist,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"pEH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"pEL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/lawoffice) -"pFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"pFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"pGe" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"pHo" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"pKd" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) -"pMG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"pNy" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Toxins Launch Area"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"pOr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"pQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"pVD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) -"pWm" = (/obj/machinery/door/window/southleft{dir = 4; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"pWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) -"pWT" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"pXc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/library) -"pXg" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/extinguisher,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"pXT" = (/obj/item/kirbyplants,/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 8; name = "Law Office APC"; pixel_x = -24},/obj/structure/cable,/turf/open/floor/wood,/area/lawoffice) -"pYh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/engine/engineering) -"pYw" = (/obj/item/kirbyplants{icon_state = "plant-03"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/dark,/area/science/lab) -"pYC" = (/obj/structure/sign/warning{pixel_y = -32},/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"qar" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"qbp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"qbZ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/storage/emergency/starboard) -"qcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qcH" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qdi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Containment Pen Access"; req_access_txt = "55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"qdj" = (/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"qeY" = (/turf/closed/wall/r_wall,/area/engine/supermatter) -"qhE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"qjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"qkM" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) -"qni" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/surgery) -"qnT" = (/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/department/science) -"qpd" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"qpS" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"qtA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"qtF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qtO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"qxq" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Air Out"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"qyF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"qAM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/cargo) -"qBv" = (/obj/item/clothing/head/ushanka,/turf/open/floor/plating,/area/maintenance/department/engine) -"qDJ" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/debugger,/obj/structure/sign/warning/securearea{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"qEN" = (/obj/machinery/rnd/production/techfab/department/service,/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/crew_quarters/bar) -"qFu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"qGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"qGZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"qHI" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"qIC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"qIO" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/science) -"qLI" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"qMi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/turf/open/floor/plating,/area/security/execution/transfer) -"qOE" = (/turf/open/floor/plasteel/dark,/area/library/lounge) -"qOH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"qPB" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"qRl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"qRm" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) -"qTV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"qUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"qVk" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/space/basic,/area/maintenance/disposal/incinerator) -"qVP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qWo" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel/monastery) -"qWG" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/engine/engineering) -"qWM" = (/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"qXq" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"qXH" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"qYi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"qYq" = (/obj/structure/cable{icon_state = "2-4"},/obj/item/wrench,/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/dark,/area/science/xenobiology) -"qYS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"rar" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"rdB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"reH" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/maintenance/department/engine) -"reV" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/engine) -"rgn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"rgs" = (/obj/structure/table,/obj/item/instrument/eguitar,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"rhr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) -"riF" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"riW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"rjF" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"rmC" = (/turf/open/space/basic,/area/space/station_ruins) -"rnr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating/airless,/area/space/nearstation) -"rnE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"roc" = (/obj/structure/cable,/turf/open/floor/plating/airless,/area/space/nearstation) -"ros" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"rrb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"rrU" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"rse" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"rsZ" = (/obj/machinery/camera/motion{c_tag = "Telecomms External Access"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"rui" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/science) -"rvH" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; dir = 4; freq = 1400; location = "Medbay"},/obj/machinery/door/window/southleft{dir = 4; name = "Medbay Delivery"; req_access_txt = "28"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"rxa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"rxQ" = (/obj/machinery/door/airlock/abandoned{id_tag = "PottySci"; name = "Science Bathroom"},/turf/open/floor/plating,/area/maintenance/department/science) -"rxV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"rzp" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"rzF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"rBh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"rEh" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs/cable/zipties,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/department/science) -"rFq" = (/obj/structure/chair,/obj/item/reagent_containers/food/snacks/donkpocket,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"rHA" = (/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"rJg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"rJZ" = (/obj/docking_port/stationary{area_type = /area/construction/mining/aux_base; dheight = 4; dwidth = 4; height = 9; id = "aux_base_zone"; name = "aux base zone"; roundstart_template = /datum/map_template/shuttle/aux_base/small; width = 9},/turf/open/floor/plating,/area/construction/mining/aux_base) -"rKr" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) -"rKL" = (/obj/item/trash/cheesie,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"rLi" = (/obj/machinery/button/door{id = "shootshut"; name = "shutters control"; pixel_x = 28},/obj/item/ammo_casing/shotgun/improvised,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"rMV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"rNi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/open/floor/plasteel,/area/engine/atmos) -"rNB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/science) -"rPg" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"rPW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/mixing) -"rSH" = (/obj/item/trash/can,/turf/open/floor/wood,/area/maintenance/department/engine) -"rTd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"rWE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"rXT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"rYC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"sbk" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"sbY" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/lawoffice) -"sci" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/science) -"scp" = (/obj/machinery/door/airlock/maintenance{name = "Auxillary Base Maintenance"; req_access_txt = "12"; req_one_access_txt = "32;47;48"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/mining/aux_base) -"scz" = (/obj/machinery/power/apc/highcap/fifteen_k{dir = 8; name = "Engineering APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"sdk" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory External"; dir = 1},/turf/open/space,/area/space/nearstation) -"sgc" = (/obj/machinery/vending/cigarette,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"shH" = (/turf/closed/wall/r_wall,/area/space/nearstation) -"sij" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"sjC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/engine/engineering) -"skw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) -"slJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"smv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Cooling Loop to Gas"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"spz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"sqh" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = 32},/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"sqQ" = (/turf/open/floor/plating,/area/maintenance/disposal) -"srZ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) -"ssx" = (/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/engine) -"stQ" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/departments/science{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"sut" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"svA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) -"svN" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"swg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"sww" = (/obj/effect/decal/cleanable/blood/old,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"syn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) -"syQ" = (/obj/machinery/vending/games,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"szG" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) -"sAK" = (/obj/item/clothing/mask/gas/plaguedoctor,/turf/open/floor/plating,/area/maintenance/department/science) -"sBA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"sEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/science) -"sEN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"sGr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"sIK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/flashlight,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"sJp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/execution/transfer) -"sJr" = (/turf/open/floor/wood,/area/lawoffice) -"sKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"sNz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"sOC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/execution/transfer) -"sQt" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) -"sUP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"sWj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"sWW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) -"sXi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/deathsposal{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/department/engine) -"sXR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) -"sYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"sZh" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/disposal) -"sZu" = (/obj/item/storage/backpack/satchel/explorer,/turf/open/floor/plating,/area/maintenance/department/science) -"tan" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"tap" = (/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"taA" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"taT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4; name = "euthanization chamber freezer"},/turf/open/floor/plasteel,/area/science/xenobiology) -"tcY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"tdp" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/hand_labeler,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/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/explab) -"tdB" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"tdL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"tfw" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"tfx" = (/obj/machinery/atmospherics/components/binary/valve{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) -"tfP" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) -"tfZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) -"thA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"thW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"tim" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/science/explab) -"tix" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"tkL" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"tlc" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"tlp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"tlw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"tlN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"tlV" = (/obj/structure/reflector/single/anchored{dir = 6},/turf/open/floor/plating,/area/engine/engineering) -"tnP" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"tnY" = (/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = -26; req_one_access_txt = "32;47;48"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"tpb" = (/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"tqO" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"tqX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"ttS" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/mob/living/simple_animal/pet/bumbles,/turf/open/floor/plasteel,/area/hydroponics) -"tue" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"tuy" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 8; network = list("xeno","rd")},/obj/machinery/light{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"tvj" = (/obj/structure/festivus{anchored = 1; desc = "A pole for dancing."; name = "pole"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"tvP" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"twv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"typ" = (/obj/structure/table/glass,/obj/item/hemostat,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"tyL" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"tzH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) -"tAK" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/explab) -"tCP" = (/obj/docking_port/stationary/public_mining_dock,/turf/open/floor/plating,/area/construction/mining/aux_base) -"tDn" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/cargo) -"tHk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/central) -"tIS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"tJr" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plasteel,/area/science/lab) -"tLP" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/warehouse) -"tOD" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"tRc" = (/obj/structure/ore_box,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"tSL" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"tTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"tTZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"tXn" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/corner{dir = 8},/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/xenobiology) -"uaC" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"uaE" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"uaO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"uaP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ubW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/science/mixing) -"udl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"uek" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/science) -"ueP" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"ueV" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"ueX" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) -"ufa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ugC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"uiP" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/wood,/area/maintenance/department/engine) -"ujI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ukn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) -"ukp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Gas"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ulu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/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/storage/primary) -"ulY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"ume" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"uoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) -"uos" = (/obj/machinery/computer/camera_advanced/base_construction,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"uoS" = (/turf/open/floor/plating,/area/construction/mining/aux_base) -"upc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"uqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) -"urP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/explab) -"utg" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"uug" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"uun" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"uuS" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/lawoffice) -"uvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"uvq" = (/obj/structure/table,/obj/item/dice/d20,/turf/open/floor/plating,/area/maintenance/department/science) -"uwb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"uwX" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/maintenance/department/engine) -"uxP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair{dir = 8; name = "Defense"},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"uzh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/engine,/area/engine/supermatter) -"uzn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"uAU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/lawoffice) -"uAZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Experimentation Lab Mixing Area"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) -"uCS" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"uHG" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"uIn" = (/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"uIB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"uLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"uMe" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"uMo" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel,/area/engine/engineering) -"uMt" = (/obj/effect/turf_decal/plaque,/turf/open/floor/plating,/area/maintenance/department/engine) -"uQR" = (/obj/item/ammo_casing/shotgun/beanbag,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"uRk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"uUQ" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"uVf" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/fountain,/obj/item/stamp/law,/turf/open/floor/carpet,/area/lawoffice) -"uXG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"uXH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"uZb" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"vay" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"vco" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"veF" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space) -"veM" = (/obj/machinery/suit_storage_unit/rd,/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"vgp" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"vhk" = (/obj/structure/chair,/turf/open/floor/carpet,/area/lawoffice) -"vjd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vli" = (/obj/structure/table,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"vlC" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vlF" = (/obj/item/coin/silver,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"vmG" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/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},/turf/open/floor/plasteel/dark,/area/science/explab) -"vmY" = (/obj/structure/sign/warning/deathsposal{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"voh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"vsk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"vsw" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 8; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"vsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"vtl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"vtT" = (/turf/open/floor/plating,/area/maintenance/solars/port) -"vuP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) -"vuQ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/department/science) -"vxp" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced,/obj/item/assembly/mousetrap,/turf/open/floor/engine,/area/science/explab) -"vxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vzz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"vzA" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"vzP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"vzT" = (/obj/structure/table,/obj/item/stack/rods{amount = 5; layer = 3.3},/obj/effect/spawner/lootdrop/maintenance,/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"vAq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vBE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vCC" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"vHf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/science) -"vIc" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vKq" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"vMx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"vOw" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) -"vRi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"vRm" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow{pixel_x = -1; pixel_y = 3},/obj/item/clothing/gloves/color/yellow,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Port Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vTL" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"vTN" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/science/mixing) -"vVO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vYN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"wbB" = (/obj/machinery/atmospherics/components/binary/pump{name = "External Gas to Loop"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"wbF" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/camera{c_tag = "Engineering Starboard Aft"; dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"wcs" = (/turf/open/floor/plasteel/dark,/area/engine/engineering) -"wdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) -"weL" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) -"wfc" = (/obj/structure/ore_box,/turf/open/floor/plating,/area/maintenance/department/science) -"wfs" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/science/xenobiology) -"wfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) -"wfO" = (/mob/living/simple_animal/hostile/retaliate/poison/snake,/turf/open/floor/plating,/area/maintenance/department/engine) -"wfP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"wig" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wiB" = (/obj/item/shard{icon_state = "small"},/obj/item/stack/cable_coil/red,/turf/open/floor/plating,/area/maintenance/department/engine) -"wjm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"wjQ" = (/obj/machinery/computer/shuttle/mining/common{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"wkZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/shower{dir = 4; name = "emergency shower"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"wlK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"wnJ" = (/obj/structure/sign/warning,/turf/closed/wall,/area/science/mixing) -"woq" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wqu" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"wrU" = (/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/wood,/area/lawoffice) -"wtE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"wun" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"wwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"wwG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wxb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wxJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/turf/open/floor/plasteel/dark,/area/security/brig) -"wzb" = (/obj/structure/chair,/turf/open/floor/wood,/area/maintenance/department/engine) -"wAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) -"wBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"wBg" = (/obj/machinery/door/airlock/maintenance{id_tag = "Potty1"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"wDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) -"wDm" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wDZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"wEn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"wFT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) -"wIo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"wIv" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Engineering Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"wKa" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"wLo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"wMF" = (/obj/effect/spawner/lootdrop/three_course_meal,/obj/effect/spawner/lootdrop/three_course_meal,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"wMM" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"wMX" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/supermatter) -"wNq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"wOa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"wOf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"wOS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/science/mixing) -"wQU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"wRk" = (/obj/structure/rack,/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"wRz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wRI" = (/obj/machinery/power/apc{dir = 1; name = "Brig Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wTD" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/carpet,/area/lawoffice) -"wTO" = (/obj/structure/frame/computer,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"wUf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"wUz" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"wVC" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci"; location = "Bar1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"wXu" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"wYu" = (/obj/machinery/door/poddoor/shutters{id = "shootshut"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wYK" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine,/area/engine/supermatter) -"xah" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"xaO" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"xaQ" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"xbJ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"xee" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"xer" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"xeB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) -"xgh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"xgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"xhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"xhE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"xhI" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"xja" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/library) -"xjc" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/library) -"xje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"xjg" = (/mob/living/simple_animal/hostile/retaliate/goose,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"xjK" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/structure/rack,/obj/item/taperecorder,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"xjT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xlg" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/turf/open/floor/plating,/area/maintenance/department/science) -"xlA" = (/obj/machinery/door/airlock/maintenance/abandoned,/turf/open/floor/plating,/area/maintenance/department/science) -"xmp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"xmE" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"xnm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) -"xnP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"xpr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"xsO" = (/obj/item/ectoplasm,/turf/open/floor/plating,/area/maintenance/department/science) -"xuv" = (/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/solars/port) -"xvO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"xxw" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xxO" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"xxS" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"xyl" = (/obj/structure/table,/obj/item/assembly/timer,/turf/open/floor/plating,/area/maintenance/department/cargo) -"xyB" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"xzp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xzR" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"xCV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"xDj" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"xEx" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"xFl" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/tcommsat/server"; dir = 1; layer = 4; name = "Telecomms Server APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"xGc" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space/station_ruins) -"xIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) -"xJy" = (/obj/structure/chair/comfy/black,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the Third University of Harvard."; name = "\improper 'Diploma' frame"; pixel_y = 32},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/lawoffice) -"xKc" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/xenobiology) -"xLi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"xLC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/lawoffice) -"xNx" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction/flip,/turf/open/space/basic,/area/space/nearstation) -"xNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"xOC" = (/obj/machinery/door/airlock/external{name = "Construction Zone"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/construction/mining/aux_base) -"xPa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/engine,/area/science/explab) -"xQc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"xQk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"xSd" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"xSX" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/chapel/office) -"xSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"xVt" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"xWl" = (/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel,/area/science/xenobiology) -"xYV" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"ybX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"ycr" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ycx" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) -"ydf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"yfO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"ygZ" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"ymb" = (/obj/machinery/camera{c_tag = "Engineering Telecomms Access"; dir = 8; network = list("tcomms")},/obj/machinery/light{dir = 4},/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/cyborg, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aac" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aad" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"aae" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aag" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aah" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aai" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aak" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aal" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aam" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aan" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aao" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aap" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aar" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/tank/internals/plasma, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aas" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aat" = ( +/obj/structure/closet/wardrobe/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_y = -32 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aau" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aav" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aaw" = ( +/obj/structure/sign/poster/official/hydro_ad, +/turf/closed/wall, +/area/hydroponics) +"aax" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"aay" = ( +/obj/structure/sign/poster/official/medical_green_cross, +/turf/closed/wall, +/area/medical/medbay/central) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aaA" = ( +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"aaB" = ( +/obj/structure/closet/masks, +/obj/item/reagent_containers/food/snacks/deadmouse, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aaC" = ( +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"aaD" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/clothing/mask/balaclava, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaE" = ( +/obj/machinery/light/small, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaF" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/pool) +"aaG" = ( +/obj/structure/closet, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaH" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"aaK" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaL" = ( +/turf/open/floor/plasteel/yellowsiding, +/area/crew_quarters/fitness/pool) +"aaM" = ( +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"aaN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaO" = ( +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"aaP" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"aaQ" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaR" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Pool" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/walk{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaW" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaX" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaY" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"aaZ" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"aba" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abb" = ( +/obj/machinery/camera{ + c_tag = "Fitness Room" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding/corner, +/area/crew_quarters/fitness/pool) +"abd" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abe" = ( +/obj/machinery/vending/kink, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abf" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/department/science) +"abg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abj" = ( +/obj/machinery/pool/controller, +/turf/open/floor/plasteel/yellowsiding, +/area/crew_quarters/fitness/pool) +"abk" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abl" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abn" = ( +/obj/machinery/pool/filter{ + pixel_y = 24 + }, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abo" = ( +/obj/structure/pool/ladder{ + dir = 2; + pixel_y = 24 + }, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abq" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abr" = ( +/obj/machinery/pool/drain, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abs" = ( +/obj/structure/pool/Lboard, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abt" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"abu" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"abw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/pool) +"abx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"aby" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"abz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abB" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abC" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abD" = ( +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/pool"; + name = "Pool APC"; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abF" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"abG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"abH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abI" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"abJ" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"abK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abN" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"abO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"abP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abS" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abT" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/xmastree, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"abV" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abW" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abY" = ( +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abZ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/landmark/xmastree, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"acc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acd" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ace" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acf" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber North"; + dir = 1; + network = list("minisat") + }, +/obj/machinery/light, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"ach" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"aci" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/ai_monitored/turret_protected/ai) +"acj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -27 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ack" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber Center"; + network = list("minisat") + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acl" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acm" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Port"; + dir = 8; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"acn" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber West"; + dir = 4; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aco" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai"; + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acr" = ( +/obj/machinery/ai_slipper{ + uses = 8 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acs" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "AI Satellite turret control"; + pixel_x = -5; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"act" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acu" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber East"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acv" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Starboard"; + dir = 4; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"acw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acy" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -9 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -31 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -28; + pixel_y = -28 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 28; + pixel_y = -28 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acB" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acC" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acD" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber South"; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 20 + }, +/obj/machinery/status_display/ai{ + pixel_y = 37 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acE" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = 24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/AIsatextAS) +"acG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/ai_monitored/turret_protected/ai) +"acJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acM" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/space/nearstation) +"acO" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"acP" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"acQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"acR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acU" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"acV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"acW" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acX" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acY" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ada" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"adb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"add" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ade" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/mmi, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/rdconsole/robotics, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adg" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adi" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adk" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + dir = 8; + name = "MiniSat Antechamber APC"; + pixel_x = -24 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adl" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adn" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"ado" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/item/paper_bin, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"ads" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adt" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Port Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adx" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"ady" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adz" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber Observation"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adD" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Waste Out" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Starboard Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation"; + req_one_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adR" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"adS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adV" = ( +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"adW" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Port Fore"; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"adX" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"adZ" = ( +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAS) +"aea" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Starboard Fore"; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aec" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aed" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"aee" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aef" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/porta_turret/ai{ + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/aisat_interior) +"aeh" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"aei" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aej" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/porta_turret/ai{ + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/aisat_interior) +"aek" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"ael" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aem" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aen" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) +"aeo" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/potato, +/obj/item/seeds/carrot, +/obj/item/seeds/corn, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aep" = ( +/obj/item/cultivator, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeq" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/seeds/glowshroom, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Permabrig Central"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aer" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aes" = ( +/obj/structure/easel, +/obj/item/canvas/nineteenXnineteen, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aet" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeu" = ( +/obj/machinery/biogenerator, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aev" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aew" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aex" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Port Aft"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"aey" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aez" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Starboard Aft"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeC" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/grass, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeD" = ( +/obj/item/plant_analyzer, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeE" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/sunflower, +/obj/item/seeds/poppy, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeF" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeG" = ( +/obj/item/storage/crayons, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"aeO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway"; + req_one_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aeP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"aeQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeT" = ( +/obj/structure/bookcase, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeU" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeW" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aeX" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aeY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; + dir = 8; + name = "MiniSat Port Maintenance APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Port Aft"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afe" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aff" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afg" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + network = list("minisat") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Starboard Aft"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; + dir = 4; + name = "MiniSat Starboard Maintenance APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afn" = ( +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afo" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afp" = ( +/obj/item/storage/dice, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afq" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aft" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afu" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afv" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afy" = ( +/obj/effect/landmark/start/cyborg, +/obj/item/beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afB" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afE" = ( +/obj/item/toy/cards/deck, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afF" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afG" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afI" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afJ" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space/nearstation) +"afK" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afL" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afM" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afN" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"afO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"afS" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afT" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool{ + layer = 5 + }, +/obj/item/extinguisher{ + layer = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afU" = ( +/turf/closed/wall, +/area/security/execution/transfer) +"afX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"afZ" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aga" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + icon_state = "right"; + name = "Unisex Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agd" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"age" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agf" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agg" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agh" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agi" = ( +/obj/machinery/door/poddoor{ + id = "executionspaceblast" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agl" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs, +/obj/item/razor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agn" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ago" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agp" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agr" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ags" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agu" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agw" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Solutions Room"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agx" = ( +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agy" = ( +/turf/closed/wall, +/area/security/prison) +"agz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/security/prison) +"agB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agC" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agE" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agI" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Permabrig Cell 2"; + network = list("ss13","prison") + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/toy/plush/slimeplushie, +/turf/open/floor/plasteel, +/area/security/prison) +"agK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/prison) +"agL" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Permabrig Cell 1"; + network = list("ss13","prison") + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/toy/plush/lizardplushie, +/turf/open/floor/plasteel, +/area/security/prison) +"agM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"agN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/prison) +"agO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agP" = ( +/turf/closed/wall, +/area/security/main) +"agQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"agR" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"agT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Solutions Room"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agW" = ( +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"agY" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/prison) +"agZ" = ( +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aha" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"ahb" = ( +/obj/structure/toilet/secret/prison{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ahd" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ahi" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ahj" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/clothing/suit/straight_jacket, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahk" = ( +/obj/machinery/button/flasher{ + id = "executionflash"; + pixel_x = 6; + pixel_y = 27 + }, +/obj/machinery/button/door{ + id = "executionspaceblast"; + name = "Vent to Space"; + pixel_x = -6; + pixel_y = 32; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/ignition{ + id = "secigniter"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahl" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahm" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/prison) +"aho" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/prison) +"ahp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahq" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube, +/turf/open/space/basic, +/area/space/nearstation) +"aht" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ahu" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"ahx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahz" = ( +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Transfer Area Lockdown"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 24; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"ahB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = 4; + pixel_y = 34; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"ahF" = ( +/obj/machinery/camera{ + c_tag = "Brig Prison Hallway"; + network = list("ss13","prison") + }, +/obj/machinery/computer/security/telescreen/prison{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = 4; + pixel_y = 34; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahJ" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Prison Wing APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahK" = ( +/obj/structure/table, +/obj/item/melee/chainofcommand, +/obj/item/melee/baton, +/turf/open/floor/plasteel, +/area/security/prison) +"ahL" = ( +/turf/closed/wall/r_wall, +/area/security/armory) +"ahM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"ahS" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahT" = ( +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"ahV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Prisoner Transfer Centre"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aia" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aib" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aic" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aid" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aie" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aif" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aig" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"aih" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/restraints/handcuffs, +/obj/item/razor, +/turf/open/floor/plasteel, +/area/security/prison) +"aii" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aij" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/poster/random_contraband, +/obj/item/clothing/suit/armor/navyblue/russian, +/obj/item/grenade/plastic/c4, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aik" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ail" = ( +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aim" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ain" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aio" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aip" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aiq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"air" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ais" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ait" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiu" = ( +/turf/closed/wall, +/area/maintenance/department/security/brig) +"aiv" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"aiw" = ( +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"aix" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiA" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"aiB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiD" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aiJ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiK" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/electropack, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiL" = ( +/obj/structure/table, +/obj/item/storage/box/flashbangs{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/lockbox/loyalty{ + layer = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiM" = ( +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiN" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiO" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/machinery/power/apc/highcap/five_k{ + dir = 4; + name = "Armory APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) +"aiQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) +"aiR" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hos) +"aiS" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/dorms) +"aiT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aiU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/barsign, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aiV" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiX" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiY" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiZ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aja" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ajb" = ( +/obj/structure/closet/secure_closet/injection, +/obj/machinery/power/apc{ + dir = 4; + name = "Prisoner Transfer Centre"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ajc" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ajd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/prison) +"aje" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"ajf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/prison) +"ajg" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajh" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aji" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajj" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajk" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/main) +"ajl" = ( +/obj/structure/filingcabinet, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajm" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_y = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajn" = ( +/obj/structure/table, +/obj/structure/sign/plaques/golden{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajo" = ( +/obj/machinery/vending/coffee, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajp" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajq" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/main) +"ajr" = ( +/obj/item/reagent_containers/food/snacks/donut/chaos, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"ajs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"ajt" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aju" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"ajv" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajx" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajy" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajz" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajA" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space, +/area/space/nearstation) +"ajB" = ( +/obj/item/storage/box/mousetraps, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajD" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajE" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajF" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajG" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajH" = ( +/turf/closed/wall, +/area/security/processing/cremation) +"ajI" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Crematorium"; + req_access_txt = "2;27" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"ajJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajM" = ( +/turf/closed/wall, +/area/security/brig) +"ajN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/structure/sign/poster/official/safety_report{ + pixel_y = 32 + }, +/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/brig) +"ajP" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/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/dark, +/area/security/armory) +"ajS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajT" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajU" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Office APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajV" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ajW" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ajX" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajY" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aka" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/plaques/kiddie{ + desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; + name = "\improper 'Diploma' frame"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akc" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akd" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"ake" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/machinery/button/door{ + id = "hos_spess_shutters"; + name = "Space shutters"; + pixel_x = 24; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akf" = ( +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"akg" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akh" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor5" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akj" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ako" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akp" = ( +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akr" = ( +/obj/machinery/washing_machine, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -31 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aks" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akt" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/button/door{ + id = "mainthideout"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aku" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1; + node1_concentration = 0.2; + node2_concentration = 0.8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akw" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akx" = ( +/obj/structure/bodycontainer/crematorium, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"aky" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"akz" = ( +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Crematorium APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"akA" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"akB" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akC" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/table/glass, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akD" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/iv_drip, +/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/white, +/area/security/brig) +"akF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"akI" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Room"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/brig) +"akJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akK" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akL" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/rack, +/obj/item/key/security, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akP" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"akR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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/main) +"akT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"akU" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akV" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"ala" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"alb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/space, +/area/space/nearstation) +"alc" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigars, +/obj/item/stack/spacecash/c20, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ale" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alg" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ali" = ( +/obj/machinery/door/airlock/abandoned{ + id_tag = "mainthideout"; + name = "Hideout" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alj" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"all" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"aln" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Crematorium"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"alq" = ( +/obj/item/storage/box/bodybags, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alt" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alu" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aly" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alz" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/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, +/area/security/brig) +"alA" = ( +/obj/machinery/flasher/portable, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"alB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/firealarm{ + 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/main) +"alC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/pen, +/obj/item/folder/red{ + layer = 2.9; + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"alD" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/security/main) +"alE" = ( +/turf/open/floor/plasteel, +/area/security/main) +"alF" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel, +/area/security/main) +"alG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"alH" = ( +/turf/open/floor/plasteel/dark, +/area/security/main) +"alI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"alJ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alL" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/hos, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alM" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"alO" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"alP" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"alQ" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"alR" = ( +/obj/effect/landmark/blobstart, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"alS" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"alT" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Supply to Security" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alZ" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ama" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amc" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ame" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 4; + name = "Brig APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amg" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"amh" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"ami" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"amj" = ( +/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/security/warden) +"amk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aml" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"amm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Office"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -31 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amp" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ams" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"amt" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Security"; + req_access_txt = "58" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/dark, +/area/crew_quarters/heads/hos) +"amv" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amx" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amy" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amz" = ( +/obj/machinery/computer/security/hos{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amA" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amB" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amC" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amD" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amF" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/department/crew_quarters/dorms) +"amG" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/crew_quarters/dorms) +"amH" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"amI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_one_access_txt = "2;27" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"amJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/security/processing/cremation) +"amK" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 1; + freq = 1400; + location = "Security" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"amL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"amM" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amO" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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/security/brig) +"amP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amS" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Control APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amT" = ( +/obj/machinery/computer/prisoner/management, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amU" = ( +/obj/machinery/computer/security, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room" + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amV" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amX" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amZ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ana" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anc" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/main) +"and" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"ane" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"anf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ang" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"ani" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"anj" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"ank" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"anl" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space/basic, +/area/space/nearstation) +"anm" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Pete's Speakeasy" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"anq" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ans" = ( +/obj/item/wirecutters, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ant" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/security/processing/cremation) +"anw" = ( +/obj/structure/plasticflaps/opaque, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"anx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Brig Infirmary Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"any" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"anC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anI" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anJ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"anL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anM" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"anN" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"anO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/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, +/area/security/main) +"anP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"anQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"anR" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anS" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "Head of Security's Office APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"anX" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"anY" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"aob" = ( +/obj/structure/closet/emcloset, +/obj/item/camera, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aod" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aof" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aog" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aok" = ( +/obj/machinery/computer/security/labor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aol" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aom" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aon" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"aoo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aop" = ( +/obj/structure/bed/dogbed, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/mob/living/simple_animal/pet/dog/pug{ + name = "McGriff" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoq" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aor" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aos" = ( +/obj/machinery/door/airlock/security{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aot" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aou" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aov" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aow" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aox" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aoy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aoz" = ( +/turf/closed/wall, +/area/maintenance/fore) +"aoB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aoH" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/solar/port) +"aoI" = ( +/obj/structure/lattice, +/turf/open/space, +/area/solar/port) +"aoJ" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/solar/port) +"aoK" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aoL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Gulag Teleporter"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/paper/guides/jobs/security/labor_camp, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aoP" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aoQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoR" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoS" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Entrance Lockdown"; + pixel_x = 5; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Permabrig Lockdown"; + pixel_x = 5; + pixel_y = 8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoT" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoX" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/laser_pointer/red, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoZ" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"apa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/main) +"apb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apc" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ape" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/main) +"apg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Security Access"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aph" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"api" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apk" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apl" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apn" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"apo" = ( +/obj/structure/transit_tube/diagonal/crossing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"app" = ( +/obj/machinery/camera{ + c_tag = "Bridge Starboard Exterior"; + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"apr" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/clothing/mask/cigarette, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"apu" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"apv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"apw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/camera_film, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"apz" = ( +/obj/item/target/clown, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"apB" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"apE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"apF" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apG" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"apJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"apK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"apM" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"apQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"apS" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"apT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"apU" = ( +/obj/effect/turf_decal/bot_white/left, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apV" = ( +/obj/effect/turf_decal/bot_white, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apW" = ( +/obj/effect/turf_decal/bot_white/right, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apX" = ( +/turf/closed/wall, +/area/crew_quarters/dorms) +"aqa" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space, +/area/solar/port) +"aqc" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqd" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqe" = ( +/obj/item/target/alien, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqi" = ( +/obj/structure/closet, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/red, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqq" = ( +/obj/machinery/camera{ + c_tag = "Brig Cells" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqs" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqv" = ( +/obj/machinery/camera{ + c_tag = "Brig Entrance" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqA" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 8; + pixel_x = 30 + }, +/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/brig) +"aqB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqC" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqD" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqF" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"aqG" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aqH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqI" = ( +/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 = "bridgespace"; + name = "bridge external shutters" + }, +/turf/open/floor/plating, +/area/bridge) +"aqJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqK" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqL" = ( +/obj/machinery/computer/bank_machine, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aqM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqP" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aqQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqR" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqS" = ( +/obj/machinery/door/window{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqT" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqU" = ( +/obj/machinery/washing_machine, +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqV" = ( +/obj/machinery/washing_machine, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqY" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 6; + id = "monastery_shuttle_station"; + name = "Station"; + roundstart_template = /datum/map_template/shuttle/escape_pod/large; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"ara" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/port) +"arc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ard" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ari" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + pixel_y = -25; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ark" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"arl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"arm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aro" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arr" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ars" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"art" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aru" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arw" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arx" = ( +/obj/item/flashlight/lamp, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ary" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arz" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arA" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"arB" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Bridge MiniSat Access"; + dir = 4 + }, +/turf/open/floor/plating, +/area/bridge) +"arC" = ( +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bridge) +"arD" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/bridge) +"arE" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bridge) +"arF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"arG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"arH" = ( +/obj/machinery/modular_computer/console/preset/command, +/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/bridge) +"arI" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arJ" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arK" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arL" = ( +/obj/machinery/computer/card, +/obj/machinery/camera{ + c_tag = "Bridge - Central" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arM" = ( +/obj/machinery/computer/communications, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arN" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arO" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arP" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arQ" = ( +/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/dark, +/area/bridge) +"arR" = ( +/obj/machinery/computer/prisoner/management, +/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/dark, +/area/bridge) +"arS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"arU" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"arW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/ore_silo, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arX" = ( +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4 + }, +/obj/structure/table, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/paper/pamphlet, +/turf/open/floor/plasteel, +/area/gateway) +"arY" = ( +/obj/machinery/computer/gateway_control, +/turf/open/floor/plasteel, +/area/gateway) +"arZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"asa" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/gateway) +"asb" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"asc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"asd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ase" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"asf" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"asg" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bedsheetbin/color, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ash" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"asi" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"asj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aso" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"asr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"asu" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asy" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asA" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asB" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/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, +/area/security/brig) +"asG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"asH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asJ" = ( +/obj/item/folder/red, +/obj/item/taperecorder, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/bridge) +"asN" = ( +/turf/open/floor/plasteel, +/area/bridge) +"asO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/bridge) +"asP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"asQ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 10 + }, +/obj/machinery/button/door{ + id = "bridgespace"; + name = "Bridge Space Lockdown"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asS" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"asT" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/button/door{ + id = "bridgespace"; + name = "Bridge Space Lockdown"; + pixel_x = 24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asU" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"asV" = ( +/obj/structure/closet/crate/goldcrate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"asW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asZ" = ( +/obj/structure/closet/crate/silvercrate, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"ata" = ( +/obj/machinery/light_switch{ + pixel_x = -20 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"atb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"atc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"atd" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"atf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/dorms) +"atg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ath" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Laundry Room"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ati" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"atj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"atk" = ( +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"atl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"atn" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"atp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/maintenance/department/security/brig) +"atq" = ( +/turf/open/floor/circuit/green, +/area/maintenance/department/security/brig) +"atv" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/security/brig) +"atw" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atx" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"aty" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"atA" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atC" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"atE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atF" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"atG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Emergency Escape"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/fore) +"atL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/bridge) +"atM" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"atN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/bridge) +"atO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"atP" = ( +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/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/dark, +/area/bridge) +"atQ" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/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/dark, +/area/bridge) +"atR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atU" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atX" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atY" = ( +/turf/closed/wall, +/area/bridge) +"atZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"aua" = ( +/obj/structure/closet/secure_closet/freezer/money, +/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/clothing/head/bearpelt, +/obj/item/skub, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aub" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aud" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aue" = ( +/obj/structure/safe, +/obj/item/bikehorn/golden, +/obj/item/ammo_box/a357, +/obj/item/tank/internals/plasma/full, +/obj/item/disk/nuclear/fake, +/obj/item/stack/ore/diamond, +/obj/item/gun/energy/disabler, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aug" = ( +/obj/machinery/button/door{ + id = "stationawaygate"; + name = "Gateway Access Shutter Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/gateway) +"auh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms) +"auk" = ( +/obj/machinery/door/airlock{ + name = "Laundry Room" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aul" = ( +/obj/machinery/computer/shuttle/monastery_shuttle, +/obj/structure/sign/warning/pods{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"aum" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aur" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"aus" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aut" = ( +/obj/item/clothing/head/collectable/police, +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/department/security/brig) +"auu" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"aux" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"auB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin, +/obj/item/pen{ + layer = 3.1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auE" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 36; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "63" + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auG" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auH" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"auI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"auJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"auK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/bridge) +"auN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auR" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auT" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auU" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/bridge) +"auV" = ( +/turf/open/floor/plating, +/area/bridge) +"auW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"auX" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"auY" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auZ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"ava" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avc" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/gateway) +"avd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm3Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"ave" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm3Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avg" = ( +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avi" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Dormitories Fore" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avk" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avl" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 30 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"avn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"avp" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/box; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"avq" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Labor Shuttle Dock"; + dir = 8 + }, +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avs" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/item/bedsheet/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avu" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/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/security/brig) +"avv" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/item/bedsheet/green, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avw" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avx" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/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/security/brig) +"avy" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/item/bedsheet/orange, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avA" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avD" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avF" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/curtain, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avI" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avK" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avL" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fore) +"avM" = ( +/obj/machinery/door/airlock/command{ + name = "Balcony"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"avN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avO" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Bridge MiniSat Access Foyer"; + dir = 1 + }, +/obj/machinery/light/small, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avQ" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"avR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avV" = ( +/obj/structure/table/glass, +/obj/item/storage/box/ids{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/PDAs, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avW" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avX" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avY" = ( +/obj/structure/table/glass, +/obj/item/aicard, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avZ" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/item/laser_pointer/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awb" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Bridge External Access"; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"awd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"awe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awh" = ( +/obj/machinery/camera{ + c_tag = "Vault Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awn" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"awo" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/dorms) +"awp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/dorms) +"awq" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"awr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aws" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aww" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"awB" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"awC" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/recreation"; + dir = 1; + name = "Fitness Room APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"awD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"awE" = ( +/obj/item/storage/briefcase, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"awH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awI" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awJ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awL" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awM" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/item/radio, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awP" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/reagent_containers/food/snacks/donut, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + layer = 2.9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awQ" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awR" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awS" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"awT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Captain's Office Access"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"awU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awY" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axb" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axe" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"axi" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"axj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"axm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/hallway/primary/central) +"axn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axq" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"axv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"axw" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"axC" = ( +/turf/closed/wall, +/area/maintenance/solars/port) +"axE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axF" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axG" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axJ" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axN" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axP" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters" + }, +/obj/item/clothing/suit/armor/riot/knight/blue, +/obj/item/clothing/head/helmet/knight/blue, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axQ" = ( +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"axS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axT" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_y = 30 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axU" = ( +/obj/machinery/computer/card, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axV" = ( +/obj/machinery/computer/communications, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axW" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aya" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aye" = ( +/obj/machinery/door/airlock/command{ + name = "External Access"; + req_one_access_txt = "19; 65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ayf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/stairs, +/area/hallway/primary/central) +"ayi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm2Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"ayj" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm2Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayl" = ( +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aym" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"ayn" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayo" = ( +/obj/structure/table/wood, +/obj/item/storage/dice, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayq" = ( +/obj/structure/table/wood, +/obj/item/storage/backpack, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayr" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ays" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"ayt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Recreation Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayw" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/port) +"ayz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayA" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "portsolar"; + name = "Port Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayC" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Solar APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ayE" = ( +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + pixel_x = -25; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayF" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayI" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigS2"; + location = "BrigP" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayN" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigP"; + location = "BrigS1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayQ" = ( +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayR" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayS" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayT" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"ayX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"ayY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"ayZ" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aza" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azb" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azc" = ( +/obj/item/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aze" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azg" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azh" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azk" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Central"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/bridge"; + dir = 4; + name = "Bridge APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azp" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Bridge External Access"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azr" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azs" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azu" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"azv" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azx" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azy" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"azB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Recreation Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azE" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Holodeck"; + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"azH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/port) +"azI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/port) +"azJ" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/port) +"azK" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"azL" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"azN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azY" = ( +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"azZ" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aAa" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/potato{ + name = "\improper Beepsky's emergency battery" + }, +/obj/item/paper/fluff/jobs/security/beepsky_mom, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aAb" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAd" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAf" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Port"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Tool"; + location = "BrigS2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAn" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Starboard"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAo" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAp" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAq" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask/gold, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAr" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAs" = ( +/obj/structure/table/wood, +/obj/item/kitchen/fork, +/obj/item/card/id/captains_spare, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aAu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAw" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAx" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAy" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Entrance Lockdown"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAB" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aAC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aAD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Entrance Lockdown"; + pixel_x = 24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAH" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAM" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAN" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aAO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aAP" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aAQ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aAS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/port) +"aAW" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/multitool, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAX" = ( +/obj/structure/chair/stool, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAY" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aBa" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"aBc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aBd" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aBe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "datboidetective"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aBf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aBg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBi" = ( +/turf/closed/wall, +/area/storage/primary) +"aBj" = ( +/turf/closed/wall/r_wall, +/area/storage/primary) +"aBk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/vending/wardrobe/cap_wardrobe, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBm" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBn" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBo" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBs" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBt" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBx" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + dir = 1; + name = "Upload APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/storage/secure/safe{ + pixel_x = -22; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBA" = ( +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBB" = ( +/obj/machinery/computer/cargo/request, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBC" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBD" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBE" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/obj/machinery/pdapainter{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBF" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBG" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBH" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Central Hall APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBK" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/crowbar, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm1Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aBM" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm1Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBO" = ( +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBT" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBU" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBW" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBX" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/obj/item/storage/backpack, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aBZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aCa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/port) +"aCc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCd" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCe" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/lawoffice) +"aCf" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/wood, +/area/lawoffice) +"aCg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCi" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 12 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Detective's office"; + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCk" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCm" = ( +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "datboidetective"; + name = "Privacy Shutters"; + pixel_x = 2; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 27 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCo" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/hand_labeler, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aCq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aCr" = ( +/obj/machinery/vending/assist, +/obj/structure/sign/poster/official/pda_ad{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCt" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/analyzer, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCu" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCv" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/assembly/igniter, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/item/assembly/voice, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCw" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/multitool, +/obj/item/multitool, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/flashlight, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCx" = ( +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/obj/machinery/disposal/deliveryChute{ + name = "Crate Disposal Chute"; + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Crate Disposal Chute" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCy" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"aCE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCG" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Port"; + dir = 4; + network = list("aiupload") + }, +/obj/item/aiModule/reset, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCK" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCM" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/freeform, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Starboard"; + dir = 8; + network = list("aiupload") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aCO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCP" = ( +/obj/structure/table/wood, +/obj/item/pen{ + layer = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 6 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCQ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCR" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCS" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCY" = ( +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aDa" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aDb" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDc" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDe" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"aDf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDh" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Dormitories Aft"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/dorms) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side, +/area/crew_quarters/dorms) +"aDk" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/crew_quarters/dorms) +"aDl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aDm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aDo" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDq" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDr" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDw" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Tool Storage APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aDx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDy" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDA" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aDB" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDC" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDE" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDF" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDI" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDK" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aDL" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aDM" = ( +/obj/machinery/holopad, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Center"; + dir = 1; + network = list("aiupload") + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -28 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aDN" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/structure/sign/plaques/kiddie{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aDR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Head of Personnel APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDZ" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEb" = ( +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aEd" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"aEe" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEf" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEg" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEh" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEi" = ( +/obj/effect/landmark/blobstart, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"aEj" = ( +/turf/closed/wall, +/area/maintenance/department/cargo) +"aEk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aEl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aEm" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEn" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEo" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter, +/obj/item/clothing/glasses/hud/security/sunglasses, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEq" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEr" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEt" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aEu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEx" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEy" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEz" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aEB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge Port Entrance"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aED" = ( +/obj/structure/table, +/obj/item/aiModule/core/full/asimov, +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/item/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/item/aiModule/core/full/custom, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEE" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEF" = ( +/obj/machinery/computer/upload/ai{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aEG" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aEH" = ( +/obj/machinery/computer/upload/borg{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aEI" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/oxygen, +/obj/item/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + dir = 8; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/reset/purge, +/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/item/aiModule/supplied/protectStation, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge Starboard Entrance"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEN" = ( +/obj/structure/table/wood, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEO" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aEP" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aEQ" = ( +/obj/structure/chair/office/dark, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 38; + pixel_y = -25 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 25; + pixel_y = -26; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = 25; + pixel_y = -36; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = 38; + pixel_y = -35 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aER" = ( +/obj/structure/table/wood, +/obj/item/stamp/hop{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aES" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Vault"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aET" = ( +/turf/closed/wall, +/area/storage/emergency/starboard) +"aEU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/item/storage/toolbox, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aEW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFb" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFe" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFg" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFi" = ( +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFj" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Entrance"; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"aFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/minor/bowler_or_that, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aFm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFn" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFo" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/effect/landmark/start/detective, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFr" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Entrance"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aFs" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/electronics/apc, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aFt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFv" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFw" = ( +/obj/structure/table/wood, +/obj/item/camera, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aFx" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aFy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aFz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aFA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/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) +"aFB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Reception Window" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"aFC" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aFD" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/taperecorder, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aFE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aFF" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Starboard Emergency Storage APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aFG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFK" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFM" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFN" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFO" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFP" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/food/condiment/rice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFU" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aFV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance"; + req_access_txt = "4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aFW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFX" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFY" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aGa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGe" = ( +/obj/structure/rack, +/obj/item/wirecutters, +/obj/item/flashlight, +/obj/item/gps, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGf" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGg" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/assembly/timer, +/obj/item/radio, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGh" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGj" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGk" = ( +/obj/machinery/vending/boozeomat/pubby_captain, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGm" = ( +/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/computer/arcade{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGn" = ( +/obj/item/kirbyplants/photosynthetic{ + layer = 3.1 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aGo" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGp" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGq" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGr" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign4"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGs" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign5"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGt" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGw" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGx" = ( +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 28; + pixel_y = -28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGy" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGz" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aGB" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aGC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGF" = ( +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGH" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGI" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGJ" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGK" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/cookie{ + desc = "It has a distinctly eldritch taste to it."; + name = "grandma's cookie" + }, +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGL" = ( +/obj/structure/chair/stool, +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGM" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGN" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plating, +/area/storage/primary) +"aGY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGZ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plating, +/area/storage/primary) +"aHb" = ( +/obj/machinery/computer/arcade, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aHc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aHd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHe" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHg" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHh" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHj" = ( +/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/hallway/primary/central) +"aHk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHl" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHn" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aHo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHp" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHq" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHr" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHs" = ( +/obj/structure/closet/crate, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/replicapod, +/obj/item/seeds/carrot, +/obj/item/seeds/tomato, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHt" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHu" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHz" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aHA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aHC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aHE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorms"; + location = "Tool" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHR" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aId" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aIi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIj" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/sign/departments/restroom{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"aIk" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aIl" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aIp" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aIq" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/lawyer, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aIr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/port) +"aIC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aIH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aIL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorms"; + location = "Tool" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/observer_start, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Robo"; + location = "HoP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HoP"; + location = "Dorms" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/central) +"aJn" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aJo" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aJp" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aJr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"aJs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aJv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJw" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/chaplain, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJD" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Fore" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aJE" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aJF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/secondary/exit/departure_lounge"; + dir = 1; + name = "Departure Lounge APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aJG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJH" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJM" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bathroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJW" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway EVA"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJX" = ( +/obj/structure/sign/directions/security{ + dir = 8; + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/science{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKe" = ( +/obj/machinery/camera{ + c_tag = "Dormitories Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-04" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"aKh" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKi" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKj" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Dormitory Cyborg Recharging Station" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKo" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aKp" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKq" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKr" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/curator, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKz" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKG" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKH" = ( +/obj/structure/closet/firecloset, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKJ" = ( +/turf/closed/wall, +/area/storage/art) +"aKK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/art) +"aKL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/storage/art) +"aKM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/cafeteria/lunchroom) +"aKN" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/cafeteria/lunchroom) +"aKO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Lunchroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/cafeteria/lunchroom) +"aKP" = ( +/turf/closed/wall, +/area/crew_quarters/cafeteria/lunchroom) +"aKQ" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"aKR" = ( +/obj/machinery/door/airlock{ + id_tag = "Potty1"; + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"aKT" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/bar) +"aKU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aKV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aKY" = ( +/turf/closed/wall/r_wall, +/area/storage/eva) +"aKZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/eva) +"aLa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "EVA Storage Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"aLd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command/glass{ + name = "Teleporter"; + req_access_txt = "17" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLe" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"aLf" = ( +/turf/closed/wall, +/area/quartermaster/office) +"aLg" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"aLh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLj" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLl" = ( +/obj/item/storage/box/mousetraps, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLm" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"aLn" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aLo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aLu" = ( +/obj/structure/closet/emcloset, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aLv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aLw" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"aLx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXnineteen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLz" = ( +/obj/machinery/photocopier, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/friedegg, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLB" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLD" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLG" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + id = "Potty1"; + name = "Bathroom Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 36; + pixel_y = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLI" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aLL" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/button/door{ + id = "evashutter"; + name = "EVA Shutters Control"; + pixel_x = -24; + req_access_txt = "18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aLR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLU" = ( +/obj/structure/closet/crate/rcd, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aLV" = ( +/turf/closed/wall, +/area/storage/eva) +"aLW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLX" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aMa" = ( +/obj/structure/closet/crate, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutters Control"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "17" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aMb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMe" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Security Post" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMf" = ( +/obj/machinery/computer/secure_data, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/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/checkpoint/supply) +"aMg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMk" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMl" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMm" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMn" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/warehouse) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMr" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMt" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Warehouse" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMu" = ( +/obj/item/cigbutt/cigarbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/warehouse"; + dir = 4; + name = "Cargo Warehouse APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMx" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMy" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMz" = ( +/obj/structure/grille/broken, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMA" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aME" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "garbagestacked"; + name = "disposal conveyor" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMG" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aML" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aMR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/art) +"aMV" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = -3 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMX" = ( +/obj/structure/table, +/obj/item/airlock_painter, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Art Storage APC"; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aMZ" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Lunchroom"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNa" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Cafeteria APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNb" = ( +/obj/machinery/vending/sustenance{ + contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); + desc = "A vending machine which vends food."; + product_ads = "Sufficiently healthy." + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNc" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNd" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNe" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/five_k{ + name = "Auxiliary Restrooms APC"; + pixel_y = -24 + }, +/obj/item/soap/nanotrasen, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aNg" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNh" = ( +/obj/item/extinguisher, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aNi" = ( +/obj/structure/grille/broken, +/obj/item/crowbar, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aNj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNm" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNp" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aNq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNr" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNt" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide/eva, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aNu" = ( +/obj/structure/closet/crate, +/obj/item/melee/flyswatter, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aNv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aNw" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/teleporter) +"aNx" = ( +/turf/open/floor/plasteel, +/area/teleporter) +"aNy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aNz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"aNA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aNB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aNC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aND" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNE" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNJ" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNK" = ( +/obj/structure/table, +/obj/item/destTagger, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNL" = ( +/obj/item/stack/wrapping_paper{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/stack/packageWrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNM" = ( +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNN" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNO" = ( +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNP" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aNT" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "trash" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -28 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNU" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbagestacked" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNX" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aOf" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOg" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOh" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aOm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/wrench, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aOs" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aOt" = ( +/obj/structure/table, +/obj/item/instrument/glockenspiel{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOu" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Art Storage"; + dir = 1 + }, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOv" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 20; + layer = 3.1 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + layer = 3.2 + }, +/obj/item/stack/rods{ + amount = 20; + layer = 3.3 + }, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/nineteenXnineteen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOw" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aOx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOA" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOB" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aOC" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/storage/eva) +"aOD" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aOE" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Teleporter"; + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aOF" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aOG" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aOH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aOI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aOJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Shutters" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"aOK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aON" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aOO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOP" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aOU" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aOW" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + icon_state = "right"; + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aOX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aOY" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aOZ" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPa" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aPf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aPg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aPi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aPn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aPo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit/departure_lounge) +"aPq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Starboard"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aPt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aPv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aPw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aPz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aPA" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPB" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPC" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/gloves, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPD" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPE" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aPF" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPH" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aPI" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aPM" = ( +/obj/structure/table, +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPN" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPO" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPP" = ( +/obj/machinery/teleport/hub, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPQ" = ( +/obj/structure/closet/crate, +/obj/item/crowbar, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPT" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Post - Cargo APC"; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aPU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aPV" = ( +/obj/structure/filingcabinet/security, +/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, +/area/security/checkpoint/supply) +"aPW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aPY" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aPZ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQa" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Cargo Mailroom"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQc" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQd" = ( +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQe" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQf" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQg" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQj" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aQk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"aQn" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "garbage"; + name = "disposal conveyor" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aQs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQt" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aQu" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aQv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQw" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aQx" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aQz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aQD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aQE" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aQI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aQJ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aQK" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQL" = ( +/obj/structure/grille/broken, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQM" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQS" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQT" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/bar) +"aQU" = ( +/obj/machinery/vending/coffee, +/obj/machinery/camera{ + c_tag = "Bar Backroom" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQV" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/broken_bottle, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQY" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aQZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/crowbar, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "EVA Storage APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRa" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRb" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRc" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aRe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aRf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aRg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aRh" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRi" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 4; + name = "Delivery Office APC"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRm" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aRn" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRo" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRq" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aRt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"aRu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRv" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRB" = ( +/obj/structure/closet/emcloset, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aRD" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRF" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRG" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 8; + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aRH" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/primary/central) +"aRI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aRJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRL" = ( +/turf/closed/wall, +/area/hydroponics) +"aRM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRN" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aRO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aRP" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aRQ" = ( +/obj/item/gun/ballistic/revolver/doublebarrel{ + pixel_y = 11 + }, +/obj/structure/table/wood, +/obj/item/coin/silver, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c100, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/bar) +"aRS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRZ" = ( +/obj/item/trash/tray, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSa" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/item/grown/bananapeel, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSb" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/item/seeds/banana, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSf" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_one_access_txt = "48;50" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aSi" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSl" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Cargo Maintenance APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aSm" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSo" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Disposal APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aSv" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSw" = ( +/obj/item/statuebust, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSx" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSA" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSE" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSF" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSG" = ( +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/reagent_containers/glass/bottle/mutagen, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aSI" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSJ" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSK" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSL" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Kitchen" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aSM" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/bar) +"aSN" = ( +/obj/item/assembly/mousetrap, +/obj/item/storage/box/mousetraps, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/bar) +"aSO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSP" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/storage/box/beanbag, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSS" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aST" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aSY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"aTf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTm" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTp" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTr" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTs" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTw" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTC" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"aTD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space, +/area/solar/starboard) +"aTE" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"aTH" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 4; + height = 15; + id = "emergency_home"; + name = "PubbyStation emergency evac bay"; + width = 20 + }, +/turf/open/space/basic, +/area/space) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aTK" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Escape"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aTP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aTQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTW" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTX" = ( +/obj/structure/kitchenspike, +/obj/item/assembly/mousetrap, +/obj/item/reagent_containers/food/snacks/deadmouse, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aTY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aTZ" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/crowbar, +/obj/item/wrench, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUb" = ( +/obj/structure/plasticflaps/opaque, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/bar) +"aUc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aUd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aUe" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/bar) +"aUf" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUi" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Cargo"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUl" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUm" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUo" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUy" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aUz" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aUA" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"aUB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aUC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aUD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"aUK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUQ" = ( +/obj/structure/plasticflaps/opaque, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"aUR" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 1; + freq = 1400; + location = "Hydroponics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUS" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUU" = ( +/obj/machinery/power/apc{ + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUW" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUX" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUZ" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVa" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVc" = ( +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aVd" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVg" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVh" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/patron{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/grappa{ + pixel_x = 10; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVi" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/hcider{ + layer = 3.1; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + layer = 3.1; + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + layer = 3.2; + pixel_x = -15; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ + layer = 3.1; + pixel_x = 13; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/tequila{ + layer = 3.2; + pixel_x = 13; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_x = -10; + pixel_y = 15 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_x = 28; + req_access_txt = "25" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVk" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/instrument/accordion{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVl" = ( +/obj/structure/dresser, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVm" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aVo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVs" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/conveyor_switch{ + id = "cargodeliver" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVy" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVz" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVB" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/obj/machinery/camera{ + c_tag = "Cargo Supply Dock"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVG" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVH" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/book/manual/wiki/chemistry, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVI" = ( +/obj/structure/closet, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/storage/crayons, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVM" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVS" = ( +/turf/closed/wall, +/area/janitor) +"aVT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"aVU" = ( +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Janitor Delivery"; + req_access_txt = "26" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Janitor" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aVV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aVW" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVX" = ( +/obj/machinery/power/apc{ + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVZ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aWb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey/punpun, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWe" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Bar Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWm" = ( +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWn" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_x = 28; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWs" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWu" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption{ + input_dir = 4; + output_dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"aWw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWx" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #2" + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay"; + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWz" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aWE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aWF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Hallway"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWM" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWN" = ( +/obj/machinery/camera{ + c_tag = "Custodial Quarters" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWO" = ( +/obj/structure/bed, +/obj/effect/landmark/start/janitor, +/obj/item/bedsheet/purple, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWP" = ( +/obj/machinery/hydroponics/constructable, +/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) +"aWQ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 21 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWT" = ( +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 30 + }, +/obj/structure/sink/kitchen{ + name = "utility sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWU" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Bar APC"; + pixel_x = 27 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXh" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXm" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 18 + }, +/obj/machinery/requests_console{ + department = "Theatre"; + name = "theatre RC"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/cardboard_cutout, +/obj/structure/mirror{ + pixel_x = 28; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"aXv" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Cargo Foyer"; + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aXx" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aXy" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXz" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXA" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXB" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/security/checkpoint/customs) +"aXC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aXF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aXG" = ( +/obj/structure/table, +/obj/effect/holodeck_effect/cards{ + pixel_y = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aXH" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/customs) +"aXI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "papersplease"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/preopen{ + id = "papersplease"; + name = "privacy shutters" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aXK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"aXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/janitor) +"aXN" = ( +/obj/structure/bedsheetbin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXP" = ( +/obj/structure/table, +/obj/item/clothing/under/costume/maid, +/obj/item/key/janitor, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXR" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXS" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"aXT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hydroponics) +"aXU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXW" = ( +/obj/machinery/plantgenes{ + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXX" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXY" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/departments/botany{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXZ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYa" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/machinery/door/airlock{ + name = "Bar Access"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aYd" = ( +/obj/machinery/door/airlock{ + name = "Service Access"; + req_one_access_txt = "25; 26; 28; 35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYe" = ( +/obj/structure/table/reinforced, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYf" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/rag, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYh" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/instrument/guitar, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYj" = ( +/obj/machinery/door/airlock{ + name = "Theatre Storage"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYl" = ( +/obj/structure/table/wood, +/obj/item/soap, +/obj/structure/table/wood, +/obj/item/bikehorn, +/obj/item/toy/cattoy, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYm" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/item/lipstick/random, +/obj/item/clothing/gloves/color/rainbow, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYn" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -32 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYp" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYq" = ( +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYv" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYB" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYC" = ( +/obj/structure/grille/broken, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYD" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/matches, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYE" = ( +/obj/structure/table, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYF" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/light/bulb, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYG" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYJ" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYK" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/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/checkpoint/customs) +"aYL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Quarters"; + req_access_txt = "26" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aYN" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYR" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYS" = ( +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYT" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYU" = ( +/obj/machinery/processor, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aYY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZj" = ( +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/machinery/computer/bounty{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZq" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aZw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aZx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aZy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZF" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/checkpoint/customs) +"aZL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aZP" = ( +/turf/open/floor/plasteel, +/area/janitor) +"aZQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/power/apc{ + dir = 1; + name = "Custodial Closet APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"aZR" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hydroponics) +"aZT" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZU" = ( +/obj/machinery/vending/hydronutrients, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"aZV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZZ" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"baa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bab" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bac" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bad" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bae" = ( +/obj/structure/chair/stool/bar, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bag" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bah" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"ban" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/obj/structure/chair/wood/normal, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bao" = ( +/obj/machinery/computer/slot_machine, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bap" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"baq" = ( +/obj/machinery/computer/arcade, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bas" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bat" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bau" = ( +/obj/machinery/photocopier, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bav" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/office"; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baw" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baz" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "Cargo Bay APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baG" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard) +"baH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Bridge External Access"; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"baI" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"baJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baK" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baL" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baQ" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "papersplease"; + name = "Shutters Control Button"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "1" + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -26; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baR" = ( +/obj/item/pen, +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baS" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baT" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baU" = ( +/obj/machinery/power/apc{ + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/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, +/area/security/checkpoint/customs) +"baV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "jangarage"; + name = "Custodial Closet Shutters Control"; + pixel_x = 25; + req_access_txt = "26" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baX" = ( +/obj/vehicle/ridden/janicart, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "jangarage"; + name = "Custodial Closet Shutters Control"; + pixel_x = -25; + req_access_txt = "26" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/janitor) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/janitor) +"baZ" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bba" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbg" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbh" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbi" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bbm" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbo" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbp" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbr" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbs" = ( +/obj/item/cane, +/obj/item/clothing/head/that, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/clothing/under/dress/sundress, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/under/dress/blacktango, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbu" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bbv" = ( +/obj/structure/chair/stool, +/obj/item/trash/can, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbw" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbx" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bby" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Office Maintenance"; + req_access_txt = "50" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"bbB" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/head/mailman, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbC" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/hand_labeler, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbD" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbE" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bbF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bbG" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bbH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bbI" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bbK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bbL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bbM" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/multitool, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bbP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard) +"bbQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbV" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "papersplease"; + name = "privacy shutters" + }, +/obj/item/crowbar, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bbW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "jangarage"; + name = "Custodial Closet Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/janitor) +"bbX" = ( +/obj/structure/janitorialcart, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bbY" = ( +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 8 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/janitor) +"bbZ" = ( +/obj/machinery/seed_extractor, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bca" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bcb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bcc" = ( +/obj/machinery/biogenerator, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bcd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/reagent_containers/food/snacks/cube/monkey, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bce" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bcg" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bch" = ( +/obj/structure/table, +/obj/item/storage/box/ingredients/wildcard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bck" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcm" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bco" = ( +/obj/structure/table/wood/fancy, +/obj/item/gun/ballistic/revolver/russian{ + pixel_y = 16 + }, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bcq" = ( +/obj/item/clothing/glasses/monocle, +/obj/item/instrument/recorder, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bcr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcs" = ( +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bcx" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"bcy" = ( +/obj/item/chair, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bcz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcA" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/storage/belt/fannypack/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcC" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcD" = ( +/obj/structure/closet/wardrobe/miner, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/bridge) +"bcO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"bcQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard) +"bcR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/starboard) +"bcS" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"bcT" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/starboard) +"bcU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/starboard) +"bcV" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"bcX" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bcY" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bcZ" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bda" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"bdd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bde" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdi" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdj" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdk" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdm" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hydroponics) +"bdn" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdp" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdq" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bdz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bdB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdF" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/qm"; + dir = 8; + name = "Quartermaster APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdG" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdH" = ( +/obj/machinery/computer/bounty{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bdJ" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdK" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdM" = ( +/obj/machinery/requests_console{ + department = "Mining"; + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdQ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bdR" = ( +/obj/structure/chair/stool, +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bdS" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "starboardsolar"; + name = "Starboard Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bdU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/starboard) +"bdV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bdW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bea" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"beb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/custodian{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bec" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bed" = ( +/obj/structure/table, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"bee" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/mousetraps, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/clothing/head/crown, +/turf/open/floor/plasteel, +/area/janitor) +"bef" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"beg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bei" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"bej" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bek" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bel" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bem" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ben" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beo" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bep" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"beq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ber" = ( +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bes" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"beu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bex" = ( +/obj/machinery/camera{ + c_tag = "Bar Port"; + dir = 1 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bey" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bez" = ( +/obj/structure/table/wood, +/obj/item/instrument/trombone, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beA" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = -28; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beC" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = -28; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chocolatebar, +/obj/item/kitchen/fork, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beE" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bar Starboard"; + dir = 1 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beI" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"beJ" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beL" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beM" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beO" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beP" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"beS" = ( +/obj/item/caution, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"beU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard) +"beY" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Central"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"beZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bff" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bfj" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfk" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfl" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfm" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfn" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfp" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/button/door{ + id = "kitchenwindowshutters"; + name = "Kitchen Window Shutters Control"; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bfr" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bfs" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bft" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/turf_decal/bot, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bfu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfv" = ( +/obj/structure/table, +/obj/item/crowbar/large, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/power/apc{ + dir = 1; + name = "Mech Bay APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfy" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/status_display/evac{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfz" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfA" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfB" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/computer/card/minor/qm{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfC" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo Quartermaster's Office"; + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/cartridge/quartermaster, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/coin/silver, +/obj/item/stamp/qm, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfD" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfE" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/machinery/camera{ + c_tag = "Cargo Mining Dock"; + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfH" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfI" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bfJ" = ( +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bfK" = ( +/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) +"bfM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paperplane, +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfP" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfZ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/lounge) +"bga" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"bgb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Lounge" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"bgc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"bgd" = ( +/turf/closed/wall, +/area/crew_quarters/lounge) +"bge" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgh" = ( +/obj/structure/chair{ + name = "Throne of Custodia" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgi" = ( +/obj/machinery/vending/cola, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgj" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"bgk" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bgl" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bgn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgo" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/storage/fancy/rollingpapers, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/donut, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bgu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bgv" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgw" = ( +/obj/structure/chair, +/obj/item/clothing/head/bowler, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgx" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/structure/chair, +/obj/item/clothing/mask/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgz" = ( +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 40 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgB" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgC" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgE" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/robot_debris{ + icon_state = "gib3" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgI" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Mining Dock APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgM" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgS" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 13; + id = "arrivals_stationary"; + name = "pubby arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/pubby; + width = 6 + }, +/turf/open/space/basic, +/area/space) +"bgU" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgV" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "loungeshutters"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bha" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 28 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32; + pixel_y = 38 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Bar1"; + location = "Robo" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhn" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bho" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bhp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bht" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhu" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhv" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhF" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bhG" = ( +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bhH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bhI" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Lounge"; + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigS1"; + location = "Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lounge"; + location = "Kitchen" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhP" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 25; + req_access_txt = "29" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -25; + req_access_txt = "29" + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhU" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bhV" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bib" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bic" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bid" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bie" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"big" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bih" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bij" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bik" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bil" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bim" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bin" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Hydroponics"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bio" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bip" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biq" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bir" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Robotics"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bis" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bit" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biw" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bix" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/robot_debris{ + icon_state = "gib3" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biI" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"biK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/lounge"; + name = "Lounge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biO" = ( +/obj/structure/table/glass, +/obj/item/healthanalyzer{ + layer = 3.1 + }, +/obj/item/pen{ + layer = 3.2 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/departments/examroom{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biR" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Genetics"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biT" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Port Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/storage/emergency/port) +"biX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/emergency/port) +"biY" = ( +/turf/closed/wall, +/area/medical/morgue) +"biZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bja" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bjb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/checkpoint/medical) +"bjc" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"bjd" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bje" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/central) +"bjf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bjg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bjh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bji" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjk" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bar"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjl" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjm" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bjr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bju" = ( +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bjv" = ( +/obj/structure/closet, +/obj/item/weldingtool, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjw" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bjD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjI" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjJ" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjK" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjL" = ( +/turf/closed/wall, +/area/storage/emergency/port) +"bjN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjQ" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bjR" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjS" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjX" = ( +/obj/structure/filingcabinet, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bjY" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bjZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bka" = ( +/obj/machinery/computer/security, +/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/checkpoint/medical) +"bkb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bkc" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkd" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bke" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkh" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bkn" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci3"; + location = "Sci2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bko" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bkp" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkq" = ( +/obj/structure/table, +/obj/item/gps{ + gpstag = "RD0" + }, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/head/welding, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkr" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bks" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkt" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"bku" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bkv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bkw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bkx" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"bky" = ( +/turf/open/floor/engine, +/area/science/explab) +"bkz" = ( +/obj/machinery/camera{ + c_tag = "Experimentation Lab Chamber"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/explab) +"bkA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bkB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"bkD" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"bkF" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bkH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bkP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/starboard) +"bkQ" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkW" = ( +/obj/item/hemostat, +/obj/item/retractor, +/obj/item/cautery, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bkX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bkY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bkZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Foyer"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bla" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"blb" = ( +/turf/open/floor/plating, +/area/storage/emergency/port) +"blc" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bld" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ble" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blg" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"blj" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"blk" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bll" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bln" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26; + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blq" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blr" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bls" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blt" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blv" = ( +/obj/structure/table, +/obj/item/paicard, +/obj/item/clothing/glasses/science, +/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/hallway/primary/aft) +"blw" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blC" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/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, +/area/hallway/primary/aft) +"blE" = ( +/obj/structure/filingcabinet/chestdrawer, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"blF" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blH" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + network = list("ss13","rd") + }, +/obj/structure/sink/kitchen{ + name = "utility sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blI" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blJ" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 14 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Robotics Lab APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"blM" = ( +/obj/machinery/rnd/server, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"blN" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"blP" = ( +/obj/effect/landmark/event_spawn, +/obj/item/beacon, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"blQ" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"blR" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"blS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/book/manual/wiki/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"blT" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/wirer, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/integrated_electronics/debugger, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blV" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/stack/sheet/metal/ten, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blW" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/wirer, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blX" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"blZ" = ( +/obj/machinery/computer/camera_advanced/xenobio, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bmc" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bmd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bme" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bmf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bmg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_one_access_txt = "12;45;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bmh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmk" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bml" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bmn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bmp" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bmq" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bmr" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bms" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/medical"; + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Medbay Security Post"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmv" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/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, +/area/security/checkpoint/medical) +"bmw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmy" = ( +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Kitchen"; + location = "Med" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmC" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmH" = ( +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci2"; + location = "Sci" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmL" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bmM" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmN" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmO" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmR" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bmS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"bmT" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"bmU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"bmV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine, +/area/science/explab) +"bmW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/science/explab) +"bmX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/explab) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/explab) +"bmZ" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_x = -28; + pixel_y = 3 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bna" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bnb" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bnc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bnd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bnh" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bni" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"bnj" = ( +/turf/closed/wall, +/area/science/xenobiology) +"bnl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bnn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"bno" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnq" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnt" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bnv" = ( +/turf/closed/wall, +/area/medical/genetics) +"bnw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bnx" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/mask/surgical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bny" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bnz" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bnA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bnB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/checkpoint/medical) +"bnC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnD" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnO" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bnP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnS" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/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/assembly/flash/handheld, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bnT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bnU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bnV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/engine, +/area/science/explab) +"bnW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/science/explab) +"bnX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"bnY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/science/explab) +"bnZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"boa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/science/explab) +"boc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bod" = ( +/turf/closed/wall, +/area/science/explab) +"boe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bof" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/science/explab) +"bog" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/explab) +"boh" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/science/explab) +"bok" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bom" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"bon" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"boo" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Port Aft"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bop" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bor" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bos" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/genetics) +"bot" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bou" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics) +"bov" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bow" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"box" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boy" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boz" = ( +/obj/machinery/vending/clothing, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"boC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"boD" = ( +/obj/item/ectoplasm, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"boE" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boH" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boI" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boJ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/pen, +/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) +"boK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boL" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boM" = ( +/obj/structure/bed/roller, +/obj/machinery/camera{ + c_tag = "Medbay Entrance"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boO" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boP" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boQ" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/bot, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boU" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/obj/machinery/camera{ + c_tag = "Research Division Lobby"; + dir = 1 + }, +/obj/machinery/light, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boX" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = -26; + pixel_y = 4; + req_access_txt = "29" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"boZ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpc" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/camera{ + c_tag = "Server Room"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpd" = ( +/obj/machinery/button/door{ + id = "testlab"; + name = "Window Blast Doors"; + pixel_x = -6 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Door"; + pixel_x = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpe" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bpg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bph" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Central"; + network = list("ss13","rd") + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpi" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpn" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bpo" = ( +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bpp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bpq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bpr" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/science/xenobiology) +"bpt" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bpu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bpv" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/medical/genetics) +"bpw" = ( +/obj/structure/flora/grass/jungle, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/genetics) +"bpx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/genetics) +"bpy" = ( +/obj/machinery/clonepod, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bpz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpE" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bpM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/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) +"bpO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpR" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpS" = ( +/obj/structure/table/reinforced, +/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) +"bpT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"bpW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bpX" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"bpY" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bqb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"bqc" = ( +/obj/structure/table/reinforced, +/obj/item/pen{ + layer = 3.1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/item/folder/white, +/turf/open/floor/plating, +/area/science/lab) +"bqd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqe" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqg" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqk" = ( +/obj/machinery/aug_manipulator, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bql" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Server Room APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqm" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqn" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqo" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqq" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqs" = ( +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqx" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bqC" = ( +/obj/machinery/monkey_recycler, +/obj/structure/window/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bqE" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bqF" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bqG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqH" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqI" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqJ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqO" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bqS" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/entry"; + dir = 4; + name = "Arrivals APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqT" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Fore"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bqU" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 6 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bqV" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/light/small{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bqW" = ( +/obj/machinery/computer/cloning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bqX" = ( +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bra" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "GeneticsDoor"; + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"brb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"brc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"brd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bre" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brh" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bri" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brj" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brk" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brl" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brm" = ( +/obj/machinery/chem_master, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brq" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/item/stack/cable_coil/orange, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brr" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brt" = ( +/obj/structure/chair/office/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/lab) +"bru" = ( +/obj/machinery/holopad, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"brw" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"brx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bry" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/crowbar, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"brz" = ( +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/bot_assembly/cleanbot, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brC" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brL" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brM" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"brR" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"brT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/closet/l3closet, +/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/xenobiology) +"brU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/departments/xenobio{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"brV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"brW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"brX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bsa" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsb" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsc" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio5"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsd" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bse" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Starboard"; + network = list("ss13","rd") + }, +/obj/structure/sign/departments/xenobio{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bsl" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bsm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Arrivals Starboard Aft"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsn" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bso" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/grass/jungle/b, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/medical/genetics) +"bsp" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/grass, +/area/medical/genetics) +"bsq" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bsr" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics Cloning"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bss" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bst" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"bsx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsz" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsA" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bsB" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsC" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsE" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsF" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "medbaybolts"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "medbaybolts"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsJ" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsK" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsL" = ( +/obj/item/storage/box/beakers, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsN" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bsV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bsW" = ( +/obj/item/kirbyplants, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bsX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bsY" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bsZ" = ( +/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, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bta" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btb" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btc" = ( +/obj/machinery/computer/operating{ + dir = 8; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btd" = ( +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bte" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/server) +"btf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"btg" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/item/multitool, +/obj/item/multitool, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bth" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bti" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"btk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"btl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bts" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"btt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/sign/departments/xenobio{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/blobstart, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btK" = ( +/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) +"btL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"btM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"btN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btR" = ( +/obj/structure/flora/ausbushes/brflowers, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"btS" = ( +/turf/open/floor/grass, +/area/medical/genetics) +"btT" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"btU" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btX" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/medical_cloning{ + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btY" = ( +/obj/structure/table, +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"buc" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bud" = ( +/obj/item/wrench/medical, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bue" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/medical/sleeper) +"buf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"buh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"buj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"buk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bul" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bum" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bun" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bup" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"buq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/lab) +"bur" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/rnd/production/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"bus" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Research and Development Lab"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"but" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/clothing/mask/cigarette, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"buw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"buy" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"buz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"buA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"buC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"buD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buH" = ( +/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/white, +/area/science/explab) +"buI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"buL" = ( +/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/dark, +/area/science/xenobiology) +"buM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bva" = ( +/turf/closed/wall, +/area/maintenance/department/engine) +"bvb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bvc" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bvd" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Genetics"; + req_access_txt = "9" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bve" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/genetics) +"bvf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Medbay Port Hallway"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvh" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvk" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvm" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvw" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"bvx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/lab) +"bvy" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/delivery, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"bvz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvB" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/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, +/area/hallway/primary/aft) +"bvG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bvH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"bvI" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Science Access Airlock"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bvJ" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"bvL" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Research Division APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvT" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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/dark, +/area/science/explab) +"bvU" = ( +/obj/machinery/recharger, +/obj/structure/table, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvV" = ( +/turf/open/floor/plasteel, +/area/science/explab) +"bvW" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"bvZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwa" = ( +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwc" = ( +/obj/machinery/chem_master, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwm" = ( +/turf/closed/wall, +/area/maintenance/department/science) +"bwn" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bws" = ( +/obj/structure/closet, +/obj/item/stack/cable_coil/random, +/obj/item/electronics/airalarm, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bwt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bwu" = ( +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bwv" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bww" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwx" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwA" = ( +/obj/structure/table, +/obj/item/storage/box/rxglasses{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/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/medical/genetics) +"bwB" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/bloodbankgen, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwV" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwW" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bxa" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/research_and_development, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "R&D Lab"; + req_one_access_txt = "7;29;30" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"bxi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci9"; + location = "Sci8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci8"; + location = "Sci7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxn" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bxq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxC" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxD" = ( +/obj/structure/reagent_dispensers/watertank, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bxG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/explab) +"bxH" = ( +/obj/effect/turf_decal/box/corners, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxK" = ( +/obj/structure/chair/stool, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxM" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxO" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bxQ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxR" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxS" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxY" = ( +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bxZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bya" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"byb" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"byc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"byd" = ( +/obj/structure/flora/junglebush/c, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bye" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"byf" = ( +/obj/structure/table, +/obj/item/storage/box/disks, +/obj/item/flashlight/pen, +/obj/item/flashlight/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byg" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byk" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/monkeycubes, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bym" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"byn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"byo" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/sleeper) +"byp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bys" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"byt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"byu" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"byv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoshutters"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"byw" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/machinery/power/apc{ + dir = 8; + name = "Chemistry APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"byx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"byz" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Chemistry Testing"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/mob/living/simple_animal/mouse/white{ + name = "Labrette" + }, +/turf/open/floor/engine, +/area/medical/chemistry) +"byA" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/medical/chemistry) +"byC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/research{ + name = "R&D Lab"; + req_one_access_txt = "7;29;30" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"byE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"byF" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byH" = ( +/obj/structure/table, +/obj/item/multitool, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci5"; + location = "Sci4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"byP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"byQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"byR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"byS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byU" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byV" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byW" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byX" = ( +/obj/machinery/camera{ + c_tag = "Research Division Secure Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bza" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzb" = ( +/obj/structure/closet/radiation, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/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/dark, +/area/science/explab) +"bzc" = ( +/obj/structure/reagent_dispensers/fueltank, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"bze" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/explab) +"bzg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bzh" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("ss13","rd") + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzi" = ( +/obj/structure/table, +/obj/item/electropack, +/obj/item/taperecorder, +/obj/item/screwdriver, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzj" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzr" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzy" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"bzz" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + dir = 8; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzC" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bzD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bzE" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Aft"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bzF" = ( +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_one_access_txt = "9" + }, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/genetics) +"bzG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzH" = ( +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzO" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzP" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bzQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzR" = ( +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzT" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/mask/surgical, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzU" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bzV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzY" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"bzZ" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAa" = ( +/obj/machinery/computer/crew, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAb" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAc" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/obj/machinery/button/door{ + dir = 4; + id = "cmoshutters"; + name = "Privacy shutters"; + pixel_x = 38; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAg" = ( +/obj/structure/table/glass, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/stack/cable_coil/random, +/obj/item/book/manual/wiki/chemistry, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/stack/sheet/mineral/plasma{ + amount = 2; + layer = 2.9 + }, +/obj/item/screwdriver, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAi" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/engine, +/area/medical/chemistry) +"bAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bAo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bAq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bAu" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bAv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAy" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bAA" = ( +/turf/closed/wall, +/area/science/storage) +"bAB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/science/storage) +"bAC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAF" = ( +/turf/closed/wall, +/area/science/mixing) +"bAG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"bAH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bAI" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bAJ" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAK" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAL" = ( +/obj/structure/transit_tube/station/reverse/flipped, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/extinguisher, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bAN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/medical/genetics) +"bAO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/grass, +/area/medical/genetics) +"bAP" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/medical/genetics) +"bAQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/item/storage/pill_bottle/mutadone, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAR" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAV" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics Requests Console"; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAW" = ( +/turf/closed/wall, +/area/medical/virology) +"bAX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bAY" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/medical/virology) +"bBb" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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) +"bBf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bBg" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBi" = ( +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBo" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"bBp" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"bBq" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBu" = ( +/obj/item/kirbyplants/dead, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/button/door{ + desc = "A switch that controls privacy shutters."; + id = "rdprivacy"; + name = "Privacy Shutters"; + pixel_x = 40; + pixel_y = -5; + req_access_txt = "30" + }, +/obj/machinery/keycard_auth{ + pixel_x = 28; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "rndshutters"; + name = "Research Lockdown"; + pixel_x = 28; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "RnD Shutters"; + pixel_x = 40; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBw" = ( +/obj/machinery/computer/security, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBx" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBy" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_x = 28; + 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 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-20"; + pixel_y = 3 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bBC" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/storage) +"bBD" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/storage) +"bBE" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bBF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bBG" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/storage) +"bBH" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBK" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBL" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/airalarm/unlocked{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBP" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBQ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Toxins Lab APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/camera{ + c_tag = "Toxins Lab Starboard"; + network = list("ss13","rd") + }, +/obj/machinery/light{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/portable_atmospherics/pump, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBU" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"bBV" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bBW" = ( +/turf/open/space, +/area/space) +"bBX" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/engine) +"bBY" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bBZ" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCa" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCb" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCc" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCe" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Genetics APC"; + pixel_x = 27 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCh" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCi" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bCj" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bCl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bCm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bCn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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) +"bCo" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bCq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Office"; + req_access_txt = "40" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/heads/cmo) +"bCr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCs" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen{ + layer = 3.1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCt" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/clothing/glasses/hud/health, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCu" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/stack/medical/gauze, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCB" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCD" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCE" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCG" = ( +/obj/structure/displaycase/labcage, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bCK" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Science Security Post"; + dir = 4; + network = list("ss13","rd") + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCL" = ( +/obj/effect/landmark/start/depsec/science, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCN" = ( +/obj/structure/chair/comfy, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bCO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bCP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/storage) +"bCQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bCR" = ( +/turf/open/floor/engine, +/area/science/storage) +"bCS" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/science/storage) +"bCT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bCU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bCV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"bCW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bCX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bCZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDb" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDc" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/wrench, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDe" = ( +/obj/machinery/light{ + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bDf" = ( +/obj/structure/transit_tube, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bDg" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDi" = ( +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDj" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDk" = ( +/obj/item/chair, +/obj/item/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDl" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bDm" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bDn" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/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/white, +/area/medical/genetics) +"bDo" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDq" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/sleeper) +"bDs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/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) +"bDt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDv" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDx" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/cmo"; + dir = 4; + name = "CMO's Office APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDy" = ( +/turf/closed/wall, +/area/medical/exam_room) +"bDz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDA" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bDB" = ( +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDC" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDD" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDE" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDF" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDG" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDK" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bDL" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/science/storage) +"bDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/storage) +"bDN" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/science/storage) +"bDO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/storage) +"bDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/science/storage) +"bDQ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bDR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research/glass{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bEa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bEb" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEc" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEd" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEf" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEj" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/obj/machinery/meter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEl" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEm" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEq" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEr" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"bEs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEu" = ( +/obj/structure/closet/l3closet, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/rnd/production/techfab/department/medical, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEw" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEx" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/southleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEy" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/southright{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEz" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bED" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/valentine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEE" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEF" = ( +/obj/item/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/cartridge/medical, +/obj/item/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/structure/table, +/obj/machinery/light, +/obj/item/wrench/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEG" = ( +/obj/item/folder/blue, +/obj/item/stamp/cmo, +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEH" = ( +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/closet, +/obj/item/clothing/under/rank/medical/doctor/nurse, +/obj/item/clothing/head/nursehat, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/blobstart, +/obj/item/melee/baton/cattleprod{ + preload_cell_type = /obj/item/stock_parts/cell/high + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "CMOCell"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEL" = ( +/obj/machinery/door/airlock/command{ + id_tag = "CMOCell"; + name = "Personal Examination Room"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEQ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bER" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bES" = ( +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/machinery/light, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bET" = ( +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/stamp/rd, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("ss13","rd") + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bEU" = ( +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/machinery/computer/security/telescreen/rd{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bEV" = ( +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/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/dark, +/area/crew_quarters/heads/hor) +"bEW" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bEX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bEY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Science Security APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/closet/secure_closet/security/science, +/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, +/area/security/checkpoint/science) +"bEZ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bFa" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/storage) +"bFb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/storage) +"bFd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/storage) +"bFf" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bFh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFi" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFj" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFk" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFl" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bFp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bFr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFu" = ( +/obj/machinery/button/massdriver{ + dir = 4; + id = "toxinsdriver"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"bFy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFz" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFB" = ( +/obj/item/newspaper, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFC" = ( +/obj/item/wallframe/camera, +/obj/machinery/button/door{ + id = "PottySci"; + name = "Bathroom Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 4; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFD" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFE" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 6; + id = "monastery_shuttle_asteroid"; + name = "monastery"; + width = 5 + }, +/turf/open/space, +/area/space/nearstation) +"bFF" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"bFI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFL" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFM" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bFN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"bFO" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"bFP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFR" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFU" = ( +/turf/closed/wall, +/area/medical/surgery) +"bFV" = ( +/obj/structure/table/glass, +/obj/item/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/item/lipstick/black, +/obj/machinery/power/apc{ + dir = 8; + name = "Personal Examination Room APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/item/reagent_containers/pill/morphine, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFW" = ( +/obj/effect/decal/remains/human, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFX" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/restraints/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"bGa" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/hallway/primary/aft) +"bGb" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/checkpoint/science) +"bGc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bGd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bGe" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bGf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine, +/area/science/storage) +"bGg" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/storage) +"bGh" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bGi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/engine, +/area/science/storage) +"bGj" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGk" = ( +/obj/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGm" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGn" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGo" = ( +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGp" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Toxins Lab Port"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGq" = ( +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGu" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGv" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGw" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Launch Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bGB" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bGD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bGE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/dock) +"bGF" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/chapel/dock) +"bGG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/chapel/dock) +"bGH" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bGI" = ( +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"bGK" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bGM" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bGN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bGO" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGP" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGQ" = ( +/obj/structure/window/reinforced, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGR" = ( +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Monkey Pen"; + req_one_access_txt = "39" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGS" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "39" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 24 + }, +/obj/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) +"bGT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGU" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/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) +"bGV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGW" = ( +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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) +"bHa" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bHb" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHc" = ( +/obj/machinery/computer/med_data, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHd" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/surgery) +"bHf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHj" = ( +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHk" = ( +/obj/item/gps{ + gpstag = "RD0" + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/storage) +"bHv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/science/storage) +"bHw" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"bHy" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"bHz" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bHA" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/button/ignition{ + id = "toxigniter"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_x = 6; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bHC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Incinerator Output Pump" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHD" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHE" = ( +/obj/structure/window/reinforced, +/obj/machinery/doppler_array/research/science, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHI" = ( +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"bHJ" = ( +/turf/open/floor/plating, +/area/chapel/dock) +"bHK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bHL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bHM" = ( +/turf/closed/wall/r_wall, +/area/chapel/dock) +"bHN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bHP" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHQ" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHR" = ( +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHS" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHT" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bHU" = ( +/obj/machinery/vending/medical, +/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) +"bHV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + 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) +"bHY" = ( +/obj/machinery/camera{ + c_tag = "Virology"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIc" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bId" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIe" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Equipment Room"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIf" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIg" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/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/white, +/area/medical/medbay/central) +"bIh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"bIk" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIl" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIm" = ( +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"bIo" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/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_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Surgery"; + network = list("ss13","surgery") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIs" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng2"; + location = "Eng" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci6"; + location = "Eng3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci7"; + location = "Sci6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bID" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng"; + location = "Sci5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIE" = ( +/obj/machinery/vending/assist, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bIF" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/storage) +"bIG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/science/storage) +"bIH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc{ + name = "Toxins Storage APC"; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/storage) +"bII" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bIJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/storage) +"bIK" = ( +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bIL" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/turf/open/floor/engine, +/area/science/mixing) +"bIM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bIN" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 4; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bIP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"bIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bIR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bIT" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bIU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/closed/wall, +/area/chapel/dock) +"bIV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/dock) +"bIW" = ( +/obj/machinery/computer/shuttle/monastery_shuttle, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bIX" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bIY" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space) +"bIZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJa" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJb" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJc" = ( +/obj/structure/chair/comfy/black, +/obj/item/trash/pistachios, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJd" = ( +/obj/structure/chair/comfy/black, +/obj/item/stack/spacecash/c100, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJe" = ( +/obj/structure/chair/comfy/black, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJf" = ( +/obj/structure/chair/comfy/black, +/obj/item/cigbutt, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJg" = ( +/obj/item/trash/popcorn, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJh" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJi" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJj" = ( +/obj/structure/rack, +/obj/item/cartridge/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJk" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJo" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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) +"bJp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Recovery Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJw" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJy" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Research Division Entrance"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJN" = ( +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bJO" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Toxins Storage"; + req_access_txt = "24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bJP" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bJQ" = ( +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_x = -24 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJR" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/mixing) +"bJV" = ( +/obj/machinery/mass_driver{ + id = "toxinsdriver" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bJZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bKa" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Monastery Docking Bay APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bKf" = ( +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bKh" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Arena" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/mob/living/simple_animal/chicken{ + name = "Bloodthirsty Peckins" + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKl" = ( +/obj/item/stack/medical/gauze, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bKm" = ( +/obj/structure/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bKn" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/virology) +"bKo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bKp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bKq" = ( +/obj/effect/spawner/structure/window, +/obj/structure/sign/warning/deathsposal, +/turf/open/floor/plating, +/area/medical/virology) +"bKr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKs" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKt" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKu" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKv" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/curtain{ + layer = 4.5 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKw" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKx" = ( +/obj/machinery/button/door{ + id = "patientB"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Patient Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKy" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bKB" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKD" = ( +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKF" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKG" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Surgery APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bKI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bKO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bKP" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bKQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKV" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKX" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bLa" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bLb" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bLc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "mix_in"; + name = "distro out" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLd" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLe" = ( +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLf" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/turf/open/floor/engine, +/area/science/mixing) +"bLh" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bLn" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLq" = ( +/obj/machinery/door/airlock/grunge{ + name = "Monastery Transit" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLr" = ( +/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, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLt" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bLu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLv" = ( +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLy" = ( +/obj/structure/mineral_door/wood{ + name = "The Roosterdome" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bLz" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLB" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLC" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/mineral/plasma{ + amount = 2 + }, +/obj/item/storage/box/monkeycubes{ + layer = 3.1 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bLE" = ( +/obj/structure/table/glass, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bLF" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen{ + layer = 3.1 + }, +/obj/item/clothing/neck/stethoscope{ + layer = 3.2 + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLG" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLI" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "patientB"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bLJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/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) +"bLK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bLL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bLM" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLO" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLQ" = ( +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLR" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLS" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLT" = ( +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"bLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bLW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bLX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bLY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bLZ" = ( +/obj/machinery/meter/atmos/atmos_waste_loop, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMa" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMb" = ( +/obj/machinery/meter/atmos/distro_loop, +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMe" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMf" = ( +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMh" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "mix_in"; + sensors = list("mix_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"bMj" = ( +/obj/machinery/air_sensor{ + id_tag = "mix_sensor" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bMk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bMl" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "inc_in" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMm" = ( +/obj/machinery/igniter{ + id = "toxigniter"; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/science/mixing) +"bMq" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"bMr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bMs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + 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" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/dock) +"bMw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bMx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bMy" = ( +/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/dock) +"bMA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bMB" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bMC" = ( +/obj/item/stack/spacecash/c10, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bMD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bME" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bMF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bMG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bMH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMJ" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = 32 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMK" = ( +/obj/item/soap/nanotrasen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/gun/syringe/dart, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMM" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMN" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/item/stack/medical/gauze, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMO" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMP" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMQ" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMR" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMU" = ( +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway Atmospherics"; + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/aft) +"bMX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bMY" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "External to Filter" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNf" = ( +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNi" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bNn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "mix_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bNp" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bNq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Launch Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bNr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bNs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bNt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Monastery Dock"; + dir = 1; + network = list("ss13","monastery") + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bNu" = ( +/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" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light/small, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bNw" = ( +/turf/closed/wall, +/area/chapel/dock) +"bNx" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bNy" = ( +/obj/structure/transit_tube/horizontal, +/obj/machinery/camera{ + c_tag = "Monastery Transit"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bNz" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/chapel/dock) +"bNA" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/dock) +"bNB" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bNE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"bNF" = ( +/obj/item/stack/medical/suture, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bNG" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNH" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNI" = ( +/obj/structure/window/reinforced, +/mob/living/simple_animal/chicken{ + name = "Killer Cluck" + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNJ" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Arena" + }, +/obj/structure/window/reinforced, +/obj/structure/chair/stool, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNK" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNL" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNM" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNN" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNP" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNQ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNT" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNU" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNV" = ( +/obj/item/wrench/medical, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bNX" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"bOf" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bOg" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOs" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bOt" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bOu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/mixing) +"bOv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bOw" = ( +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bOx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bOy" = ( +/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{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bOz" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bOA" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bOB" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"bOD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"bOE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/virology) +"bOF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/aft) +"bON" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bOO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bOS" = ( +/obj/effect/turf_decal/vg_decals/atmos/mix, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bOT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOU" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOV" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPa" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPd" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPe" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPf" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bPg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "n2o_out"; + name = "n2o out" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bPh" = ( +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/mixing) +"bPn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bPo" = ( +/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/dock) +"bPp" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPq" = ( +/obj/item/trash/chips, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPr" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPs" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"bPv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space/basic, +/area/space/nearstation) +"bPz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPA" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPB" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bPC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPD" = ( +/obj/structure/table, +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPE" = ( +/turf/closed/wall, +/area/storage/tech) +"bPF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Tech Storage Maintenance"; + req_access_txt = "23" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bPG" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPK" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPL" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPN" = ( +/obj/machinery/conveyor_switch{ + id = "atmosdeliver" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPO" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPQ" = ( +/turf/closed/wall, +/area/engine/atmos) +"bPR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bPS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPT" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPX" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bPZ" = ( +/obj/machinery/air_sensor{ + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQa" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQc" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Dock Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQd" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQe" = ( +/obj/item/flashlight/lantern{ + icon_state = "lantern-on" + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQf" = ( +/obj/structure/cable{ + 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" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"bQh" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Dock Staboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQi" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bQj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQm" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQn" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQo" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQr" = ( +/turf/closed/wall/r_wall, +/area/storage/tech) +"bQs" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQu" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQv" = ( +/obj/structure/rack, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/techstorage/engineering, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQw" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/camera{ + c_tag = "Tech Storage" + }, +/obj/item/circuitboard/computer/monastery_shuttle, +/obj/effect/spawner/lootdrop/techstorage/service, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQx" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/rnd, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQy" = ( +/obj/structure/rack, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/electronics/firealarm, +/obj/item/electronics/firelock, +/obj/item/electronics/tracker, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQz" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQA" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQB" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Hall APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng3"; + location = "Eng2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQD" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bQJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Ports to Filter" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQM" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Unfiltered to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bQP" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bQR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bQS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bQT" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQU" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRa" = ( +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"bRb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bRd" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRe" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bRg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRm" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bRs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRx" = ( +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRy" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRA" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRC" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bRD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"bRF" = ( +/obj/structure/girder, +/turf/closed/wall, +/area/maintenance/department/engine) +"bRG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRH" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bRL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/medical, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/tcomms, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRQ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/security, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRU" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSa" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/machinery/conveyor{ + dir = 4; + id = "atmosdeliver" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSb" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/conveyor_switch{ + id = "atmosdeliver" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSe" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "tox_out"; + name = "toxin out" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSk" = ( +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSm" = ( +/obj/structure/flora/ausbushes, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bSn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bSo" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSp" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bSq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bSt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSu" = ( +/obj/item/broken_bottle, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSv" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSw" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bSx" = ( +/obj/structure/closet, +/obj/item/restraints/handcuffs/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSy" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"bSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bSA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bSB" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bSC" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bSD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bSE" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/beacon, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSN" = ( +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway Engineering"; + dir = 1; + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSQ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSR" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSS" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bST" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSU" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSV" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "tox_in"; + name = "Plasma Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSW" = ( +/obj/machinery/air_sensor{ + id_tag = "tox_sensor" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSX" = ( +/obj/effect/turf_decal/vg_decals/atmos/plasma, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/toxins, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bTb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bTc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"bTd" = ( +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/vending_refill/cola, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTf" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Virology Waste to Space" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bTg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Virology Waste to Atmospherics" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTh" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air Out" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bTi" = ( +/obj/item/picket_sign, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTj" = ( +/obj/structure/bonfire, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTk" = ( +/obj/structure/closet, +/obj/item/cigbutt/cigarbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTl" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTo" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTr" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bTs" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bTt" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/electronics/apc, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTw" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTx" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/machinery/light{ + light_color = "#cee5d2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTy" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTz" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTA" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/multitool, +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTB" = ( +/obj/machinery/power/apc{ + areastring = "/area/storage/tech"; + name = "Tech Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/structure/closet/crate/solarpanel_small, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bTD" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"bTE" = ( +/turf/closed/wall, +/area/engine/engineering) +"bTF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/break_room) +"bTH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/plaques/atmos{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Entrance" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"bTP" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Starboard"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bTW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bTX" = ( +/obj/structure/table, +/obj/item/storage/box/mousetraps, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUb" = ( +/obj/structure/grille/broken, +/obj/structure/musician/piano, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUc" = ( +/obj/item/reagent_containers/food/snacks/beans, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUd" = ( +/obj/structure/closet, +/obj/item/shard, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUe" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUf" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUg" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bUh" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUi" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/camera{ + c_tag = "Engineering Security Post"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUj" = ( +/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/checkpoint/engineering) +"bUk" = ( +/obj/machinery/computer/secure_data, +/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/checkpoint/engineering) +"bUl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Engineering Foyer APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUs" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUC" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bUD" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"bUE" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"bUF" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUG" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUH" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"bUI" = ( +/obj/item/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/item/cartridge/atmos, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office" + }, +/obj/machinery/computer/security/telescreen/ce{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUK" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUL" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUM" = ( +/obj/machinery/computer/card/minor/ce, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/stairs, +/area/storage/tech) +"bUO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUP" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall, +/area/engine/engine_smes) +"bUQ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUS" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUT" = ( +/turf/closed/wall, +/area/engine/engine_smes) +"bUU" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"bUV" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUW" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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, +/area/security/checkpoint/engineering) +"bUZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/goonplaque, +/area/engine/break_room) +"bVb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVd" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVg" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "incinerator mix pump" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/engine/atmos) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bVo" = ( +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bVp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bVr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bVs" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVw" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVy" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVC" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVD" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/paper/monitorkey, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVE" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVH" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/lighter, +/obj/item/stamp/ce, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "CE Office APC"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVL" = ( +/obj/structure/table, +/obj/item/storage/box/smart_metal_foam{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVM" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVN" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVO" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/engineering"; + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bVS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 27; + pixel_y = -25 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bVY" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVZ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWb" = ( +/obj/machinery/computer/atmos_control/tank/carbon_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bWe" = ( +/obj/machinery/air_sensor/atmos/carbon_tank, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWf" = ( +/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWh" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"bWi" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush, +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Primary Entrance"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bWj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bWk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bWl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bWn" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/clothing/glasses/meson/gar, +/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) +"bWo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWr" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/RnD_secure, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/storage/tech) +"bWt" = ( +/obj/structure/rack, +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 1 + }, +/obj/effect/spawner/lootdrop/techstorage/command, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/storage/tech) +"bWu" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/AI, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/storage/tech) +"bWv" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the engine containment area."; + dir = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWz" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWA" = ( +/obj/structure/filingcabinet, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the engine containment area."; + dir = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWC" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/structure/closet/secure_closet/security/engine, +/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, +/area/security/checkpoint/engineering) +"bWD" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bWE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/break_room) +"bWI" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWJ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bWT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWV" = ( +/turf/closed/wall, +/area/chapel/main/monastery) +"bWW" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/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/effect/turf_decal/sand, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"bWZ" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bXa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bXd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"bXe" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bXf" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXg" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "ce_privacy"; + name = "Privacy Shutters"; + pixel_x = 24; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXk" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bXl" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engine/engine_smes"; + dir = 8; + name = "Engine Room APC"; + pixel_x = -26 + }, +/obj/structure/cable, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bXr" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Waste to Space" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXs" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXu" = ( +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXw" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXx" = ( +/obj/machinery/computer/atmos_control/tank/oxygen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXy" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXA" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXB" = ( +/obj/machinery/computer/atmos_control/tank/air_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXC" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bXI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bXJ" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bXL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXN" = ( +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXS" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bXU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bXV" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bXY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bXZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bYa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYb" = ( +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"bYc" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYd" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYe" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage"; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bYi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYj" = ( +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYk" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYp" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bYs" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bYt" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bYu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bYv" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bYw" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bYz" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bYA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"bYB" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"bYF" = ( +/obj/item/trash/pistachios, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bYI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Fore" + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYT" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Starboard Fore" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZc" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Incinerator APC"; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZh" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZi" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZl" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"bZm" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"bZn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"bZo" = ( +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"bZr" = ( +/obj/item/trash/tray, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bZs" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bZt" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bZx" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/item/storage/belt/utility, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZK" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"bZL" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZQ" = ( +/obj/machinery/computer/turbine_computer{ + dir = 8; + id = "incineratorturbine" + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 24; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZR" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 22 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"bZT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 8 + }, +/obj/machinery/air_sensor/atmos/incinerator_tank{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"bZV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bZY" = ( +/turf/closed/wall, +/area/chapel/office) +"caa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"cab" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"cae" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engine/engineering) +"caf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cah" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caj" = ( +/obj/structure/table, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cak" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cal" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cam" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"can" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"car" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caw" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cax" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caA" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caD" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caG" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Incinerator"; + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the turbine vent."; + dir = 4; + name = "turbine vent monitor"; + network = list("turbine"); + pixel_x = -29 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = -6; + pixel_y = -26 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caQ" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 8; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caR" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/turbine{ + dir = 4; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caS" = ( +/turf/closed/wall, +/area/chapel/asteroid/monastery) +"caT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"caV" = ( +/obj/machinery/holopad, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"caW" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"caZ" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cba" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"cbc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbe" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbf" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbi" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbn" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbo" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/airlock_painter, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbs" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cbt" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cbu" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cbv" = ( +/obj/effect/turf_decal/vg_decals/atmos/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cbw" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cbx" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/vg_decals/atmos/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cby" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"cbz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cbA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Incinerator to Output" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbC" = ( +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = 26; + pixel_y = -6 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cbE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cbF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cbG" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"cbK" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cbM" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"cbN" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cbO" = ( +/obj/structure/table/wood, +/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" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"cbR" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cbS" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbT" = ( +/obj/item/shovel, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbV" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/engineering) +"cbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbX" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cbY" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cca" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccb" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccc" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cci" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccm" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"ccn" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cco" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"ccp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccq" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccr" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Incinerator Output Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccs" = ( +/obj/structure/lattice, +/turf/closed/wall, +/area/maintenance/department/cargo) +"ccu" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ccE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/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/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ccH" = ( +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"ccJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ccM" = ( +/obj/structure/chair, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ccN" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/gauze, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ccO" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ccQ" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/engineering) +"ccR" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/gps/engineering, +/turf/open/floor/plating, +/area/engine/engineering) +"ccW" = ( +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ccY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cda" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdg" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdh" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdi" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdl" = ( +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdm" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cdo" = ( +/turf/open/floor/carpet, +/area/chapel/office) +"cdp" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/carpet/black, +/area/chapel/office) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"cdr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cds" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Port Access"; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdu" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"cdw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdC" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdD" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"cdE" = ( +/obj/structure/chair, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cdI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/high, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Aft"; + dir = 1; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdR" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cdT" = ( +/obj/machinery/power/emitter/anchored{ + dir = 4; + state = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cdW" = ( +/obj/structure/reflector/box/anchored, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceb" = ( +/obj/machinery/computer/rdconsole/production{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cec" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ced" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cee" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"cef" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"ceg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/office) +"cei" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cej" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cek" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cel" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cen" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceo" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ceq" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/engineering) +"cer" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Transit Tube"; + req_access_txt = "10; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cet" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cey" = ( +/obj/structure/girder, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ceB" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"ceC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceF" = ( +/obj/structure/filingcabinet, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceL" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/engineering) +"ceU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching telecomms."; + layer = 4; + name = "Telecomms Telescreen"; + network = list("tcomms"); + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceX" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cfa" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cff" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"cfl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfm" = ( +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"cfn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfr" = ( +/obj/structure/transit_tube_pod, +/obj/structure/transit_tube/station/reverse{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cfs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfu" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/engine/engineering) +"cfC" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cfD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Monastery APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfI" = ( +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfL" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Starboard Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"cfN" = ( +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cfO" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cfP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfQ" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"cfS" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfX" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Engine" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgb" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cgd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cgf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cgk" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/camera{ + c_tag = "Monastery Garden"; + network = list("ss13","monastery") + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgm" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/watermelon/holy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cgp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cgr" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engine/engineering) +"cgs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cgu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cgv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"cgG" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cgH" = ( +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgI" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgJ" = ( +/obj/item/cultivator, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgK" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sugarcane, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgL" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplain/holidaypriest, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/head/nun_hood, +/obj/machinery/button/door{ + id = "Cell1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgM" = ( +/obj/structure/dresser, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgN" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgO" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cgP" = ( +/obj/structure/transit_tube, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cgQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cgU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cgV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"chb" = ( +/obj/machinery/camera{ + c_tag = "Monastery Kitchen"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chc" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chd" = ( +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"chi" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chk" = ( +/obj/structure/sink/puddle, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chl" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cho" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"chp" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell1"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chr" = ( +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cht" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"chv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"chB" = ( +/obj/item/seeds/banana, +/obj/item/seeds/grass, +/obj/item/seeds/grape, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chC" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chD" = ( +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"chG" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"chK" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/instrument/violin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chL" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chM" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chN" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/obj/item/soap/homemade, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"chU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chV" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/storage/box/ingredients/wildcard{ + layer = 3.1 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chY" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chZ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cib" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cic" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cid" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cif" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/stack/cable_coil/yellow, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cig" = ( +/obj/structure/transit_tube/crossing, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cio" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplain/holidaypriest, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/head/nun_hood, +/obj/machinery/button/door{ + id = "Cell2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cip" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXnineteen, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciq" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cit" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"civ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ciy" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"ciz" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciE" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciF" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell2"; + name = "Cell 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciG" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"ciI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Chamber" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"ciJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciK" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciN" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciO" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + layer = 3.1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciT" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/harebell, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciV" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciX" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciY" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciZ" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cjf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Monastery Cemetary" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjm" = ( +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"cjo" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/small, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjp" = ( +/turf/closed/wall, +/area/library) +"cjq" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjr" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"cju" = ( +/turf/closed/mineral, +/area/asteroid/nearstation/bomb_site) +"cjv" = ( +/turf/closed/wall, +/area/asteroid/nearstation/bomb_site) +"cjw" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/asteroid/nearstation/bomb_site) +"cjx" = ( +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cjB" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "monastery"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"cjC" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cjH" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Garden" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjO" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 20; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cjP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cjQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library) +"cjR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cjV" = ( +/obj/machinery/camera/preset/toxins, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cjZ" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cka" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ckc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cke" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckf" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckg" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckh" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cki" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckl" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/library) +"cko" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plasteel/dark, +/area/library) +"ckp" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckt" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cku" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ckv" = ( +/obj/machinery/mass_driver{ + id = "chapelgun" + }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Mass Driver" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckw" = ( +/obj/machinery/mass_driver{ + id = "chapelgun" + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cky" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckz" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckA" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckB" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckC" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckD" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckH" = ( +/turf/open/floor/plasteel/dark, +/area/library) +"ckI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckJ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ckK" = ( +/turf/closed/mineral/random/low_chance, +/area/asteroid/nearstation/bomb_site) +"ckL" = ( +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/asteroid/nearstation/bomb_site) +"ckM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckN" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckP" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"ckR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckS" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Monastery Library"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckT" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckU" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckV" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckW" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/plasteel/dark, +/area/library) +"ckX" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clb" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "mass driver door" + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"cle" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"clf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/box/lights/bulbs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"clg" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cli" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"clj" = ( +/obj/item/flashlight/lantern{ + icon_state = "lantern-on" + }, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"clk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clm" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cln" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/dark, +/area/library) +"cls" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral, +/area/asteroid/nearstation/bomb_site) +"clv" = ( +/turf/closed/mineral/iron, +/area/asteroid/nearstation/bomb_site) +"clw" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clC" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clD" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clF" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/low_chance, +/area/asteroid/nearstation/bomb_site) +"clG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clH" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clL" = ( +/turf/closed/wall, +/area/tcommsat/computer) +"clM" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Waste to Space" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clN" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clP" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall, +/area/tcommsat/computer) +"clU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clY" = ( +/obj/item/beacon, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cma" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Telecommunications Maintenance"; + req_access_txt = "61" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cme" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cmf" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Chamber"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmk" = ( +/obj/machinery/power/apc{ + areastring = "/area/tcommsat/computer"; + dir = 1; + name = "Telecomms Monitoring APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cml" = ( +/obj/machinery/announcement_system, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmm" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/office/dark, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmr" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cms" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmt" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Port"; + dir = 8; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cmu" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmv" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cmx" = ( +/obj/machinery/computer/telecomms/server{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmy" = ( +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmz" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Starboard"; + dir = 4; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cmB" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cmF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cmG" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmH" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmK" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmL" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmM" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmN" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmO" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmP" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmQ" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmV" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmW" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmY" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmZ" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cna" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnb" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnc" = ( +/obj/machinery/power/terminal, +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnd" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cne" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnj" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnk" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnl" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnm" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnn" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cno" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnp" = ( +/obj/machinery/camera/preset/toxins{ + c_tag = "Bomb Testing Asteroid Aft"; + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cnq" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/asteroid/nearstation/bomb_site) +"cnr" = ( +/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) +"cns" = ( +/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) +"cnt" = ( +/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) +"cnu" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Server Room"; + dir = 1; + network = list("tcomms") + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnv" = ( +/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) +"cnw" = ( +/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) +"cnx" = ( +/obj/structure/table, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cny" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Port Aft"; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cnz" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Starboard Aft"; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cnC" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "AI Satellite turret control"; + pixel_x = -5; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cnD" = ( +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/lattice, +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnG" = ( +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAS) +"cnH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnN" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/camera{ + c_tag = "Brig Equipment Room" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnP" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnQ" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnT" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnV" = ( +/obj/structure/punching_bag, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnX" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cod" = ( +/obj/structure/table, +/obj/item/clothing/under/color/grey, +/obj/machinery/power/apc{ + dir = 1; + name = "Dormitory APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"coe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Dormitory Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"coi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"coj" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cok" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"col" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"com" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"con" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cop" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cor" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "public external airlock" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cou" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"coy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bridge"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/bar) +"coG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"coH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"coJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"coL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"coN" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"coV" = ( +/obj/machinery/vending/cigarette, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"coW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cpa" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"cpb" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpc" = ( +/obj/machinery/chem_dispenser/drinks, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Bar Drinks" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpe" = ( +/obj/machinery/door/airlock{ + name = "Bar Access"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpg" = ( +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = 26; + req_access_txt = "28" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cph" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpk" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 19 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpm" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/pie/cream, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpn" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/spaghetti, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpo" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpq" = ( +/obj/machinery/deepfryer, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cps" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpt" = ( +/obj/item/beacon, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpu" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpx" = ( +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "kitchenshutters"; + name = "Kitchen Shutters Control"; + pixel_x = 5; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpz" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpA" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"cpH" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpI" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpK" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpM" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpT" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpU" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqe" = ( +/obj/effect/turf_decal/plaque, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Med"; + location = "Sci9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqi" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cql" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"cqz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqE" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18"; + layer = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"cqS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cqU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"cqV" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cqW" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"cqX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"crb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/chapel/office) +"cre" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"crg" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crh" = ( +/obj/machinery/button/crematorium{ + id = "foo"; + pixel_x = 25 + }, +/obj/structure/bodycontainer/crematorium{ + id = "foo" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cri" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/engine/engineering) +"crj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crl" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"crm" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/space/nearstation) +"crt" = ( +/obj/structure/table/wood/fancy, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cru" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crv" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crx" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cry" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"crz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crA" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crD" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Chapel Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crL" = ( +/obj/structure/chair/wood/normal, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"crM" = ( +/obj/structure/chair/wood/normal, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"crN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"crT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Chapel Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crY" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/breadslice/plain, +/obj/item/reagent_containers/food/snacks/breadslice/plain{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/breadslice/plain{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csd" = ( +/turf/open/floor/carpet/black, +/area/chapel/office) +"cse" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csi" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csk" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csn" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_x = -32 + }, +/obj/structure/closet, +/obj/item/storage/backpack/cultpack, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/suit/chaplain/holidaypriest, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cso" = ( +/obj/structure/table/wood, +/obj/item/nullrod, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csp" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"css" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"csv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csy" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"csB" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csC" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/chapel/office) +"csF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/chapel/office) +"csG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/chapel/office) +"csM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Chapel Office Tunnel"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"csN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Starboard Access"; + network = list("ss13","monastery") + }, +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/chapel/main/monastery) +"csY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cta" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cte" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"ctg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cth" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctu" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"ctJ" = ( +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctK" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Fore"; + network = list("ss13","monastery") + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctQ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"ctS" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ctX" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/floor/carpet, +/area/chapel/office) +"cuc" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Xenobiology Central"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cui" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"cuk" = ( +/obj/structure/closet{ + name = "beekeeping wardrobe" + }, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cul" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cum" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cun" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuo" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cup" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/seeds/watermelon/holy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cus" = ( +/obj/structure/closet{ + name = "beekeeping supplies" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cut" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuu" = ( +/obj/item/storage/bag/plants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuv" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuw" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cux" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/tea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuy" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/beebox, +/obj/item/queen_bee/bought, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuB" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuE" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/carrot, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuH" = ( +/obj/item/hatchet, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuI" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuJ" = ( +/obj/item/shovel/spade, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Dining Room"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuM" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Garden APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuO" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sugarcane, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuS" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuU" = ( +/obj/machinery/door/airlock{ + name = "Dining Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Garden" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuY" = ( +/obj/machinery/door/airlock{ + name = "Garden" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuZ" = ( +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cvb" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvd" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cve" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvf" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cvg" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvh" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvi" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvj" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/small, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvq" = ( +/obj/machinery/camera{ + c_tag = "Monastery Secondary Dock"; + dir = 8; + network = list("ss13","monastery") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Coffin Storage"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Coffin Storage"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvA" = ( +/obj/machinery/door/airlock/external{ + name = "Dock Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvB" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvC" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvE" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvI" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvJ" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cemetary"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvS" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvT" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cvV" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cvY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cvZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cwa" = ( +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cwc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Monastery Maintenance"; + req_one_access_txt = "22;24;10;11;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwe" = ( +/turf/closed/wall/mineral/iron, +/area/library/lounge) +"cwg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cwj" = ( +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwl" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/item/storage/fancy/candle_box, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwo" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Monastery Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwr" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library Lounge APC"; + pixel_x = 24 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cww" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwx" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwy" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/candle, +/obj/item/candle{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/candle{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwz" = ( +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwA" = ( +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwE" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwF" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cwM" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"cwO" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwR" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cwS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwU" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cxe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cxg" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxh" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxn" = ( +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"cxt" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cxz" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/library/lounge) +"cxC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/library/lounge) +"cxJ" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/library/lounge) +"cxK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library/lounge) +"cxX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Access Tunnel"; + dir = 4; + network = list("ss13","monastery") + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cym" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/library/lounge) +"cyz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/library/lounge) +"cyL" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cyM" = ( +/obj/structure/lattice, +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cyP" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Fore"; + network = list("ss13","monastery") + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyS" = ( +/obj/structure/bookcase/random/religion, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/library) +"cyU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/library) +"cyY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyZ" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark, +/area/library) +"czl" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/library) +"czo" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czp" = ( +/obj/structure/table/wood, +/obj/item/disk/nuclear/fake, +/obj/item/barcodescanner, +/turf/open/floor/plasteel/dark, +/area/library) +"czq" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czr" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/library) +"czt" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/photo_album, +/turf/open/floor/carpet, +/area/library) +"czu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czv" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czw" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czB" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/carpet, +/area/library) +"czC" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern{ + icon_state = "lantern-on"; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/library) +"czD" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/library) +"czH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czI" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/library) +"czL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"czM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"czN" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/turf/open/floor/plasteel/dark, +/area/library) +"czO" = ( +/obj/structure/table/wood, +/obj/item/instrument/saxophone, +/turf/open/floor/plasteel/dark, +/area/library) +"czP" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/coin/gold, +/turf/open/floor/plasteel/dark, +/area/library) +"czQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAg" = ( +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Curator Desk Door"; + req_access_txt = "37" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAs" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-05"; + pixel_y = 10 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAt" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + pixel_y = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAu" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/pharaoh, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAv" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Curator Desk Door"; + req_access_txt = "37" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/plasteel/dark, +/area/library) +"cAH" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAM" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cAS" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/plasteel/dark, +/area/library) +"cAT" = ( +/obj/structure/destructible/cult/tome, +/turf/open/floor/plasteel/dark, +/area/library) +"cAU" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar"; + name = "skeletal minibar" + }, +/obj/item/book/codex_gigas, +/obj/machinery/camera{ + c_tag = "Monastery Archives Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAV" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cBi" = ( +/obj/machinery/flasher/portable, +/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/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"cBk" = ( +/obj/machinery/vending/boozeomat/pubby_maint, +/turf/closed/wall, +/area/maintenance/department/crew_quarters/dorms) +"cBl" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBm" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBo" = ( +/obj/structure/table, +/obj/item/lighter, +/obj/structure/light_construct/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBp" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBr" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBs" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBv" = ( +/obj/item/cigbutt/roach, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBw" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Space Bridge Control"; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Space Bridge Control"; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBA" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBB" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_one_access_txt = "12;45;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cBM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/office) +"cBR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cBS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engine/engineering) +"cBT" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cBU" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"cCl" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"cCt" = ( +/turf/open/floor/plasteel/white, +/area/science/lab) +"cCB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cCF" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCH" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCI" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cCP" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/chapel/monastery) +"cCS" = ( +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cCT" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cCU" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCV" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCW" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel/dark, +/area/library) +"cCX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cCZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cDa" = ( +/turf/closed/wall, +/area/quartermaster/warehouse) +"cDB" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"cFB" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"cHS" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Firing Range" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"cJo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cKV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cLw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cOp" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cPy" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cPO" = ( +/obj/item/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"cPT" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSJ" = ( +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/sleeper"; + dir = 4; + name = "Treatment Center APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cSK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 8; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cXW" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cZt" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"daY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dbi" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"dci" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"dcL" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"deJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/gps/mining{ + gpstag = "MINE_PUB" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dgg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dgz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dgI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"dhz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dir" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dkR" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"dmP" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dmT" = ( +/obj/machinery/shieldwallgen/xenobiologyaccess, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dnS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix Bypass" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"doo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"dpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"dpb" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"dpc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"dps" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/quartermaster/qm) +"dqw" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dqG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dqY" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dse" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dsv" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"dsz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dtm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"duF" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -2 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"duQ" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge Aft"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"dxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dye" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/departments/science{ + pixel_y = 32 + }, +/obj/item/kitchen/knife, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dym" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dAF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/science/mixing) +"dAG" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"dEy" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/reflector/double/anchored{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dFJ" = ( +/turf/open/floor/engine, +/area/engine/supermatter) +"dHr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dHZ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/button/door{ + id = "chemistry_shutters"; + name = "Shutters Control"; + pixel_x = 26; + pixel_y = 4; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dJk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"dJm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Pit"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dKs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"dLY" = ( +/obj/structure/table, +/obj/item/assembly/igniter, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"dMB" = ( +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dMG" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dMI" = ( +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"dMO" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dNr" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dSp" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"dSr" = ( +/obj/item/chair, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"dTV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + layer = 2.4 + }, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"dVJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"dWk" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dWp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dYe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"dZj" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/airalarm/engine{ + pixel_y = 22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"eaw" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ebD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "law office shutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"edl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"edJ" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eex" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/office) +"eeQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"efu" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"efU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"egK" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"ehM" = ( +/obj/effect/decal/remains/human, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eiV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ekU" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"elk" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/lawoffice) +"epj" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"epJ" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"epV" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"eqD" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/department/crew_quarters/dorms) +"eta" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"euQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"eyj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"ezF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/red, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ezJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"eAp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eAH" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"eAZ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"eCw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"eCK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"eDC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eEp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"eFj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"eFG" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "garbagestacked" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eHI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eIL" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"eLt" = ( +/obj/structure/closet/firecloset, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"eMC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"eNc" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/structure/rack, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"eNq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"eNF" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/closed/wall, +/area/space/nearstation) +"eOZ" = ( +/obj/structure/closet, +/obj/item/clothing/suit/judgerobe, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ePU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"eQN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"eQR" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"eQZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"eRp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eSB" = ( +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"eSL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/beacon, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"eVy" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"eWi" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"eXo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"eYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"eZA" = ( +/obj/item/stack/cable_coil/cut/random, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fdQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fdS" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Engineering" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"fef" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Menagerie"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ffJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"fgS" = ( +/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 + }, +/mob/living/simple_animal/opossum/poppy, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"fhM" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"fjs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"fjD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"fkH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Testing Zone"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/explab) +"fmh" = ( +/turf/open/floor/wood, +/area/maintenance/department/engine) +"fmL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"fmU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"fon" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"fow" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"fpT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"frj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ftp" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"ftW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/lawoffice) +"fvb" = ( +/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/maintenance/department/engine) +"fwe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fwl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"fwr" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fwI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fxC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"fym" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fyF" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"fyO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fzu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/gloves/color/black, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"fAx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"fBt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"fBz" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/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/science/mixing) +"fBZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"fIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"fIN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"fIT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"fKj" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Mineral Room" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fLG" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fNv" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fQf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"fRr" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"fRs" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"fTY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"fUA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"fWv" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"fZK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"gam" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"gdJ" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gdL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"geU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gfi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ggg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"giI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/office) +"giO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gjp" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gjv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Space Loop In" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gjN" = ( +/obj/item/weldingtool, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gkR" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"gkS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gkX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"glf" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"gmp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gmO" = ( +/obj/structure/chair{ + 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/exit/departure_lounge) +"gmZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"gna" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/maintenance/department/crew_quarters/dorms) +"gnq" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/engineering) +"gpC" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"gpI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gue" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gvf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"gwn" = ( +/obj/structure/sign/warning{ + pixel_y = 32 + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gxe" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"gxq" = ( +/obj/structure/chair{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"gxK" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gAG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/lawoffice) +"gBb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"gDR" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Escape"; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gDZ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"gEo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"gFo" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 3 + }, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "Shutters Control Button"; + pixel_x = -28; + pixel_y = -7; + req_access_txt = "47" + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"gGy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gGA" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gHZ" = ( +/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/maintenance/department/engine) +"gIC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gIG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gKz" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-22"; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"gKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gLF" = ( +/obj/machinery/vending/snack/random, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"gMm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/mixing) +"gMO" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gNv" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/department/crew_quarters/dorms) +"gNG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "assistantshutters"; + name = "Tool Storage Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gPV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/lawoffice) +"gQf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"gQo" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"gSH" = ( +/turf/closed/wall, +/area/lawoffice) +"gSI" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"gUb" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"gVc" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/engine) +"gXg" = ( +/obj/item/extinguisher, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"gYo" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"haA" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hbl" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/space) +"heC" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"hfZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hgD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/science) +"hiw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hiY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci4"; + location = "Sci3" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hjk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hjD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hka" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Atmospherics Console"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hkQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hnu" = ( +/obj/machinery/button/door{ + id = "lawyer_shutters"; + name = "law office shutters control"; + pixel_x = 34; + pixel_y = -1; + req_access_txt = "38" + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"hon" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hoS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/engine/engineering) +"hqo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "assistantshutters"; + name = "Tool Storage Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hvW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"hwd" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge Port"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hwj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/security/execution/transfer) +"hxn" = ( +/obj/structure/chair, +/obj/item/clothing/glasses/regular, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hxI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"hyh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"hzc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/wrench, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hzd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"hDG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"hEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"hFp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"hFy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hGB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hHr" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hIZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hKp" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"hMx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"hOx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hOz" = ( +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"hPN" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = 28; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hPU" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"hQz" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"hQC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"hSt" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Gas to Cooling Loop" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hSC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hSM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"hTl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hUt" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"hUw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"hUJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"hVx" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hXt" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hXK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hYe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/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/dark, +/area/chapel/office) +"hZB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iab" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"ick" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"iej" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"igB" = ( +/obj/machinery/camera{ + c_tag = "Turbine Chamber"; + network = list("turbine") + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"igE" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio4"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ihj" = ( +/obj/item/clothing/suit/toggle/labcoat/science, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ihk" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ijF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library) +"ijU" = ( +/obj/effect/spawner/lootdrop/organ_spawner, +/obj/structure/closet/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"ikB" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ikO" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ilD" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ilE" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"imE" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ioj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"iop" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ioF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iqc" = ( +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/department/crew_quarters/dorms) +"irM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"itl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/xenobio{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"iuM" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ivO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"iwe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iyg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iyJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"izB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"izF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"iAx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iBJ" = ( +/obj/machinery/camera{ + c_tag = "Telecomms External Fore"; + dir = 1; + network = list("tcomms"); + start_active = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"iCe" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"iCs" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"iCV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"iEQ" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iEU" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"iFI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iGJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"iJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iKb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"iLh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"iLl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iLR" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iPj" = ( +/obj/machinery/igniter{ + id = "xenoigniter"; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"iPz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Test Lab"; + dir = 4; + network = list("xeno","rd") + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"iPH" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iPO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"iPU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"iSz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iTF" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"iVJ" = ( +/obj/effect/spawner/lootdrop/organ_spawner, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"iWV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"iXx" = ( +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"jcT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jen" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"jgr" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library) +"jhk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jhD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"jjC" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lawoffice) +"jrG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"jsf" = ( +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jsj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"jsD" = ( +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"jtf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"juw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"jvi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"jwe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jxl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jxK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jzz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"jzE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"jAy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jBh" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"jBn" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"jCv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jDA" = ( +/obj/item/chair, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"jEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jFw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jFO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"jHP" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/bottle/tequila{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"jOB" = ( +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"jPf" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"jQh" = ( +/obj/item/stack/sheet/animalhide/xeno, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"jRG" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jSa" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"jTh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jTu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"jTU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"jUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jXh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"jXA" = ( +/obj/structure/table, +/obj/item/stack/ore/iron, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jXF" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"jXV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jYe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jYh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Supply to Virology" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"jZG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"kas" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"kaR" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"kfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"kfM" = ( +/obj/structure/closet, +/obj/machinery/light/small, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/chapel/office) +"kgR" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"khk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"kjK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"kkk" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"kkQ" = ( +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"klb" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/sorting) +"klo" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"klB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"klV" = ( +/obj/item/clothing/under/rank/civilian/clown/sexy, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"kmd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"kmn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"koz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kpK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"krU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"ksf" = ( +/obj/item/stack/tile/carpet, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"kvj" = ( +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kwm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"kxj" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"kxs" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kyv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kAa" = ( +/obj/structure/chair{ + dir = 8 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kDf" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/black, +/area/chapel/office) +"kDJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kDY" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"kEM" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kEW" = ( +/obj/machinery/smartfridge/disks{ + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hydroponics) +"kFm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/tcommsat/computer) +"kFu" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"kFx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kFD" = ( +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/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) +"kGe" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/sign/departments/holy{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"kIo" = ( +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"kIO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kJo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kJw" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Firing Range Target" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"kKI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"kNf" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"kPi" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"kQy" = ( +/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/white, +/area/medical/sleeper) +"kQZ" = ( +/obj/structure/closet, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kRq" = ( +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"kRK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/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) +"kSb" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"kSF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kSO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Port Emergency Storage" + }, +/turf/open/floor/plating, +/area/storage/emergency/port) +"kTj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kTR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"kWQ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"kXx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"kYM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lcU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lcZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"ldQ" = ( +/obj/structure/floodlight_frame, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lem" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "executionflash"; + pixel_y = 25 + }, +/obj/machinery/igniter{ + id = "secigniter" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"lfx" = ( +/obj/structure/table, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lhA" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"liR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lje" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"lms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"lnn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"lnr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"loz" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"loL" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4; + filter_type = "n2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lqc" = ( +/obj/item/toy/gun, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lqy" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"lrM" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lxI" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/chapel/monastery) +"lzJ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet, +/area/chapel/office) +"lAf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"lAs" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"lAR" = ( +/obj/effect/turf_decal/stripes/line{ + 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/explab) +"lBP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lEn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"lFh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"lGp" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lGv" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lGS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"lHc" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lHX" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lIr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lJr" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lKL" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"lMU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lNW" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lQn" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lQQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"lQX" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lTC" = ( +/obj/item/shard, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lUO" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"lWy" = ( +/turf/open/floor/plating, +/area/maintenance/department/science) +"lWH" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"lWJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lXb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Mix" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lXc" = ( +/obj/structure/table, +/obj/item/clothing/head/beret, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lXJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mal" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"mau" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"maW" = ( +/obj/structure/table/glass, +/obj/item/weldingtool/mini, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"mbe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mci" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"mdL" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen{ + layer = 3.1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"meF" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"mfC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mgz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mhl" = ( +/obj/machinery/power/emitter, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"mhn" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mhK" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"miw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 1; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"mjn" = ( +/obj/machinery/jukebox, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"mjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"mlr" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mmv" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mnG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"mpd" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"mpy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/wood, +/area/lawoffice) +"mql" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"mqp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"msX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"mtu" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/reagent_containers/food/snacks/donut, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"mtI" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mvm" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Starboard Solar APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"mwg" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/gun/ballistic/shotgun/toy, +/obj/item/gun/ballistic/shotgun/toy, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"mwG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mxy" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/tcommsat/computer) +"myu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"mzl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"mzE" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/science/storage) +"mzU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"mCe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"mDW" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"mEu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mES" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Surgical Room" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mHy" = ( +/obj/item/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"mIa" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mJp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mKc" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"mKk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mLB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/security/brig) +"mMz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"mQm" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"mSc" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mTS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mVM" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mXq" = ( +/obj/item/taperecorder, +/obj/item/cartridge/lawyer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/lawoffice) +"mZE" = ( +/turf/open/space/basic, +/area/space/nearstation) +"naq" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"naS" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nbu" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/space) +"ncm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"ndI" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"nev" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"new" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nfi" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"nfz" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nge" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"ngp" = ( +/obj/item/chair/stool, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"nih" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"niy" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/cookie, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nku" = ( +/obj/machinery/door/airlock/centcom{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"nnh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"noC" = ( +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"noM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"npE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nqu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nqV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nsy" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/construction/mining/aux_base"; + dir = 8; + name = "Auxillary Base Construction APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"nsD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"nsJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ntj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"nuv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nxT" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nyB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"nyO" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"nzD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nAs" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"nAY" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"nBw" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"nBL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"nDo" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nDx" = ( +/obj/machinery/vending/coffee, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nEb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"nGi" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"nIm" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nIU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"nJI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/plaques/kiddie/perfect_drone{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/science/explab) +"nKo" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nLl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nMG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Monitoring"; + network = list("tcomms") + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"nNJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nNN" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nOY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nPA" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"nQc" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nRM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"nSj" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nSo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"nTr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nUQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"nVU" = ( +/obj/item/spear, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nWP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nYb" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"nYn" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"nZw" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Backup Laboratory" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"obj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"obP" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/department/science) +"odM" = ( +/obj/effect/landmark/barthpot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"oep" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ofN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ofX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ohR" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"olc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bedroom"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"onX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"ooh" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/wrench/medical, +/turf/open/floor/engine, +/area/medical/chemistry) +"opz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"ore" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engine/engineering) +"ost" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ous" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_y = -24; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ouv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ovB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"ovM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Port Fore" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"owS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"oxw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"oyF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/primary) +"ozO" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oAw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oAW" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oBb" = ( +/obj/structure/sign/warning/biohazard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"oCn" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/lawoffice) +"oCX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"oDP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"oEA" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"oEG" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"oEW" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "xenoigniter"; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oFf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"oFo" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"oFI" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"oGw" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal/incinerator) +"oHa" = ( +/obj/machinery/power/emitter/anchored{ + dir = 8; + state = 2 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"oKa" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"oKv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engine/engineering) +"oKJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"oLR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit/departure_lounge) +"oMN" = ( +/turf/open/floor/plasteel/stairs/left, +/area/maintenance/department/crew_quarters/dorms) +"oNE" = ( +/obj/structure/chair/office/light, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oPx" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"oPy" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"oQm" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"oRX" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"oSc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"oSL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oTl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"oTp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"oTC" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"oUa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oWu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oWw" = ( +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oXe" = ( +/obj/structure/table/glass, +/obj/item/mmi, +/obj/item/clothing/mask/balaclava, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"oXq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"oYj" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oZW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"paU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"pbm" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"pbI" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/explab) +"pbR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"pdq" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"pdW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/explab) +"peE" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pfz" = ( +/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/security/execution/transfer) +"pfB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"pfP" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/machinery/camera{ + c_tag = "Xenobiology Computers"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"pgH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"phJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"phS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pia" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"pjH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pkM" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/chapel/office) +"plA" = ( +/obj/structure/musician/piano, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"pmB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"pnU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"poP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"pps" = ( +/turf/closed/wall, +/area/engine/break_room) +"ppQ" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"pqP" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"prQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"psd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Filter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"puw" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"pvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"pwj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pwS" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pxD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"pzF" = ( +/mob/living/simple_animal/opossum, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"pBD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pBJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"pCo" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"pDP" = ( +/obj/machinery/vending/assist, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"pEH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pEL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"pFe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"pFy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pGe" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"pHo" = ( +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"pKd" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"pMG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pNy" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Toxins Launch Area"; + network = list("ss13","rd") + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"pOr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"pQw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"pVD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/department/engine) +"pWm" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"pWF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"pWT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"pXc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet, +/area/library) +"pXg" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/extinguisher, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"pXT" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc{ + areastring = "/area/lawoffice"; + dir = 8; + name = "Law Office APC"; + pixel_x = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"pYh" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"pYw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"pYC" = ( +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"qar" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qbp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"qbZ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"qcD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qcH" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qdi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Containment Pen Access"; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qdj" = ( +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qeY" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"qhE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qjx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qkM" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qni" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) +"qnT" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qpd" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qpS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qtA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qtF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qtO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qxq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air Out" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"qyF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qAM" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"qBv" = ( +/obj/item/clothing/head/ushanka, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qDJ" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/debugger, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"qEN" = ( +/obj/machinery/rnd/production/techfab/department/service, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"qFu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qGu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"qGZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"qHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"qIC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"qIO" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qLI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qMi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"qOE" = ( +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"qOH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qPB" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"qRl" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qRm" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"qTV" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qUw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qVk" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"qVP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qWo" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/chapel/monastery) +"qWG" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/engine/engineering) +"qWM" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qXq" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qYq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/item/wrench, +/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/dark, +/area/science/xenobiology) +"qYS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"rar" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"rdB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"reH" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"reV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rgn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rgs" = ( +/obj/structure/table, +/obj/item/instrument/eguitar, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"rhr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/engine) +"riF" = ( +/obj/machinery/computer/arcade, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"riW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"rjF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"rmC" = ( +/turf/open/space/basic, +/area/space/station_ruins) +"rnr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rnE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"roc" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ros" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"rrb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"rrU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"rse" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rsZ" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Access"; + dir = 1; + network = list("tcomms") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"rui" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rvH" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Medbay Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"rxa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"rxQ" = ( +/obj/machinery/door/airlock/abandoned{ + id_tag = "PottySci"; + name = "Science Bathroom" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rxV" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"rzp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"rzF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"rBh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"rEh" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rFq" = ( +/obj/structure/chair, +/obj/item/reagent_containers/food/snacks/donkpocket, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"rHA" = ( +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rJg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"rJZ" = ( +/obj/docking_port/stationary{ + area_type = /area/construction/mining/aux_base; + dheight = 4; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/small; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"rKr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"rKL" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"rLi" = ( +/obj/machinery/button/door{ + id = "shootshut"; + name = "shutters control"; + pixel_x = 28 + }, +/obj/item/ammo_casing/shotgun/improvised, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"rMV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"rNi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/transit_tube, +/turf/open/floor/plasteel, +/area/engine/atmos) +"rNB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rPg" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"rPW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"rSH" = ( +/obj/item/trash/can, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"rTd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"rWE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"rXT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rYC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "public external airlock" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"sbk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"sbY" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lawoffice) +"sci" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/science) +"scp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxillary Base Maintenance"; + req_access_txt = "12"; + req_one_access_txt = "32;47;48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"scz" = ( +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 8; + name = "Engineering APC"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"sdk" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Armory External"; + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"sgc" = ( +/obj/machinery/vending/cigarette, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"shH" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"sij" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sjC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel, +/area/engine/engineering) +"skw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"slJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"smv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Cooling Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"spz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sqh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"sqQ" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"srZ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ssx" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"stQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/sign/departments/science{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sut" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"svA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"svN" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"swg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"sww" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"syn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/security/brig) +"syQ" = ( +/obj/machinery/vending/games, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"szG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sAK" = ( +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sBA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"sEB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sEN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sGr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"sIK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sJp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sJr" = ( +/turf/open/floor/wood, +/area/lawoffice) +"sKa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"sNz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"sOC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sQt" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"sUP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"sWj" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"sWW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"sXi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sXR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"sYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sZh" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/disposal) +"sZu" = ( +/obj/item/storage/backpack/satchel/explorer, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tan" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/centcom{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"tap" = ( +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"taA" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"taT" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 4; + name = "euthanization chamber freezer" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tcY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"tdp" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/hand_labeler, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/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/explab) +"tdB" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"tdL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"tfw" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tfx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tfP" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"tfZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"thA" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"thW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"tim" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/explab) +"tix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"tkL" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tlc" = ( +/obj/machinery/recharger, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"tlp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tlw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"tlN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tlV" = ( +/obj/structure/reflector/single/anchored{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"tnP" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"tnY" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = -26; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"tpb" = ( +/obj/item/reagent_containers/food/snacks/donut, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"tqO" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tqX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"ttS" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/mob/living/simple_animal/pet/bumbles, +/turf/open/floor/plasteel, +/area/hydroponics) +"tue" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tuy" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 8; + network = list("xeno","rd") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"tvj" = ( +/obj/structure/festivus{ + anchored = 1; + desc = "A pole for dancing."; + name = "pole" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"tvP" = ( +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"twv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"typ" = ( +/obj/structure/table/glass, +/obj/item/hemostat, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"tyL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"tzH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"tAK" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"tCP" = ( +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"tDn" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"tHk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tIS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"tJr" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"tLP" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/warehouse) +"tOD" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tRc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"tSL" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"tTl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tTZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tXn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/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/xenobiology) +"uaC" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"uaE" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"uaO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"uaP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ubW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"udl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"uek" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ueP" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = 28; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ueV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"ueX" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ufa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ugC" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"uiP" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"ujI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ukn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"ukp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ulu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/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/storage/primary) +"ulY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ume" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"uoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uos" = ( +/obj/machinery/computer/camera_advanced/base_construction, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"uoS" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"upc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uqJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"urP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/explab) +"utg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"uug" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"uun" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"uuS" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"uvo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"uvq" = ( +/obj/structure/table, +/obj/item/dice/d20, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uwb" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"uwX" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uxP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Starboard"; + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uzh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/engine/supermatter) +"uzn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"uAU" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/lawoffice) +"uAZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Mixing Area"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/explab) +"uCS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"uHG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uIn" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uIB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"uLF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"uMe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uMo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel, +/area/engine/engineering) +"uMt" = ( +/obj/effect/turf_decal/plaque, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uQR" = ( +/obj/item/ammo_casing/shotgun/beanbag, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"uRk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"uUQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uVf" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/pen/fountain, +/obj/item/stamp/law, +/turf/open/floor/carpet, +/area/lawoffice) +"uXG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uXH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"uZb" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"vay" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vco" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"veF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"veM" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/machinery/light{ + dir = 1 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vgp" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vhk" = ( +/obj/structure/chair, +/turf/open/floor/carpet, +/area/lawoffice) +"vjd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vli" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vlC" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vlF" = ( +/obj/item/coin/silver, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor5" + }, +/obj/structure/light_construct/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"vmG" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"vmY" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"voh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"vsk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vsw" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 8; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vtl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vtT" = ( +/turf/open/floor/plating, +/area/maintenance/solars/port) +"vuP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"vuQ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vxp" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/assembly/mousetrap, +/turf/open/floor/engine, +/area/science/explab) +"vxr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vzz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"vzA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vzP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vzT" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 5; + layer = 3.3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vAq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vBE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vCC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vGg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vHf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vIc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vKq" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vMx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vOw" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library) +"vRi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"vRm" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vTL" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"vTN" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vVO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vYN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"wbB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "External Gas to Loop" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"wbF" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/camera{ + c_tag = "Engineering Starboard Aft"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wcs" = ( +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"wdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"weL" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wfc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wfs" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wfG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"wfO" = ( +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wfP" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"wig" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wiB" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/cable_coil/red, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wjm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wjQ" = ( +/obj/machinery/computer/shuttle/mining/common{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wkZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"wlK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"wnJ" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/science/mixing) +"woq" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wqu" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"wrU" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/lawoffice) +"wtE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wun" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wwr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wwG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wxb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wxJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wzb" = ( +/obj/structure/chair, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"wAI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"wBb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"wBg" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "Potty1"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"wDl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wDm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wDZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"wEn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"wFT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wIo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"wIv" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wKa" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"wLo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoshutters"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"wMF" = ( +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/structure/closet/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"wMM" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wMX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"wNq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wOa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wOf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"wOS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/mixing) +"wQU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"wRk" = ( +/obj/structure/rack, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wRz" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wRI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Brig Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wTD" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"wTO" = ( +/obj/structure/frame/computer, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"wUf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"wUz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"wVC" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci"; + location = "Bar1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wXu" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wYu" = ( +/obj/machinery/door/poddoor/shutters{ + id = "shootshut" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wYK" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"xah" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"xaO" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xaQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/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 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"xbJ" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"xee" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"xer" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"xeB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"xgh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"xgG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"xhj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"xhE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"xhI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"xja" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/library) +"xjc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"xje" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xjg" = ( +/mob/living/simple_animal/hostile/retaliate/goose, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"xjK" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/rack, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"xjT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xlg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xlA" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xmp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"xmE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"xnm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/tcommsat/computer) +"xnP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"xpr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xsO" = ( +/obj/item/ectoplasm, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xuv" = ( +/obj/item/broken_bottle, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"xvO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xxw" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xxO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xxS" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"xyl" = ( +/obj/structure/table, +/obj/item/assembly/timer, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"xyB" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"xzp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xzR" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"xCV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xDj" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xEx" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"xFl" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 1; + layer = 4; + name = "Telecomms Server APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xGc" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space/station_ruins) +"xIx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"xJy" = ( +/obj/structure/chair/comfy/black, +/obj/structure/sign/plaques/kiddie{ + desc = "An embossed piece of paper from the Third University of Harvard."; + name = "\improper 'Diploma' frame"; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"xKc" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"xLi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"xLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"xNx" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/junction/flip, +/turf/open/space/basic, +/area/space/nearstation) +"xNy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"xOC" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"xPa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/engine, +/area/science/explab) +"xQc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"xQk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"xSd" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"xSX" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"xSZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xVt" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/rack, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"xWl" = ( +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/structure/table/glass, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xYV" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"ybX" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ycr" = ( +/obj/structure/target_stake, +/obj/item/target/syndicate, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ycx" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/department/engine) +"ydf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"yfO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ygZ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ymb" = ( +/obj/machinery/camera{ + c_tag = "Engineering Telecomms Access"; + dir = 8; + network = list("tcomms") + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) (1,1,1) = {" -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabyabyabyabyabyabyabyabyabyabyabyabyabyaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaaaaabIaaaaaaaaaaaaabJaaaaaaaaaaaaabIaaaaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabOabOabOabOabOabOabOabOabOabOabOabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabVabWabXabYabYabYabYabYabVabWabXabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOaccacdaceaceaceacfaceaceaceacdacgabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOachaceaceabOabOabOabOabOaceaceaciabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabYaceabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabWaceabOabOacjackaclabOabOaceabWabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyacmabOacnacoacpacpacqacracsactactaceacuabOacvabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOacwacxabOabOabOacyabOabOabOaceacwabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabYacxabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabVaczacAabOabOabOabOabOaceaceabXabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIabOaccacdacxacBacCacDacEacBaceacdacgabOacFabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaabOacGacHacIacJacKacLabYacMachacwaciabOacNaaaacOaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPacPacQacPacPabOacRacSacTabOacUacUacUacUacVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacWacXacYacPacZadaadbadcaddacUadeadfadgacVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadhadiadjacPadkadladmadnadoacUadpadqadracVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadsadtaduadvadwadxadyadzadAadBadCadDadEadFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadGadHadIadJadKadLadLadMadLadLadNadOadPadQacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSadTadUadVadWadVadXadYadXadZaeaadZaebaecacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaabIaaaabIaaaabIaaaaaaabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefcnDcnEcnDaehaeiaehcnGcnHcnGaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaadRaemaemaenaemaenaemaenaemaemaemaemaemaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeoaepaeqaeraesaetaeuagyaeWaeXaemadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaacOaaaaaaadSaevaewadVaexadVadXaeyadXadZaezadZaeAaeBacUaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeCaeDaeEaeFaeGaeHtnPagyovBiLRaemabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIacPaeJkjKaeKaeLaeMaeNaeNaeOaeNaePaeQaeRadFaeSacUacUabIabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeTaeUaeUaeUaeVpeEdYelGputgiPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaeYaeZafaafbafcafdafeaffafgafhafiafjafkaflafmacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRabIaemafnaeUafoafpafqafoaeHaeUafriPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaftafuafvacPacPafwafxafyafzafAacUacUaelaelafBacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtabIaemagyafCafDafEafFafGafHafIagyagyaemaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPafKafLafMacPafNafOafxaabafzafQafRacUafSafSafTacUaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUafUafUafUafUafXaiAafZaeUagaaeUagbaeUaeHaeUagcagdaemaaaaaaaaaaaaaaaabyabyabyabyabyabyabyabyabyabyabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacPacPacPacPageagfcnCbIKaggagfaghacUacUacUacUacUabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiszGlemagjafUaglaiAagnaeUagaaeUagbeSBaeHjXFagoagpaemaaaaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCaaaaaaaaaaaaaaaabIaaaabIaaaagqagragsadXagtadXagsaguagqaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagisOCmzlagvagwagxaiAagyagyagzagyagAagyagBagyagyagCaemaaaaaaaaaaaaaaaagPagPagQagQagQagPagQagQagQagPagPaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabyabyabyabyaaaadXadXadXadXagDadXadXagEadXaaaabyabyabyabyabyaaaaaaaaaaaaaiSaiTaiUaiTaiTaiSaiSaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiiCVsJpagFafUagHaiAagyagIaieagKagAagLagMagNagyagOaemabyabyabyabyabyagQcnJahdahdahdcnNahdcnPcnQcnQagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXagRadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiScBkjHPkkkcBlaiSwMFaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUafUmsXqMiagTafUagVaiAagyagWaiHagYagAagZahaagYagyahbaemabIabIabIabIabIagQahqahqahqahqahqahqahqahqahqagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXahhadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiTplAqPBaiSjhDajuakhcBmakgcBnaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUhwjdVIiPUahjahkahlaiAagyagAahmagyahnahoahpagyagyagyaemabIabIsdkabIabIagPahqahqcnTahqcnTahqahqcnVahqagQabIaaaafJaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXalbahialbadXahsahtaaaaaaaaaaaaaaaaaaaaaaiSoMNiqcaiScBoajtalccBpaiScBqaiTaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtpfzahuahvahwahxahyahzahAahBahCahDahBahFahGahHahIahJahKahLahLahLahLahLahLahLahMahNahqahqahqahqahOahPahQagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFjahRahtaaaaaaaaaaaaaaaaaaaaaaiTakfngpepJalQalQalRalSaiSajvaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtahtuqJahSahTahUahVahWahXahYahZaiaaibaicaicaidaieaifaigaihahLaiiaijaikailaimahLainaioahdahdahdaipaiqairaisagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSgxecBruaCxjgmnGamFamGakgajvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaitaitaiuaitaiuafUoXeaivaiwaixaiyaizaiAaiBaiCaiDaiEaiFaiGaiHaiBaiJaiKahLaiLaiMaiMaiNaiOahLaiPagPagPagPagPagPaiQagPagPagPabIabIabIabIabIaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiTakfcBscBvcBwtappzFmnGaiSiEUaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaiVaiWaiXaiYaiuafUafUafUafUaiZajaajbaiAajcajcajcagyajdajeajfagyagyagyahLajgaiMajhajiajjahLajkajlajmajnajoajpajqagPajrajsajsajsajsajsajsajsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSeqDtapcBwnoCtaptapcPOaiSaiSaiSaiTajxajyajyajyajzaiTaiSaiTaiSaiSaiSaiSaiSaiSaiSaiTaiTaiSaiSaiSaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitajBajCajDajEaiuajFajGajGajHajHajIajHaiAajMajMajMajMajJajKajLajMajNajOahLajPajQajRajSajTahLajUajVajWajWajXajYajZagPaiRaiRakaakbakcakdakeajsaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahRahtaaaaaaaaaaaaaaaaaaaaaaiToMNgnagNvaiSaiSanmaiSaiSakjcBxaklakmaknakoaknakkakpcByaknaknaknaknaknaknaknaknaknaknaknaknaaDaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuakrajDaksaktaiuakuakvakwajHakxakyakzakAakBakCakDakEakFakGakHakIakJakKahLakLakMakNakOakPahLakQajVajVajVajVajVakRcCSakTakUakVakWakXakXakXakZabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtalaahtaaaaaaaaaaaaaaaaaaaaaaiSvlFklVnnhaiSanYajvaiSaobaleaiSaiTalfalgalgalgalhaiTaiSajvaaEaaGaaFaaFaaFaaFaaFajvaaQsbkajvaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiualiaiuaiuaiualjalkallajHalmalnaloalpalqalralsaltalualvalwalxalyalzahLcBijuwivOpfBalAahLalBalCalDalEalCalFalGalHaiRalIalJalKalLalJalMalNabIaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtahtahtahtahtalOahtahtaaaaaaaaaaaaaaaaaaaaaaiTtvjxbJsqhaiSaptajvaiSeawaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaHaaFaaFaaFaaIaaKaaIaaFaaFaaFaaFaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaitajDaitaaaaiualTalUalVajHalWalXalYakAalZamaambamcamdameamfamgamgamgamgamhamiamjamkamlamgammamnamoampamnamqamramsamtamuamvamwamxamyamzalNabIaaaaaaaaaaaaaaaaaaaaaamAamBamCamCamCamBamCamCamCamCamBamCamDahtaaaahtaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiTaiSsbkajuaiSajvaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaNaaRaaSaaSaaSaaSaaSaaTaaUaaVaaXaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiuahtahtaitajDaitaaaaiuskwamHtfZajHamIamJamKakAamLamMamNamOamPamQamRamgamSamTamUamVamWamXamYamZamganbalCancandalCaneanfalHaiRanganhanianjalJankalNabIaaaaaaaaaaaaaaaaaaanlahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiSaiSajvaiSajvaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabcaaLaaLabjaaLaaLaaLaaLaaLaaMaaZaaFaleaiTaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaitfINoFflcUaiuaiuaiuaiuanqaiuaiuaiuanransvCCantanuanvanwakAanxakAajMajManyanzanAanBanCanDanEanFanGanHanIanJanKanLalEanMandalEanNanOanPanQanRanSjvianUanVanTanWabIaaaaaaaaaaaaaaaanlaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaacBUlcZcBUlcZcBUaaaaaaaiTalPcBAaiScnXaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOabnaaOaboaaOaaOaaOaaOaaPaaZaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoJaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitwwGycrsGrkJwgwnwRIlMUaoehOxaCgaCgaofePUlHcaiuaogaohaohaoiaojakAaokaolaomaonaooamgaopamXamXamWamXaoqaoramXaosaotaouaouaovaowaoxaoyagPaiRaiRaiRaiRaiRaiRajsajsaozaozaaaaaaahtalOahtahtahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaalcZapWaoBapUlcZaaaaaaaiScBBaiSaiSaiSaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabkaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitgGywDmhiwaiuaiuajDapBaiuaDmaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuakAaoOaoPaomaonanaaoQaoRaoSaoTaoUaoVaoWaoXaoYaoZapaapbapbapcapdapeapfapgaphaphapiaphapjapkaplapmapnahrcdmahtapoaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaappahtabIabIabIabIlcZapVaprapVlcZaaaaaaaiSapuaknaknapvapwaiSaaaaaaaaaaaaaaaaaaaaaaaFabqaaOaaOaaOabraaOaaOaaOabsabtabpaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaqbaqcaaaaqaaqbaqcaaaaqaaqbaqdaaaaqaaqbaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiuwYuwYuwYuaiuapzajDwoqapBaDmaiuaqgaqhaqiaiuaaaaaaaaaaaaaaaaaaapEapFapGakFapHaooamgapJapJapKapLapJapMapIamgamgagPagPagQapPagQagPajMajMajMajMajMajMajMapQaozapRaozaozcdmapSabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaapTapTapTapTapTapTapTapUapVapWcBUaaaaaaaiSaleapXapXapXapXapXapXaaaaaaaaaaaaaaaaaFaaFabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabuaaFabvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuuQRajDajDaiuaqeajDlXcaiuaDmaiugjNlqcardaiuaaaaaaaaaaaaaaaaaaapEapEajMaomaqmaqnaqoapNaqqaqraqsaqtaquapOsBAaqvaqwaqxaqpaqyaqzaqAajMaqBaqCaqDaqCaqCajMaqEaqFaqGaqGaqGaqGalaaqHaqIaqIaqIaqJaqIaqIaqIaqJaqIaqIaqIaqKaaaaaaaaaaaaaaaapTaqLaqMaqNaqOaqPapTaqQaqRaqScBUcBUaaaaiSaleapXaqTaqUaqVcodapXaaaaaaaqYaaaaaaaaFabwabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabxaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaituaEajDjsfaiuaoKaoKnPAaiuaoLwRzarcaoeasraitaaaaaaaaaaaaaaaaaaariwxJarjarkaonarlalvaonaonarlaonarmarnaroarparoarparqarparrarsartaruarvarwarxaryarzajMaqEarAarBarCarDarEarFarGarHarIarJarKarLarMarNarOarParQarRarGaaaahiahiahiaaaapTarSarTarUarVarWapTarXarYarZasacBUahtaiSasbascasdaseasfasgapXapXashasiasjapXaaFabzabAaaWaaWaaWabBabCaaWaaWaaWabDabEabFabGaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitpdqajDajDcHSdcLaBaegKaiuasoaiuatpatqatpaitaaaaaaaaaaaaaaaaaaapEapEajMasuasvaswasxatyatBawKaszrdBasAjenasBjxKtTZasDasEasCasyasFasGasHasIasJasKasLajMaqEarAasMasNasOarAarAasPasQasRasRasSasRasRasRasSasRasRasTasUarAatYbaHatYaaaapTasVasWasXasYasZapTataatbatcatdcBUaaaaiScoeatfatgathatiatjapXapXashatkatlapXaaFabHabTaaFaaYaaYatnatnavmavmavmatnatnaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitajDajDrLiaiuapBxyBaBaaoKasoaiuausautauuaiuaaaaaaaaaaaaaaaaaabBWbBWajMatvatwatxajMatzatAatDajMatzatCatDajMatEatFatGajMajMatHajMajMatIaqCaqCaqCatJajMatKarAatLatMatNatOatPatQatRatSasSatTatTatUatTatTasSatVatWatXarAbcNauVatYahtapTauaaubaucaudaueapTaufaugauhauicBUahtapXapXapXaujapXaukapXapXaulashizBaumapXatnablabKabbabaawBatnauraurauraurauratnaiSaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCajArmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiudcimwgtlcaiuaiuaiuaiuaiurrbaiuaiuaiuaiuaiuaaaaaaaaaaaaaaaaaaapEajMakAauxaonauzajMauxauAauzajMauxauAauzajMauBalvauCauDauEauFauGauHauIauHauHauHauHajMauJarAauKauLauKauMauNauOauPauQasSauRauRauRauRauRasSauSatWauTarAauUauVatYaaaapTauWauXauYauZapTapTavacBUavbavccBUaaaavdaveavfavgatfavhaviavjavkavkavkavkavlatnaxwabLabdaxwabeavmauraurauraurauravmatnavnatnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiutpbaAaazZazYoPxsynwxbgiOekUaiuaaaaaaaaaaaaaaaavpavqavrakAavsavtavuajMavvavwavxajMavyavzavAajMavBalvauCavCavDavEavFavGavHavIavJavKauHavLaqEavMavNavOavPavQavRavSavTavUasSavVavWavXavYavZasSawaatWawbarAatYawcatYaaaaaaawdaweawfawgawhawiawjawkawlawmawdaaaavdawnawoawpawqawrawsawtawuawvawvawvfIuawwabgabMabhabgabiavmauraurauraurauravmawCawDatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtaxCaxCaxCaxCaxCaxCaxCaxCaDmaiuaiuaaaaaaaaaaaaaaaaaaapEawHakAawIawJrjFakAawIawJrjFakAawIawJrjFakAawLawMawNakAawOawPawQawRawRauHawSauHauHauHawTawRawUawVawWawWawXawYawZaxaasSaxbaxbaxbaxbaxbasSaxcaxdaxearAlQQaxgaxhahtahtaxiaxjaxkaxlaxkaxkaxmaxnawdawdaxiahtapXapXapXapXapXaxocoiaxpaxqaxraxtaxuepjaxvaxwabPabQaxwaxwaxyaurauraurauraurvzzaxzaxAavmaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBayzaxBayAayBayCaxCxuvkJoasraitaaaaaaaaaaaaaaaaaaajMaxEajMaxFaxGaxGaxHaxGaxGaxGaxIaxGaxGaxGaxJaxKaxGaxLaxJaxGaxGaxGaxMawRaxNaxOaxPaxQauHaxRaxSaxTaxUaxVaxWawUaxXaxYaxZayaaybaybaybaybaybayaaycaxYaydayeayfaygaxhaaaaaaaaaaaaaaaaaaabIawdayhaxnabIabIaaaaaaayiayjaykaylatfaymaBQaynayoayqcojaysaIhaytayuabRabSaxwaxwavmauraurauraurauravmaywayxavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoIazGazHazHazIazJazKazKazKazKazKazKazKazKazKazKazKazKazKazKazLazHazHazHazHazHazHazHazHazHazHazHazHazHrKrazNazNhzdazPazQazRazSazNfAxtyLaitaaaaaaaaaaaaaaaaaaaiuayEayFayLayGayHayIayLayLayJayLayLayLayLayLayMayNayOaxGaxGayPayQayRawRaySayTayUayVayWayXayYayZazaazbazcawRazdazeazfazgazhaziazjazkazhazlazmaznazoarAlQQazpaxhaaaaaaaaaaaaabIaxiawdawdazqaxnawdaxiaaaaaaayiazrazsaztazuawraDfazvazxazycokazAazAazBazCazCazDaxwaxwavmauraurauraurauravmazEazFavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBaxBaxBaAWaAXaAYaxCvtTaDmajDaiuaaaaaaaaaaaaaaaaaaaiuaAbaAcaAdpFyaAeaAfaAiaAiaAgaAhaAiaAiaAiaAiaAjaAkaAlaAmaAmaAnaxGaAoawRaApaAqaAraAsauHaAtaAuaAvaAwaAxaAyawRaAzaAAaABaABaABaABaACaABaABaABaABaADaAEaAFaAFaAGaAHaAHaAHaAHaAHaAHaAHaAIaAJaAKaALaAMaANaaaaaaapXapXapXapXapXaAOaDfcolaAPaAQayravkdbiaxvaxwaxwaASaxwaxwaxyaurauraurauraurvzzaATaAUavmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxCaxCaxCaxCaxCvtTaDmnPAaiuaiuaiuaiuaiuebDebDgSHebDxLCebDaiuaBcaBdaBdaBdaBeaBfaBeaBdaBdaBdaBgaxGaBhaBiaBiaBiaBiaBiaBjaBjaBjaBjaBjawRaBkaBlaBmaBnaBoaBpawRaBqaBraABaBsaBtaBuaBvaBwaBxaBsaABaBraByaAHaBzaBAaBBaBCaBDaBEaBFaBGaAHaBHaBIaBJaALaBKawdaaaaaaaBLaBMaBNaBOatfaBPaBQaBRavkavkaBSavkdbiaxvaBTaBUaataBWaBXavmauraurauraurauravmaBYaBZatnabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmmtuaiuaCdnyOawEaiusbYaCexJyjjCxeBaCfaiuaChaBdaCiaCjaCkaClaCmaCnaCoaBdaCpaCqaBhaBiaCraCsaCtaCuaCvaCwvTLaCxgkRawRaCyaCzaCAaCBaCBaCCaCDaCEaCFaABaCGaCHaCIaCJaCKaCLaCMaCNaxZaCOaAHaCPaCQaCRaCSaCSaCSaCTaCUaCVaCWaCXaCYaCZaDaawdaaaaaaaBLaDbaDcaDdaDecomconcooaDgaDhaDiaDjaDkatnatnatnatnatnatnavmauraurauraurauravmatnaDlatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuapBaDmaCcaiuhHrezJqGukFxfuPgPVsJreEpnSohnuaiueQZaBdaDoaDpaDqaDraCkaDtaCkaBdaDuaxGaDvaBiaDwaDxaDyaDzaDzaDAaDAoyFaDBawRaDCaDDaDEaDEaDFaDGaDHaDIaDJaABaDKaCKaDLaDMaDLaCKaDNaABaDOaDPaDQaDRaDSaDTaDUaDVaDWaDXaDYaAHaDZaBIaEaaALaEbaANaaaaaaapXapXapXapXapXapXcopapXaEcaEdaEdaEeaEdaEdaEfaEgaEhaEdaEiatnauraurauraurauratnaEjaEkaEjaEjaEjaElaElaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmaiuaiuhHrujIeOZaiupXTpELsJrvhkuuSjTuaiueQZaBdxjKaEmaEnaEoaEpaEqaEraBdaEsaxGaBhaBiaEtaEuaDAaDAaDAaDyaEvoyFaEwawRaExazaaEyaEzaEAaBmawRaEBaECaABaEDaEEaEFaEGaEHaEEaEIaABaEJaEKaAHaELpHoaEMaENaEOaEPaEQaERaAHaANaESaEaaALaAMaANaaaaaaaEToFoaETaEUaFFaETaEWaGVaEYaEdaEZaFaaFbaEdaFcaFdaFeaEdaEdatnatnatnatnatnatnatnaFfaEkaEjaFgaFhaFiaFibZVahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitaBamLBwxbaCgaCgdgIkQZaiuwrUelksJrgAGuAUwTDaiuaFkaBdfhMaFmaFmaFoaFmaFpaGaaBdaFraxGaBhaBiaFsaFtaDAaDAaDAaDAaFuoyFaFvawRaFwazaaFxaFxaFyaFzawRaEBaDJaABaABaABaABaABaABaABaABaABaDOaEKaAHaAHaAHaFAaAHaAHaFAaFBaAHaAHaFCaBIaEaaALaFDawdaaaaaarYCjOBcoraFEvuPlKLkIOaDZcotaEdaEZaFGaFHaFIaFIaFJaFIaFKaFLaFMaEdaFNaFOaFPaFQaEjhUtaEkaEjaFRaEjaEjaEjaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitoTCwUzwigaiuezFujInihaiumpymXqsJrkxjoCnuVfaiuaFUaFVaFWaFnaFXaFYnBwaFngQoaBdaGbaGcaGdaBiaGecouaGfaGgaGhaGilnnaGjuluawRawRawRawRaGkaGlaGmawRaEBaAAarAaGnaGoaGpaGqaGraGsaGnarAaAAaEKaxiaGtaGuaGvaGwaGwaGvaGxaGyaANaGzaBIaEaaALaDaawdaaaaaaaETqbZaETaGAaGBaETaGCaGDaBIaEdaEZaGFaGGaGHaGFaGFaGFaEdaGIaGJaEdaGKaGLaGMaGNaEjaFiaEkaEjaGOaGPaEjaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaitaitaitaiuaodujIkxsaiuaiuaiuaiuaiuaiuaiuaiueQZoEAoEAoEAoEAoEAoEAoEAoEAoEAaGUaGVtHkaBiaGXaGYaGXaBiaBiaBiaGZonXaGXaANaHbaHcawRawRawRawRawRaHdmyuarAaxiaHfaHfaHfaHfaHfaxiarAaHeaHgaxiaANaHhaHiaHjaHjaHkaHlaANaANaANaEYaHmaGUaANaANawdawdaETaETaETaHnaETaETcosaDZaBIaEdaEdaGFaHoaEdaHpaEdaHqaEdaHraGJaEdaHsaHtaFiaGNaEjaFiaEkaHuaFiaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaiuaqgiJiqGugKGguejhkjhkoTpjhkjhkaHCgjqoEAuoSuoSuoSuoSuoSuoSuoSoEAaHEaHFaHGhqoaHHaHIaHHaHJaHKaHLaHMqXHjYegNGjYeaHOaHPaHQaHRaHQaHSaHTaHUaHVaHWaHXaHXaHYaHXaHXaHZaHVaHUaIaaIbaHVaHVaHVaHVaHVaHVaHVaHVaIcaIdaHGaIeaCZaIfaIgaHNaHNaHNaHNhFyaIiaHNaHNcoyaDZaBIaIjaEdaGFaIkaEdaIlaEdaIlaEdaEdaDlaEdaEjaEjbfuaEjaEjaFiaEkaEjaGOaIpaIqaElaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNahtaaaaiuaiuaiuaiuaiuaICaiuaiuaiuaiuaiuaIHaiuoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaILaIMaDZaDZaINaIOaIOaIOaIPaIQaIOaIOaIOaIQaIPaIOaIOaIRaIOaISaITaIVaIOaIOaIWaIWaIXaIWaIYaDZaDZaIZaJaaJbaDZaDZaDZaDZaDZaDZaDZaDZaGVaDZaBIaJcaJdaJeaJfaIUaIUaIUaIUaJhaJiaIUaIUaJjaJkaJlaJmaJnaFIaJoaEdaEdaEdaEdaEdaJpaEkaEjaJqaJraJsaJtaJsaJsaJvaEjaFiaEjaJwaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoJaoHaoHaoHaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaHziabxaQrgsaJDpvKgxqniyaJFriFaiuofXiSzoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaJGaJHaJIaJJaJIaJIaJIaJKaJLaJIaJIaJMaJLaJKaJNaJOaJPaJOaJOaJQaJSaJOaJOcozcozcoBcozcozaJOaJOaJTaJQaJUaJOaJVaJOaJWaJRaJOaJVaJOaJPaJRaJXaJYaJZaKaaKbaJIaJHaJIaJIbheaKeaJIaJIaJIaJHaKfaKgaEdaKhaGFaKiaKjaEdaKkcCXcCYcCZaEjaKnaEjaKoaFiaKpaFiaKnaKqaFiaEjaKraEjaLnaLmaLmaLoaLoaLmaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaKAfmUjeqjeqaKDaKEaKEaKGxhEaiuaiuaIHoEAuoSuoSuoSrJZuoSuoSuoSoEAaALaDZaKIaKJaKKaKLaKKaKJaKMaKNaKOaKPaKQaKQaKRaKSaKQaKTaKTaKTaKTaKTaKUaKTaANaKVaKVaKVaKVaKVaANaKTaKYaKZaLaaKZaLbaKZaKYanXaLcaLdaLcanXanXaBIaEaaALaLeaLeaLeaLelAslAslAsklblAslAslAslAslAscDaaEdaEdaEdaEdaEdaEdaLhcDaaLiaLjaKqaKnaLkaLlaFiaFiaFiaKnaEjaEjaEjaEjaLmaNTaLmaMEaMFaMGaMHaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzdqGwquaKBaOkwOapGepGegmOpGepGegvfftWsgcaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaLvaLwaLxaLyaLzaKJaLAaLBaLCaLDaKQaLEaLFaLGaKQaLHaLIaPzaLKaKTaNjaKTaGnabIabIabIabIabIaGnaKTaKYaLQaLRaLSaLTaLUaLVaLWaLXaLYaLZaMaanXaMbaEaaMcaLeaMdaMeaMflAsaMgaMhaMiaMjaMkaMlaMmaMnaMoaMpaMqaMraMsaMtaMuaMvcDaaMwaMxaJsaMyaLkaMzaEjaMAaFiaMBaJsaJsaMCaMDaLmxeraNUeFGaNVaNXaNYaLoabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEqUwaQtaQuaQtaQuaQtkvjaJEnDxaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaMRaMSaMTaMUaMVaMWaMXaKJaMYaMZaNaaNbaKQaNcaNdaNeaKQaNfaNgaLLaNhaKTaNiaKTaKTaKTaKTaKTaKTaKTaKTaKTaKYaNpaNqaNraNsaNtaLVaNuaNvaNwaNxaNyaNzaNAaJYaNBaNCaNDaNEaNFiKbaNHaNIaNJaNKaNLaNMlAslAscDaaNNaNOaNOaNOaNPaNOaNQcDaaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaNRaPfaLmaQophSphSphSphSaPiaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzaKzwquaKBaWExSZaOfaOgaOhaOgaOfaOkcoNgLFaiuaOmoEAuoSuoSuoStCPuoSuoSuoSoEAaALaDZaKIaKKaOtaOuaOvaKJaKPaKPaKPaKPaKQaKQwBgaKQaKQaKTaKTaOwaKTaKTaOxaOycoFcoGcoHcoHcoJcoJaOzaOAaKYaOBaNqaOCaNsaODaLVaOEaOFaOGaOHaOIaOJaOKaOLaOMaONaOOaOPaOQaORaOSfwlfwlfwlaOUdseaOWaOXcDaaOYaOZaPaaPbaPbaPcaNOcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaNRaQjaQkaPgdqYdqYcvfxeraQpaLoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWEwOaxLiaWKaWKaWKaPoaWEaPqaHzaiuaIHoEAoEAaPtaPtxOCaPtaPtoEAoEAaALaDZaPwaKJaKJaKJaKJaKJaNmaPxaPyaPzaLLaLLaLLaPAaLLaLLaPBaLLaPCaPDaNjaLLaPEaPEaPEaPEaPEaPEaPFaPGaKYaPHaPIaPJaPKaPLaLVaPMaPNaPOaPPaPQanXaMbaPRaPSaLeaPTaPUaPViKbaPXdMBaPZdMBaQaaQblAslAscDaaQcaQdaNOaQeaNOaQfaQgcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaRsaRtaRuaRvaRwaQnaRyaRzaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabyabyabyaedabyabyabyabyabyabyabyabyabyabyabyaedabyabyabyabIaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraQvaQraRDaREaRFnGiaJEklBeLtaiuaIHayDoEAnsyuosjAyaQwaQxoEAaKHaHEaQBaQCaQDaKTaQEaQFaQGaQGaQHaQIaQJaQKaQLaQMaQNaQNaQOaQPaQPaQPaQQaQRaLLaPEaQSaQTaQUaQVaPEaQWaQXaKYaQYaQZaRaaRbaRcaKYanXanXanXanXanXanXaRdaPRaReaLeaRfaRgaRflAsaRhaRiaRjdMBaRkaRllAsaRmcDaaRnaRoaRpcDaaNPaRqaNPcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaLiaLmsrZsZhsqQsqQaSndaYaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaHAhwdeApaQraSvaSwaSxnGiaRCklBaRBaiujThvIcscpeDCxnPrHAeHIaRGoEAaLuaALaPRaKIaRIaKTaRJaRKaRLaRLaRMaRLaRLaRLaRLaRLaRNaRNaROaRNaRNaRNaRNaRNaRPaPEaRQaRRaRSaRTaRUaRVaRWaKYaKYaKYaRXaKYaKYaKYaPBaRYaRZaSaaSbaKTaMbaPRaMcaPWaScaSdaSclAsaSeaSflAsiKbaSgaShlAsaLgaLgaSiaSjaSkcDatLPcDacDacDaaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaSlaLmaLmaLmaLmaSmaSnaSoaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraJEaQraTKaTLaTMnGiaQsklBaRBaiuaSuxxSoEAtnYqjxffJyfOqWMoEAaLuaALaPRaKIcoVaKTaSzaRLaRLaSAaSBaSCaauaSEaSFaSGaRNaRNaSHaRNaSIaSJaSKaSLaSMaPEaSNaSOaSPaSQaPEaSRaSScoWcoWcoWaSTaQNaQNaQNaQNaQNaQNaQNaSVaSWaSXaPRaHEaSYaSZaTaaSZaTbaTcaTdaTeaTfaTgaTheeQaTiwDZaTkaTlaTmaTnaTqaTpaTqaTraTsaTraaaaaaaaaaaaaaaaaaaaaaaaaaaaElaTuaTvaTwaTxaTxaTyaTzaTAaTBaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaOkftWoLRaMLaMLaMLaPnaTJhkQaOsaiuaiuvAqoEAuCSiPOoEAhDGoEAoEAaRHaTOaPRaTPaKTaKTaSzaRLaRLaTQaTRaTSaTTaTUaXSaTWaRNaTXaTYaTZaSKaSKaUaaRNaUbaPEaUcaUdaSPaUeaPEaPEaUgaPEaPEaPEaPEaPEaPEaPEaUfaUfaUfaUfaNjaKTaUiaUjaUkaUlaOTaOTaUmaOTaOTaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUtaUxaSkaSkaSkaUyaUzsQtaUAaaaaaaaaaaaaaaaaaaaaaaaaaEjaUBaGOaUCaEjaEjaEjaEjaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabIaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTHaKyaKzaKzwquaKBaOkcoNpGepGegmOpGepGevsJftWfUAwEnnfiuLFdpamalpOrdpaaUGaUHaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUUaXSaXUaXSaUWaRNaUXaUYaSKaUZaVaaVbaRNaVcqENaPEaVdaPEcpaaPEaPEaVfaVgaVhaVicpbcpcaVjaPEaVkaVlaVmaUfaVnaUfaVoaJIaJZaUsaVpaVqaVpaVpaVpaVraVsaVtaVuaVvaLfaVwaVxaVyaTmaVzaVAaTmaTmaVBaPdaPdaPdaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaVEaEjaavaEjaVGaVHaVIaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEkvjaQtaQuaQtaQuaQtaVNaJEaVMaPvaJEaVOdTVdTVgeUdTVaVPdTVaQzaVQxvOwunaVRaVSaVSaVTaVUaVSaRLaRLaRLaRLaVVaRLaRLaRNaVWaVXaSKaSKaVYaVZaWaaWbbdvaWdaWeaWfaWgaWhcpeaWiaWjbahbahbahaWlaWmaPEaWnaWoaWpaWqaWraUfaMbaDZaMcaPWaWsaWtaWuaWuaWuaWuaWvaVtaPYaWweexaWxaVxaWyaTmaWzaTmaTmaTmaWAaUyaWBsQtaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaEjaUCaEjaFiaHuaFiaFiaFiaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqICaKzwKawqufTYaWEftWaOfaOfgpCaOfaOfcJofwexmpfBtaWFaWFaWFaWIaWJaWFaWJaWFfBtnyBaCZaEaaKIaVSaWMaWNaWOaVSaWPaWQaWQaWRaWSaWTkEWaRNaRNaRNaRNaWUaWVaWWaRNaWXaWYaXbaXbaXbaXcaXdaPEmjnbahbahaXhbahbeBbckaPEaXkaXlaXmaXnaXoaXpaXqaHNaXraLfaPWaXsaXtaXuaPWaLfaLfaVtaPYaXvaLfaXwaVxaXxaTmaVzaTmaTmcCBaXyaXzaXAaXzaaaaaaaaaaaaaaaaaaaaaaaaaaaccsaEjaEjaUCaEjaFiaEjaFiaXCaXCaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWKppQaWKduQppQaWKaWKppQaWKaOsaHzaXFaXGkAaaXKaXKaXIaXJaXIaXKaXBaGUaHmaXLaXMaXNaXOaXPaVSaXQaXRaXSaXTaXUaXVaXWaXXaXYaXZaRNaRNaYaaRNaRNaYbaRNaRNaRNaPEaPEaYdaPEaYeaYfaYgaYgaYgaYhaYiaPEaYjaUfaYkaYlaYmaUfaMbaDZaMcaLfaYnaYoaYpaYqaYraYsaPWaVtaPYaYuaLfaYvaYwaYxaYyaYzaTjaYyaYAaYBaLgaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaZvaTxaZwaYCaFiaEjaYDaYEaYFaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaXHaYHaYIfowaYJaYKaXIaALaEaaYLaVSaVSaYMaVSaVSaYNaXSaYOaYOaYPaXSaXSaXSaXSaYQbgkaYRaYSbcerxVaYVaYUaYTaYXaYYcpgaYZaZaaZbaZccphaZdcpicpjcpkaZfaZgaUfaUfaUfaUfaUfaZhaDZaZiaLfaZjaVuaPYaPYaOVaZkaZlaZmaZnaOTaUlaZoaZpaZqaZoaZoaZraZsaZtcCTaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZyaZyaZyaZzaZAovMaZAaZAaZAaZAaZAaZCaZDaZEaXHaZFaZGaZHaZIaZJaZKaZLaZMaZNaVSaZOaZPaZQaVSaZRaZSaZTaZUaZVaZWaZXaXSaXSaXSgamaYSaYSaYSaYScplbabbacbadbaebahbagbahbagbahbagbeBbagbahbagbahbanaPEbaobapbaqaPEbaraDZaMcaLfbasbatbaubavbawbaxaPWaPYaPYaPYbazaTmaZtbaAbaBbaCbaDbaEaZpbaFaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaGOaEjcfQbbLbbMrWErWEsutrWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbaJbaKbaKbaKbaKbaLbaKbaMbaNbaNbaNbaNbaObaPaXHbaQbaRbaSbaTbaUaXIaALbaVbaWaXMbaXbaYbaZaVSaYNbbaaZTbbbbbcaXSbbdpWTpWTttSaZZaYSbbgcpmcpnbcfbbibaabblbbmbagcpobagbbrbbobbpbbqbbrbbsbbpbagbbtbbubbvbbwbbxaPEaMbbbybbzaLfaLfaLfaLfaLfbbAaLfaLfbbBbbCbbDaLfbbEbbFbbGbbHbbIbbIbbJbbKbbIbbIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjbcHbcIhSMbcJbcKbcLuXHoCXoCXatZbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcUbcQbcQbcVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxjzzbbQaZxbbRbaKbbSaZxbbQjzzbbRbaKbbTbbUaXHaXHaXIbbVaXIaXKaXKaALaEaaKIbbWbbXaZPbbYaVSaYNaZSaZTbbZbbcbcaaRLbcbbccbcdaRNcpqcprbcgbchcpsbbhbaabblbaebahcptbahbbrbcobbpabUbbrbcqbbpbahbcrbcsbctbcubcvbcwaSXaDZaMcaEjbcxbcyaFiaFibczaFiaLfaLfaLfaLfaLfbbEbcAbcBbcCbbIbcDbcEbcFbcGbbIaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaElaEjaUCaFiaEjmvmbdRbdSrWErWErWErWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbcYbcZbdaaZxbcXaZxbbRbaKbbTbdbbdcbddbdebbTbaKbdfaGVaALaEaaKIbbWbdgbdhbdiaVSaYNaXSbdjbdkbdlaXSbdmbdnaDZbdoaRNcpubcfbdpbdqaYSbdrbaabblbcmbagcpvbdwbdvbdwbdvbdxbahbagbahbagbckbagbahbagbahbdyaMbaDZaPSaEjbdzqAMaFijBhbdBbdCbdCbdDbdCbdDbdEbbEbdFbdGbdHbdIbdJbdKbdLbdMbbIaaaaaaaaaaaaaaaaaaaaaaEjbdQaTxaTxaTxaZwaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxaZxaZxaZxaZxbdVjzzaYGaYGbbTbdWbdXbdYbaKbdZbeabdfaGVaALaEabebaVSbecbedbeeaVSaXQbefbegbehbeibejbekbelbembenbeocpwbeqberbesbepcpxbeubblbaebexbagbeybezbeAbagbeBbagbeCbeDbeEbeFbeGaZeaXbbeHaPEaBIaDZaALaEjaFiaEjbeIbeIbeIbeIbeIbeIbeIbeIbczbbEbeJbeKbeLbdIbeMbeNbeObePbdIbdIbdIaaaaaaaaaaaaaaaaEjbeRaEjaFiaFibeSaFikIoaEjbfPkKIeZAvzTdsvaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbeYbeZbfabfbbaNbfcbfdbfebffbfgbfhaKIaVSbfiaVSaVSaVSbfjbfkbflbflbfmbfnbdmbdnaDZbfoaRNbfpcpycpzcpAcpBaRNbgkaRNcpCbfraPEcpCcpCaPEbfsbftbfsaPEcpCcpCaPEaPEbdybdyaPEaPEaEYaGVaGUaEjbfuaEjbeIbfvbfwbfxbfybfzbfAbeIbczbbEbfBbfCbfDbdIbfEbfFbfGbfHbfIbfJoPybfKaaaaaaaaaaaaaEjaUCaKqaFiaFiaFibfMbfNaEjbfPaFitDngUbdLYaEjaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbfZbgabgbbgcbgdbgdaALaEabgebgfbggbghbgiaawbdmbdmbdmbdmbgjbdmaRLkEMaDZbfoaRNbgkbglbgkbgkbgkaRNbgnbgobgpbgqbgrbgsbgpaPEbgtbgubgtaPEbgvbgwbgxbgybdobdobgzaDZbgAaDZaALbgBaDZbgCbgDbgEbgFbgGbgHbgIbgJbeIbczbbEdpsbbEbbEbbIbgKbgLbgMbfHbdIbdIbdIaaaaaaaaaaaaaaaaEjaUCaEjaEjaEjaEjaEjaEjaEjaEjhOzaFiaFixylaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgSaZxbbTbfYbgabgUbgVbgWbgXbgYbgaaALbgZbhabhbbhcaJIaJIaJIaJIbhdaJIaJIbheaJIbhdaJIaJIaJZaJIaJIbheaJIaJIaJIaJIaJIbhdaJIaJIaJIaJIbhfaJIbhdaJZaJIbhgaJIaJIaJIaJIaJIbhdaJIaJIbhebhhaJZaJIaJIbhibhjbhkbhlbhmbhnbhobhnbhpbhqaEjaZvaTxaTxbhrbhsbhtbhubhvbbIaaaaaaaaaaaaaaaaaaaaaaEjeCwgfibhzbjDgfibhzgfibhBaEjaEjnZwaEjaEjaEjahtahtahtahtaEjaElaElaElaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbhEbfZbhFbhGbhHbhGbhIbgdbhJbhKbhLaDZaALaDZaDZaDZaDZaBIaDZaDZaDZaDZbhMaDZaDZaALaDZaDZaDZaDZaDZaDZaDZaDZaBIbhNaDZaDZaDZcpHcpIcpJbhOcpKcpLcpMaDZaDZaDZwVCaBIaDZaDZaDZbhMaALaDZbhPbhQbeIbhRbhSbhTbhUbfzbhVbeIaNRaEjaUCaEjaEjbbIbbIbbIbbIbbIbbIaEjaEjaaaaaaaaaaaaaaaaEjaUCaEjlEnlEnlEnlEnaEjfwIaEjoRXaFigSIaKqaEjaElaElaElaElaEjbnliCewOfaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbibbhGbicbidbiebgdbifaIeaHNaHNbigaHNaHNaHNbihbiibijbikbilbikbimbikbikbinbimbikbikbikbikbikbijaHNaHGbigbihaHNaHNcpNcpOcpPbiocpQcpRcpSaHNaHNbihaHNaHGbipbiqbipbirbisaHNaHNbipbitbiubhSbivbiwbeIbeIbeIbixbiybizaTxaTxaTxaTxbiCaFiaEjaGPpKdaEjaEjaEjaEjaEjaEjaEjaUCbkFpnUuwbbiDvYNbkFfwIaKqbiFgfigfigfintjgfigfigfigfintjgfivskbhBaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbbTbiIbiJbiKbiLbiMbgVbiNbgabiObiPbjjbiRbiSbiTbjLbjLbiWbiXbiYbiYbiYbiYbiZbiYbiYbjabjbbjabjabjcbjcbjdbjebjdbjfbjgbjhbjdbjicpTbjkaBIaDZaDZbjlcpUbjnbKMbjpbltbjrbKMbGabKMbBoaANbjmbjmbjmbeIbjubhSbivbiwbeIaKqbjvygZbjwbjwbjwbjwbjwbjwpdWaTxbjxbjxbjxbjxobjbjxbjxbjxbjxoTlqHIbkFpnUbjBbiDvYNbkFbjEgfibjFaFibfMybXbfMybXfNvbfMybXfNvaFiljefwIaElahtaaaaaaaTCbeUaTEaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbbQaZxaZxaZxaZxaZxbbQjzzaYGaYGbbTbfYbfZbfZbjIbjJbjKbgdbgdbjLbjLxQcbjLbjLbjLbjLbjPwUfbjRrvHbjSbjTbjUbjVbjWbiYbjXbjYbjZbkabkbbkcbkdbkebkfcpXcpYbkibjcbjdbjdbjeaEYaGVaGVbGabKMbKMbBobkmbmCbkobkpbkqbkrbksbktbkubkvbkubktbktbkwbktbktbktbkxbkxbkxbjwbkybkzbkAbkBbjwbjwbjwbjwbjwbjwbjwaLiaFiaEjaFiaEjvzPaKqbkFbndbkHbndbndbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFrxaeCKaEjaEjaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbkQbkRbkSaZxbcXaZxbbRbaKbbTbkTaYGbfZbgdbgdbgdbgdbkWbjLbkXbkYbkZblakSOblbblbwUfblcbiYbldblebldblfblgbiYblhblibljblkbkbbllbkhblmblncpZcqablpbkeblqblrbjdblsaDZblubKMblvblwblxblybmCblzblAblBblCblDbktblEblFblGblHblIblJblKblLbktblMblNblMbjwblPblQblRblSbjwblTblUblVblWqDJbjwtimbjwbjwbkDbjwvzPaEjbkFtaTmqltdBblZxWlbnjblXbnhbnibnjblXbnhbnibnjblXbnhblXbkFbnlwQUbnnaEjaaaaaaabyabyabyaedaedabyabyabyabyabyaedabyabyabyaedabyabyabyabyabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxbbRbaKbbSaZxbdVjzzbbRbaKbbTbfYbmcaYGbmdbmebmfbmfbmfbmgbmhbmibmjbmkbjLbmlbjLbmnbiXbiYbmpbmqbldblfbmrbiYbmsbmtbmubmvbkbbmwcqabpTbmxcqcbmybmzbkhbkhcqdbmAaBIaDZaDZbltbmCbmCbmCbmDbmHbmIbmJbkncqebkobkubmLbmMbmNbmObmObmPbmQbmRbktbmSbmTbmUbjwbmVbmWbmXbmYbjwbmZbnabnbbnavmGuAZeXonJIxPavxpbjwiWVwAIbkFlWHbpnbpnmQmhPNbnjblXblXblXbnjblXblXblXbnjblXblXblXbkFbokxahbomaElaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabslaZxbslbaKbaKbaKbaLbaKbnobnpbnpbnpbnqbnrbnsbntaYGbnubnvbnvbnvbnvbnvbjLbjNbnwbjNbjLbjLbnxiGJbnybiYbldbmqbldblfbnzbiYbnAbnBbnAbjabjcbnCbnDbpTbnEbnFbnFbnGcqfbkhcqdbmAaBIaDZaDZcqhcqicqibnIbJIbyKbyKbnLbnMbnNbkobktbnObmMbnPbnQbnQbnRbmMbnSbktbnTbnUbnTbjwbnVbnWbnXbnYbjwbnZbqsbqspbIbnZboebofbogbohbocbjwaFivzPbkFwfshEXthWilDnxTbnjbprblXblXbnjbprblXblXbnjbprblXblXbkFaFifwIaEjbkFbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtKbtLbcXbtMbonbonbonbonboobonbaKbaKbaKbaMbopbfYbntaYGboqbnvborbosbotboubovbowboxboybozbnvboAbjQaaxbiYbldboCbldblfboDbiYboEboFboGbjcboHboIboJbpTboKboLboMboNboNboNboObjdbmBjcTbjmbKMboPboQboRboSboSboTboUbsUbyCbkobktboXbmMbnPbnQbnQbnRbmMboZbktbpabpbbpcbjwbpdbpeeSLbpgbphbpibqsbqsbqspDPboeboabpobppbncbjwbpqvzPbkFpfPbrObpnedJuePbnjoSckNfhvWbnjbqGbqHbqIbnjbqJbqKbqLbkFaFifwIbkFbkFkRKqcDqYqlGSdmTbkFblXblXblXbkFahtabyahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxaZxaZxaZxpEHbaKbaKbaKbbTbfYbptaYGbpubnvbpvbpwbpxbnvbpybpzbpAbpBbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpHbpMbpNbpObpPbpQbkhbpRbpSbpTbpUbpVbpVbpWbpXbpWbpVbpYvKqxjemhncClbqbcClcClbqbbqcbqbcClbqdbqebqfbktbqgbqhbqibqibqibqjbmMbqkbktbqlbqmbqnbjwbqobqpbqqbqreYredlbqtbqtbqtnBLbqvbqwlARbqxtdpbkFbnjbqAbkFbqCbzgbqEbqFostbrRbsabsbigEbnjbsabsbbscbnjbsabsdbsebkFaEjbqObkFkFDcPyxxwsNznImtqXbkFblXblXblXbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxdeJbaKbaKbaKbbTbqSaYGaYGboqbnvbqTbqUbqVboubqWbpzbqXbqYbqZbrabrbbrcbrdbiYbiYbiYbiYbiYbiYbiYbrebrfbrgbjcbrhbribjdbpTbpUbpVbrjdHZbrlbrkbrmbpYnTrtTlcqicClpYwbrqbrrbrsbrtbrucClbrvbyCbkobkubrwbrxbmMbrybrzbrAbrBbrCbktbrDbrEbrFbjwbrGbrHbpfbqsbqsbqsbrKbrLbrMbqsbqsbrHbqsbqsoDPbrRbrTbrUbrVbrWbrXbrWbrWnOYqVPbtwbtwbtxitlbtwbtwbtxbsfgIGgIGxjTbkFbtAbtBxKceILdirlhAnqVoEWnEbpbRblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxsIKbaKbaKbaKbbTbsmaYGbsnboqbnvbsobspbsqbnvbsrbssbstbsubsvbswbsxbsybszbsAbsBbsCbsCbsDbsEbsAbsFbkgbsGbjcbjdbjdaaybsHbsIbpYbsJbsKbsLbsMbsNbpYgDRtTlcqicClgFobyFbsRbsSbsRbsTcClcqkcqlbsVbktbsWbsXbsYbsZbtabtbbtcbtdbktbtebtfbkxbjwbtgbrHbthbtibrJbtkbtlbtlbtlxgGbrJbtpbtibrJbtsbttbxFbxFumevMxcsubtubtvdgzqtFbuIbuJdxcbuLbuMbuNbuObuQbuNbuNbtEqdiuXGbtFvgpmTSmTSlFhoSLiuMpWmblXblXtfPtuybkFahtabyahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxwjQbaKbaKbaKbbTbtNbtObtPbtQbnvbtRbtSbtTboubtUbtVbtWbtXbtYbnvbtZbsybjQbuabubbucbudbucbuebuabkhbufbrfbugcqmcqmcqmblobuibpYbujbukbulbumbunbpYvzAtTlcqitJrcSKcCtbupbuqburbuscClbutbyCbuubktbkubuvbkubktbktbktbktbktbktbuwbuxbuybodfjsbuAwBbwBbwlKbuBdkRbuCgDZcKAbuDbuEbuFbuGbuHbrRwkZbuKbkFofNxzpxprnuvjxljwebwebwebwfcucbwhbwebwfbuUbwebwebuWbkFmtIgICoBbpMGufaufahUJwXuuvonaqblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxpEHbaKbaKbaKbbTbfYaYGbvabvbbnvbnvbtSbnvbvcbouboubvdbvebvcbvcbvfbvgbvhbvibvjjsjbvkkQytixrarjUVbvmbvnbvobvlbvlbvlbvlbvpbvqbvrbvsbwUbvtgGApxDbvugkScqitzHduFbyFbvwbvxbvybvzbqbbsUbvAbvBbvCcqpbvEbvFbvGbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbvTbvUeNqbvVbvWbvVbvYbvZbwabwbbwcbjwbkFbnjdqwbkFgdLugCihkihktXnbrRbxMbxNbxObnjbxMbxQbxRbnjbxMbxSbxTbkFbwmbwnbkFiPzoNEtaAriWcOpmMzbkFblXblXblXbkFaaaaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoQmpqPbcXqRmbbRbaKbaKbaKbbTbfYaYGbwsbwtbnvbnvbwubnvbwvbwwbwxbwybwzbwAbvcbwBbwCbwDbwEbwFbwGbwHbwIcSJbwEbwKbwLaazbwNbwObwPbwPcqsbwQbpXbwSbwTbsKbwVbwWjZGhIZtTlcqitzHbxabxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxnbxobxpbxqbxrbxsbxtbxubxvbxwbxxbxybxzbxAbwabxCbxDeNqcxtbxGbxHbvYbxJefubxKbxLbjwldQbwmspzbkFiLlgdJpXgcPThfZbnjbzkbzlbzmbnjbznxxObzpbnjbzqbzrbzsbkFkFuvRibkFsXRoepqcHjtflGSdmTbkFblXblXeQRbkFahtabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxbxYbxZbyaaYGbybbycbnvbydbtSbyebyfbygbyhbyibyjbykbvcbylbymbynbsAbyobypbuabyobsAbsAbyrbysbytbyubyvbyubyvbyubyvbpYbywbyxbsKbyzbyAbpYtqOtTlimEbyDbyEnIUbyGbyHbyImdLbqbbyJhiYbyKcqtbyLbyMbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbzabzbbzcurPbzdbzebzdfkHtAKbzhbzibzjbjwlNWbwmspzbkFbkFbkFbkFbkFbkFbkFbAHblXblXbnjbAHblXblXbnjbAHblXblXbkFtSLdKsbwmsXRbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbzzbzAbzBaYGbzCbzDbnvbzEbwubzFbzGbzHbzIbzJbzKbzLbvcbzMbzNbzObsAbzPbzQbzRbzSbzTbzUbzVbzWbzXbzYbzZbAabAbbAcbAdbpYbAebAfbAgoohbAibpYmqptTlkYMbAmbBpbAobApbAqbArbCJfRsbAtbAtbAtbAubAvbAwbAxbAybAybBobAAbAAbABbAAbAAbAAbAAbACbADbAEbAFbAFbAFwnJvTNwnJbAFbAFbAFbAFbAFbHymSclWyspzbxPbwmlWykPisyQkkQbkFblXbBUblXbnjblXbBUblXbnjblXblXblXbkFcDBoKabwmpwSmlrnNNahtaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbAIbAJkGebAKbALaYGbzCbAMbnvbANbAObAPbAQbARbASbATbAUbAVbvcbAWbAXbAYbsAbCjbzQbzReFjbBcbBdbBebBfbpPwLobBgbBhbBibBjbBkbpYbpYbBlbpYbpYbpYbpYcKVkozmfCdhzwfGbBqbBrbBsbBtbBufRsbBwbBxbBybAubsUbBzbkobBBbBoaaabAAbBCbBDbBEbBFbBGbAAbBHbBIbBJbAFbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbHyscigXgwFTnevxlAcDBcDBcDBrKLbkFblXbDeblXbnjblXbDeblXbnjblXbDeblXbkFcDBrgnbwmbwmsEBbwmbwmahiaaaaaaaedabyabyaedabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbBVabIbBXbBXbBXbBXbBXbBYbvbbnvbnvbnvbnvbBZbCabCbbCcbCdbCebvcbCfbCgbChbsAbCiiojbBbbClbCmbyobCnbCobCpbCqbCrbCsbCtbCubCvbCwbCxbCybCzbCAbCBbNZiwedggfdQuxPbBpbCEbCFbCGbCHbCIbAobCKbCLbCMbAtcqkcqvbkobCNbCOahtbCPbDNmzEbCQbCQxExbCSbCTbCUbBJbCVbCWbCWbCXbBNbCZbCWbDabDbbDcbDdbHybwmbwmbwmhgDbwmlWyhxnrFqlWybkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFaadjRGeuQvtljEXlWyvHfahiaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfabIbBXbDgbDgbDhbvabDibDjbDibDibDkbnvbvcbvcbvcbDlbDmbDnbvcbDobDpbDqbsAbDrbsAbDrbsAbDrbsAbDsbkhbpPwLobDtbDubDvbDwbDxbDybDybDybDybDybDzbvaqTVphJbmDbDAbBpbDBbDCbDDbDEbDFbAobDGbDHbDIbAtbsUbBzbkobDKbBoahtbAAbDLbDMbCRbDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDXbDXbEabEbbEcbEdbHyglfpNyveMbEfbAFtSLuvqobPlWybwmkgRdMOhTlbwmqIOdmPaaAsZuwfcbwmueVdoodtmgmpvuQbwmruibwmbwmahiaaaaaaaedahtahtabyabyaedahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfahtbBXbEjbEkbElbEmbEnbEobmfbEpbmfbEqbDibErbvcbvcbvcbvcbvcbEsbEtbEubjcbEvbEwbExbEybEzbkbbEAbEBbECbzYbEDbEEbEFbEGbEHbDybEIbEJbEKbELbEMbvaxDjphJbmDbEQbBpbERbESbETbEUbEVfRsbEWbEXbEYbAubsUbBzbkobEZbCOaaabCPbFabFbbGhbCRbFdbCSbCTbwbbFfbCVbFhkmnbFibFjbFkbFlbFmbFnbGubFpbHybFrbFsbFtbFubAFlWybFxbFybFzbwmbFBlWybFCbwmjXAbFDlWylWysAKbwmheCefUbwmbwmbwmbwmbwmbwmaaaahtabyaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFEaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaabDfabIbBXbFFbvabvabvabvabvabsnbsnbvabFGbEnbFHbFIbFJbFKbFLbAWbErbFMbFNbFObFPnaSbkhbFQwtEbFRbFSbkhbFTbFUbFUbFUbFUbFUbFUbDybFVbFWbFXbDybFYbvabltlJIeRpbGabBpbBpbBpbBpbBpbBpbBpbAtbGbbGcbAubGdbBzbkobGebBoahtbAAbGfbGgbGhbCRbGibAAbGjbGkbGlbAFbGmbGnbGobGpbGqbGrbGsbGtbGubGvbGwqtAbGxbGynoMbGAbAGbIPbGBbIRbwmbwmrxQbwmbwmbwmbwmfKjbwmbwmbwmuugeMCjFwrNBaaaaaaahtaaaahtaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGDbGEbGFbGEbGGbGHbGIaaaahtahtaaaaaaaaaaaaaaaaaaaaaagSaaabvabvabvabGKaaBbGMbvabvabvabvabGNbDibErbGObGPbGQbGRbAWbGSbGTbGUbFObGVbkhbGXbuhbuhbGYbGZbuhbHabFUbHbbHcbHdbFUbFUbFUbFUbHebFUbFUbDzbvajCvbAkbAlbHpbvDbHhbHibHjbHkbHlbHmbHgbHnbHobHpbHqbHrbHsbHtbCOahtbCPbCRbHubCRbCRbHvbHwbuzbuzbuzbHybHybHybHybHybHybHyubWbHzbGubHAnsDkhkbHCbHDbHEbAFbwmbNqbwmfwrbwmsvNlWynzDbIQbIQgxKlWybwmhXtbwmcDBcDBxpDbwmahtabyabyabyabyaedabyabyaedabyahtahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbGDbGEbHJbHKbHLbGEbHMbHNaqGaqGaqGaaaaaaaaaaaaaaaahtagSbvabvabHPbHQbHQbHQbHRbHQbHSbvabHTbGNbDibErbHUbHVbHXbHXbHYbHZbIabIbbFObIcbIdbIebIfbIgbkbbCnbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbFUbDzbvabOKbItbIusYQbIvbIvbIvbIxbIvbIvbIycqwbIAbRXcqxbICbIDbBAbIEbBoaaabAAbIFbIGbIHbIIbIJbHwabIabIabIaaaaaaaaaaaaabIaaaaaaubWbIMbILbIMrPWbINcxbfBzbJVbAFrBhtSLbwmeMClQnbIQbIQuojbwmhXtpWFbIQbIQbIQbIQbIQdVJjQhbwmaaaahtahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybITbIUpbmbIVbIWbIXbHMbGEbGEbGEbGEbIYaaaaaaaaaaaaahtagSbIZbJabJbbJcbJdbJebJfbJgbJhbvabJibGNbJjpQwbJksENbJmbJlbGWbGWcBKbJnbFObFObFObjcbjcbjcbjcbJobkhbJpbJqbJrbJsbJrbJtbJubJvbJwbJxbJybJzbJAbvabENbJBbJCbJDcqzcqzcqzcqzbJEbJFbJGcqDbJHcqEbJJbJKbJLbJMbJNbJNbJNbHwbHwbJObHwbHwbHwbHwbJPbJPbJPbJPbJPahtabyabyabyahtxIxbJQbJRbJSkfhdAFbJTgMmbLhbAFgjvhMxbwmbwmbwmueklWybwmbwmbwmbwmbwmbwmrNBbwmbwmjDAbwmbwmaaaaedabyabyaedabyabyaedabyahtaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybJZbHMbKabKbbKcbKdbNwbKecqWizFbGEbIYaaaaaaaaaaaaahtagSbIZbHQbJbbKhbKibKjbKkbKlbKmbvabvabGNnpEbErbKnbKobKnbKpbKnbKqbKrbKsbKtbKubErbKvbKwbKxbKybGZbKzbKAbIjbKBbKCbKDqnibKEbJxbKFbJxbKGbFUbKHbvabKIbKJbKKbBobKMbBobBobKMbJNbKObKPbKObJNbJNbKQbJNbKRbJNbJNbKSbKTbKUbKVbKWcqGbKYbKZbLabLbbLcbLdbLebJPaaaaaaahtaaaaaabHybIMbLfbIMbHybCVwOSbCVbMqbAFtfxtfxrNBahtrNBlWylWylWybwmahtahtaedabyabyaedbwmrNBbwmahtahtabyahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyabyaedabybITbHMcqHbLobOybLpbLqbLrbKfrosbHMahtaaaaaaaaaahtahtagSbvabLtbJbbLubLvbLvbLxbJbbHQbLybsnbGNnpEbErbLzbLAbKnbLAbLBbKnbLCbKsqarbLEbErbLFbLGbLHbLIbLJbnHbLKbFUbKBbLLbKDbFUbLMbLNbLObLPbLQbFUbKHbvabENbJBbCCbBobLRbLSbLTbLUbLVbLWbLXbLWbJNbLYbLZbMabMbbMcbMdbMebWMbOrbOXbMgbOXbMhbORabIbMibMjbOSbMkbJPahtabyabyabyahtbHybMlbMmbMnbHybCVbMpbCVahtbAFxlgxlgbwmbwmbwmbwmmESbwmbwmbwmbwmaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabIaaaabIbGHbMrbHMbLnbMsbMtbMubMvbMwbMwbMxbHMahtahtaaaahtahtahtalabvabHQfgSbLubMAbMBbLxbMCbMDbLybMEbGNnpEbErbMFbMGbKnbMGbMFbKnbMHbMIbGWbMJbErbjcbjcbjcbjcbMKboNbMMbFUbFUbFUbFUbFUbMNbMObMPbMQbMRbFUbKHbvabHfbMSbMTbMUbMVbmCbmCbMWbMXbMYbMZbNabNbbNcbNdbNebNfbNgbPTbNhbNibPUbUvbNjbNkbNlbWRbNnbLbbNobLebLebJPaaaaaaahtaaaaaabHybNpbNpbNpbHybCVbPlbCVahtuaOmJpmhKbwmikBwTOqnTlWydMIoEGhFpbwmahtabyaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyaaabNrbNsbNsbHMbNtbNubLsbNvbNwbNxbNybNzbNAbNBamCamBamCamBamDahtbIZbNFbJbbNGbNHbNIbNJbJbbKmbvabvabGNnSjbErbNLbNMbKnbNNbNObKnbNPbNQbNRbErbErbNSbNTbNUbjcbjccBLbjcbjcbNVbNWbNXbFUbFUbFUbFUbFUbFUbFUbNYbNZbOabObbOcbmCbOdbmCbmCbOebOfbOgbOhbOibOjbOkbOlbOmbQJbOnbOnbOobQKbRwbQLbOpbOqbQMbWcabIbJPbJPbJPbJPbJPahtabyabyabyahtbOsbOtbOtbOtbOsbOubcOahiaaadsznquwIorNBiVJhPUlJrlWylWyndIabfrNBaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbNwbNwbOxbMybNwbNwbNwbNwbHMbHMabIaaaahtaaaahtaaaaaabIZbHQbJbbOzbOzbOzbOzbJbbOAbvabJibGNcXWbErbOCbODbErbODbOCbErbOEbOCbAWbErbOFbCzbCzbCzbCzbCzbCzbCzbCzbCzbOHbCzhZBbCzbCzbCzbCzbCzbCzbOJbvabOKbJBbmDbOLbOLbOLbmCbOMbONbOObOPbOQbPQbPQbOTbOUbOVbOXbOXbOXbOZbPabPabPVbPdbPebPfbLabLbbPgbPhbPhbJPaaaaaaaaaaaaaaamZEmZEmZEmZEmZEahtaaaahtahtxQkmJpmhKbwmlWyxsOlWylWylWylWyabfbwmahtabyabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybGDbNsbOwbOwbOwbNwbPnbPobNwbOwbOwbOwbNsbSZabIahtahtahtahtahtahtbvabvabPpbHQbHQbHQbHQbPqbPrbvabHTbPsbPtbPubPvbPwbPxbPxbPvbPxbPybPzbvabPAbDzbPBbPBbPBbPBbPBbPBbPBbPCbPDbPEbPEbPFbPEbPEbPEbPEbPEbPEbPEbPEbPGbPHbPIbPJbPKbPLbmCbPMbJNbPNbPObPPbRxbRybPRbPSbMfbMfbMfbMfbMfbMfbMfbPVbPWbPXbPYabIbMibPZbQabQbbJPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxInqumhKrNBtyprEhmaWlWyjDAcDBijUrNBaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbQcbOwbQdbQebQfbWXbQebQdbOwbQhbNsbQiabyabyaaaaaaahtaaaahtabIbvabvabIZbIZbIZbIZbvabvabvabQjbvaqyFbvabIZbQkbvabIZbIZbvabQlbIZbvabNXbDzbPBbQmbQnbQobQpbQqbPBbPBbPBbQrbQsbTubQubQvbQwbQxbQybQzbQAbPEbQBbQCbmDbOLbOLbOLbmCbQDbQEbQFbRzbQGbRAhkabPQbSfbMfbMfbMfbMfbMfbMfbMfbPVbPWbSRbQObNnbLbbQPbPhbPhbJPaaabzyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIxQktlpmhKbwmbwmrNBbwmbwmbwmrNBbwmbwmaedabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQQbNsbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbNsbQRabIabyaaaaaaahtaaaahtaaaaaaaaaaaabBWabIabIbvabQSbQTbPAbWkbQUrXTbOGbQVbOIbCzbCzbCzbQWpwjpwjbQXbCDbPBbQZcCPcCFcCHbRbbRcbRdbRebRfbRgbRhbRibRjbRjbRjbRkbRlbRmbPEbBmbJBbRnbRobRpbRobRobRqbRrbRsbRtbRubSSbQHbPQbUpbMfbMfbMfbMfbMfbMfbMfbPVbPWbRBbPYabIbJPbJPbJPbJPbJPabIabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxIilEhyhcdmahtaaaahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabIbNrbNsbNsbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbNsbNsbRCabIabIaaaahtahtahtaaaaaaaaaaaabBWouvrMVrMVvmYvayvaynLlbvabFZbvabREbFZbvabRFbNKbvabvabvabKHbDibPBbQZcCFbRacCFbRGbRHbRIbRJbRKbRLbRMbRNbRObRPbRQbRRbRSbRTbRUbRVbRWbRXbRXbRYbRZbmCbCCbSabSbbScbSdbSTbSebQIbTMbMfbMfbMfbMfbMfbMfbMfbPVbPdbShbPfbLabLbbSjbSkbSlbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaahtabyabyabyaedabyabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabGDbNsbNsbSmbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbNsbNsbSnabIaaaahtaaaahtaaaaaaaaaaaabBWbBWcqybSobSpbSqbSqnfzbvasUPbSsbStbFZbSubDibSvbSwbSxbvabKHbUebPBbQZcCHbSycCPbSzbSAbSBbSCbSDbSEbSFbSGbSHbSHbSHbSIbSJbSKbPEbSLbSMbSMbSNbSMbSObQDbSPbJNbLWbSQbTObJNbPQbPQbUpbMfbMfbMfbMfbMfbMfbSUbUwbPWbSVbPYabIbMibSWbSXbSYbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaahtaaaahtaaaahtaaaahtaaacFBaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabQQbNsbOwbOwbOwbOwbQdbQebQfbWXbQebQdbOwbSmbOwbOwbNsuZbabIabIabIaaaahtaaaaaaaaaaaabTabTbbTcbSqbTdbDibvanpEbvabTfbTgbThbFZbTibPCbTjbPCbTkbvabKHbTlbPBbTmbTnbTobTpbTqbPBbTrbTsbQrbTtbTubTvbTwbTxbTybTzbTAbTBbPEbTCbTCbTCbTDppsbTFppsbTGbJNbTHbTIbTJbTKbTLrNibTNbMfbMfbMfbMfbMfbMfbTTbUwbPWbTPbQObNnbLbbTVbSkbSkbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaabyaedabyaaaabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbOwbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbOwbNscqSuZbaaaabIaaaahtaaaaaaaaaaaabTWabIcqybTXbPCbSwbNKoZWlGvvGgbUarJglmsbUbbDibDibUcbUdbvabKHbBXbPBbPBbPBbPBbPBbPBbPBbPBbPBbQrbUfbUgbUhbQrbQrbQrbQrbQrbQrbQrbUibUjbUkbTCbUlbUmbUnbTQbJNbUpbUqbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbUvbUwbPWbUybWcabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaabGIbGIbGIcqUbNsbNsbOwbOwbOwbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbOwbOwbOwbNsbNsveFahtahtahtaaaaaaaaabUDbUEbvabvabUFbDibSwbvabDibvawdxjYhdAGbvabvabvabvabvabvabvabKHbBXuwXbUGuwXbUHbUIbUJbUKbULbUMbUHbQrbUNbUObQrbUPbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbVabVbbVcbVdbVebVfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbKXbVjbPdbVkbVlbLabLbbVnbVobVobJPaaaabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabVpbNsbNsbNsbNsbNsbQebOwbOwbOwbQgbQgbQgbQgbQfbWXbQgbQgbQgbQgbQgbQgbQgbQebNsbQRabIaaaabIaaaaaaaaabVrbvabvabVsbNKbDibvabvabDibvabVubVvbVwbvabVybPAtRcbvabDijXVbKHbBXuMeuMewMMbUHbVDbVEbVGcqVbVHbUHbVIbVJbVKbQrbVLbVMbVMbVMbVNbUUbVObVPbVQbVRbVSbVTbVUbUobJNbUpbMfbMfbMfbMfhjkbVZbVZbVYbVZbVZbVZbVYbTRbTSbUrbWbbWcabIbMibWebWfbWgbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbUCbWhbQgbQgbQgbQgbQgbOwbQdbQebQfbWXbQebWibOwbOwbOwbOwbQgbOwbNsbNsbSZaaaabIaaaaaaaaacqXabIbvabVCbvabDibvabWjbSwbvamzUbvabvabvaohRbSwbVzbvabDibvaiygbBXlTChzcfzubUHbWnbWobWpbWqbWrbUHbWsbWtbWubQrbWvbWwbWxbWybWzbUUbWAbWBbWCbWDbWEbWFbWGbWHbJNbWIbWJbMfbMfbWMpmBbOXbOXbUsbOXbWObMfbWPbUtbUubWQbUzbWRbNnbLbbWTbVobVobJPaaaabyaaabzyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbOwbOwbQgbOwbOwbOwbOwbOwbOwbWVbWVbWWcekbWVbWVbOwbOwbOwbOwbQgbOwbUCbNsbSZabIabIabIahtahtcqXaaabvacqybvabWZbDibWZbSwbvarzpnQciEQbvahVxbSwftpbvawIvbvalIrqXqbXdbXewiBbUHbXfbXgbXhbXibXjbUHbXkbXkbXkbXkbXlbXmbXnbXobVNbUUmCemCemCebWDbXkbXpbXqbXkbJNbXrbXsbXtbXubXvbXwbUAbXxbVgkasbXAbXBbXybXCbXDbXEbXFbXGabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacfNbZYcrbbZYbZYbZYcfNcfNcfNbOwbQgbOwbOwbOwbOwbWVbWVbWVbXJbXIcdxbXJbWVbWVbWVbOwbOwbQgbOwbOwbNscrebGIaaaaaaaaaaaacqXaaaahtaaabvabDibvabXSbSwbSwkpKbXUbXVtvPoWwnNJlQXnNJqOHqYibQYbBXcifkrUreVbUHbUHbXYbXZbYaqGZbYbbYcbYdbYebTEbYfbYgbYhbYibYfbUTbYjbYkbYlbTEbYmbYnbYobTEbJNbKQbJNbYpbLWbVhdJkbYpbVibVmbNmbQObNmbQObYsbYtbYubYvbYwahtaaaahtahtaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbZYcrgceCcrhbZYcfNcfNbOwbOwbQgbOwbOwbOwbUCbWVcrjbXJbXJbZndpcbXJbXJcrkbWVbWVbOwbQgbQgcrlbNsbNsbNsbSZabIahtahtcrmbvabIZbvabvabDibvabvabvabYFbDibDibDibDibDibDibDibDifpTbBXbXkbXkbXkbXkbXkbXkbYIbYJbYKbYLbYQbYNbYObYPbYQbYRbYSbYTbYUbYVbYWbYXbYQwjmbYObYYbYZbZahXKbZcfrjudlcuieAZcuipoPcuieAZcuipoPcuipoPcuipoPbVWbZfbZgbZhbZibZjbYwbYwbYwbYwaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrtcrucrvcrvbZYcfNbOwbOwbOwbQgbOwbOwbWVbWVbWVbXJbZlbZmbZndpcbZlbZmbXJcrxbWVbOwbQgbQgbXLbXMbXNrzFahiahicdmcdmcrycrzcrAcrBcrCbZrbvabNXbOBbSwbZtbZtbNKwRkbNSnWPbvabOBfpTbBXmbebZxvRmkyvsKabTEjrGbZybZzbZAbZDbZFbZAbZFbZAbZAbZAbZBbZEbZAoWubZAbZAbZFbZAbZAbZGbZFbZIueXpYhbZKbJPbZLbMibZLbJPbZLbMibZLbJPbZMbMibZNbYwbZObZPbZQbZRbZSbZTbZUigBbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrDcrEcrFcrGbZYbZYbZYbOwbOwbQgbOwbQebWVcdCbYzbXJbYAbYBbZndpcbYAbYBbXJcrHbWVbOwbQgbQgbNsbNsbNsbNsbNsbSZabIabIabIbvabIZbvabvacaabvabvabvabvabvabZsbvabvabvabvabvabSwfpTbBXsczeQNbpLlWJiFIcaecafbZynAYcawcajcakxhIrTdcancancancaqcarcamcamcamcamcbmcamcamcaxcalhXKcCUpYhabIbJPcazcaAcaBbJPcaCcaDcaEbJPcaFcaGcaHbYwcaIcaJcaKcaLcaMcaNcaOcaPcaQcaRhblaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYbZYcehnkubZYbZYgiIpkMbQgbQgbQgbSmbWVbWVcaTbWVcrKbZlcrLbZndpccrMbZmcrNbWVbWVbUCbQgbOwbOwbOwbOwbOwbNscrOaaaaaaaaaaaaaaaaaabvacaabvacabaaCbvaoAWkRqbMEbvaklogjpbvabDiwNquUQkSFtcYfQfiAxoUaetauuncbccbdcbecbfcbgcbhwDlcbicbjqpScbkmgzccWvlilfxmgzmgzlrMcbncbocbpcbqbZJpYhabIbJPcbscbtcbsbJPcbucbvcbubJPcbwcbxcbycBTcbAcbBcbCcbDcbEbZTcbFfRrbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYjsDxSXcrTceEcrUbZYpkMbZYbOwbUCbOwbOwbWVbXJcbKbWVcdrbYAcaVbZndpccaWbYBcrXcrYbWVbOwbQgbQebOwbOwbOwbOwbNsarFbvabIZbIZbIZbvaaaabvabXabvajPfkRqgkXbDiuMtbDiolcbSvlHXbvabDibvabBXkDJcamcbWbZAvjdmmvcbYcbZnRMccaccbcamcbhvxrcccaacaaeaacaacbXkckJbXkaacaacaaeaaccccccicbdwbFpYhabIbJPcbsccmcbsbJPcbuccncbubJPcbyccocbybYwccpccqccrbYwthAbYwbYwqVkbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdcsecsdcsicsfcsgcshlAfcrvbZYccubOwbOwbUCbWVbYzbWVbWVcdwcbPcbMbZndpccbPcbMcdxcskbWVbQgbQgbQgbQgbQgbQgbUCbNsarFbvacaZcbacbbbvabIZbvabRDbvaoFIkRqbvapYCbMEksfbvanewnDobvabDigMOfdSoYjcamcbdcamoAwcaecdcbZycamcamcahcamcbhirMaaccbXccXccYcbXcdaceypCotlVoHacAQcbXaackTjcamcCVpYhabIbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbYwcdgcdhcdicdjcdkcdlgmZcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsncsdcsocspowSpFecsqcsrcsscsscfkcbGcbGcbGcbGcdqcdrcdsbWVcsvcduccHcbNcbOcduccHcgnbWVbWVcbRcbRbWVbWVbOwbQgbOwbNsarFbIZcbScbTbDibNKcsybSqbWlbvabvabvabvabvafefbvabvabvabvabvabIZbBXbBXuMosjCcdIouscdKbTEgnqcdLcdMqtOcdOcamcbhirMcdRwcsccXcdTwcswcscdWwcswcsoHacAQwcscdRkTjcamcebpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaabYwcbzbYwcecbYwcedoGwbYwcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacBMceFcsBcsCcspcsEhYecsEcsFcsGcsGtancefcsMceecefcegcsNcsOceicsNcsQcsQccEccFcePcePcsScbRccJbXJbXJcsTcsUccMbQgbOwbNsarFbIZccNbDiccObvabQlbvacdEbvarsestQpVDmHyfmhbDirhrdyesijbvaaaaaaabBXbXkbXkcribXkbXkbXkbXkcerbXqbXkioFcamcbhqFuaafiyJceuccYwcswcswcswcswcseWicLwcfPaagqhEcamepVpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaaahtaaaaaaceAbYwbYwbYwbYwbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsYcsdcdpcsprrUkwmctactbctactacteceBceBceBceBchJctgceHbWVbWVceKceLcdwcdxcthceKbWVbWVcdwcdAcdBcenbWVcdDbQgbQebNsarFbIZbIZozObIZbvacqXbvabIZbvauInboqkDYwzbbNUohRdymnVUbDibvaaaaaaaaaabXkmcicbXccRbXkceTceUceVxmEbXkceXmwGhjDcetbXkcfacbXcbXcfdwcscdWwcsdEycbXcbXcffbXqlozhaAqLIpYhaaaahtaaaaaaaaaaaafonfonfonaaaaaaahtaaaahtaaaaaaaaaaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdkDfcsdctrctrctrcttctugKzbZYcfNcfNcfNcfNcfmctxcflcfmcfmcfmcfmcejcekcfmcfmcfmcfmcelctxcfmbWVbWVceobQgbOwbNscrOaaacjmcwAcjmahtxNxrnErnEuknmIaboqfmhnYbnYbnYbbDibDiydfbvaaaaaaaaaabXkcbXcbXcbXbXkcfreVycfsymbbXkaahnAsaaiulYbXkaaccfuaacbXkeyjeyjeyjbXkaaccfuaacbXqfrjaajaajhUwuaOpBJuaOpBJahtahtfonshHfonaaafonfonfonfonmauaaaaaagYofonmaufonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYdpbcdocdocdoctJbZYbZYbZYcfNcfNcfNcfNcfmctKctLceJcfFcfGctMceMceNctNcfGctOcePceMctPcfmctQbWVbOwbQgbUCbNscrOaaacjmcwAcjmahtctSaaaaaabIZqdjboqrSHgVcdSrohRycxqBvihjbIZaaaaaaaaabXkceqcbVccQbXkcfObXkdWpbXksvAcfScfTcfUaaksWWtwvtlNvlCtlNeAHkTRqkMtlNloLjBncfXcfYaalupceiVnquwIowIowIoswgaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYctXkfMlzJbZYbZYcfNcfNcfNcfNcfNcfNcfmciDcggcfncfncfncfncfocfncfncfncfncfncfpcdxcfHcfIcfJbQgcfLbQgbNscrOaaacjmcwAxghkSbcFBaaaaaabvasXicgpbSouiPfmhreHlBPbDissxbvaaaaaaaaaabXkmhlcbVccQbXkcgrbXkcgsoremjKfFvwcstIScgucgvhoSncmiejncmlnrmEumiwncmcgxoxwvVOxNyeyjwIoupcnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcrOaaacjmcwAxghkSbaaaaaaaaabvabvadNrgHZxCVdJmxCVfvbpBDbvabvaeNFeNFeNFbXkceqceqccQbXkcgPbXkcgQqWGmjKfmLgggiCscgUlXbsWjcCIqeYlUOqeYwMXqeYpuwqeYmeFiopsmvuIBhyhdszgBbgBbgBbgBbpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcukcgbculcumcfCbWVcdrcdCcdCbXJcfmchfcfEcgGchicidcuncgkcuocupciVcgmcgGcfEcgncfmcgLcgMcgNcfmcgOcfmcrOaaacjmvcocjmahtaaaaaangeahtbBXbBXbBXehMbDixaObBXbBXbBXahtaaaaaaaaabXkceqceqccQbXkcgPbXkchvbXkmjKgXZqbprPgaamcgvdnSaanfyOmpdfBZdFJprQfyFfyOaaokWQxNyeyjupceiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcuscutchBcgdcuucgfcuvcuwcuxcuychFcuzcfpcgGcidcuAcuBcuAciVcuEcgHcuEcgGchnchochpchqchrchschtchucfmcfNaaacjmcwAcjmahtaaaaaaadRahtbBXbDiwfObDiwfOswwbDibDibBXahtaaaaaaaaabXkbXkbXkbXkbXkcgPtuemKkpaUaapkmdqbprPgaaquaPhSCaarfyOhKpfBZwYKprQcZtfyOaaooXqhGBeyjvoheiVnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVcuGcuHcuIcuJchUbWVbXJcbKcbKcuKcfmciDcfEbWVcuMcibcicciScgIcgKcgHcuObWVcfEcuPcuQchKchLchMcfmchNcfmcfNcfNcjmcwAcjmmauaaaaaaadRahtbBXbDibDidWkweLbDiwfOfLGbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmdSpaaclXJgEocBRaaccgvjTUaaofyOhKpfBZdFJprQcZtfyOaasqpdhStuIBpBJuaOgBbgBbgBbgBbhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVbWVchbchcchdcuRcuScePctgcePcePcuUcuVcuWcuXchjcgHcgHchkchlcgJcgHcgHcuYcdwcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcjmcwAxghfonaaaaaaadRahtbBXbBXbBXbBXbBXbBXbBXbBXbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmcdmaaclXJdMGiCsjzEukpfZKmeFqeYcitcgYuzhdgjfjDqeYcCItkLciveyjwIovohnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchCchDcuZchEciybWVcrjciAcdCbXJcfmciDcfEbWVcvbcgHchGcgHcibcgHcicciEbWVcfEcvccfmciocgMcipcfmciqcfmcfNcfNcjmcwAxghfonaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaahtcigpjHaaaaaabXkbXkbXkbXkbXkcgVpgHoKvoKvqeYciInUQpsdqeYcBScBStODciveyjvoheiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIabIabIabIabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchVchWchXchYchZbWVciNcvdciOcvecfmcfDcfEcgGciTciSciTcgHcvgabZciVciWcgGchnchociFchqchrchschtchucfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaadRngengeadRadReNFeNFngeeNFaaaaaaaaaaaaaaaaaaaaaaaaabIcgProcahtahtshHaaaaaaaaabXkcgvpgHwbBwbBpuwtdLfymfxCiTFcjtiLhtODvswbXkcdmcdmdszhyhdszhyhcdmaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIahiahiahiahiahiabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmchfcfEcgGcvhcidcjocvicidcvjcjqcjrcgGcfEcvkcuQciXchLciYcfmciZcfmcfNcfNcfNbNEcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkcgvuRkxzRwfPvBEdHrhondZjslJkaRliRikOqRlbXkaaaaaaahtaaaahtaaaahtaaaaaafonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjvcjvcjwcjxcjxcjxcjwcjvcjvcjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVciJciKbWVbWVcizcizcizcizcizcizbWVbXJcjHcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaabXkgQfciGhQChQChQChQChQChQChQChQChQChQCoKJbXkaaaaaaahtaaaahtaaaahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjvcjVcjxcjxcjxcjxcjvcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjfcjgcvqcgfcvrcvsckbckbckccvtcgfckdchFcvucfocfncfncfncvwcfncfncfncfncvwcfncvykXxcfmcfNcfNcfNcfNcfNcfNcfNcfNcfNqWocjmcjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkahtfonfonfonfonfonfonfonahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjxcktcjxcjxcjxcjxcjxcjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacjBcfHcfIcjCcfJbXJcjkcePcvAcePcvBckuckucvCcePcjlcePcuQcvEcvFciRcvFcvHcvIciRciRcvJckEcvKcePcfGcsSjSacwAxSdcwAcwAcwAcwAiXxxYVqWolxIeNccjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaaaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtahtahtfonshHshHshHshHshHfonaaaahtshHshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjucjucjxcjxcjxckLcjxcktcjxcjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjZckabWVbWVcvRcvScvTcvTcvVcrkbWVbWVcvXcvYcvZcwacwacwcckQcwacwecweckTcwgcwecwecfmcfmcfNcfNcfNcfNcfNcjmcjmcjmcjmxVtpiacjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonahtahtfonfonfonfonfonfonfonaaaahtshHfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjxcjxcjxcjxcjxcjxcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVcwjbXJcdwbZocwkceQbXJcwlbWVckeckfcwmcwncwocwpclfcjOcwecjPxhjcjRcwrcwecwecwecwecfNcfNcfNcfNcfNcfNahtcjmcjmcjmcjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaafonshHshHshHshHshHshHshHshHshHshHshHshHfonahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKcjucjucjuckKcjucjxcjxcljcjxcjxcjucjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbWVcwwbXJcjjcwxcwyciAbXJcwzbWVckyckfckjckgckhckicwAckkcwecklxhjjFOclmfWvfWvckpcwecfNcfNcfNcfNcfNcfNaaaahtahtahtahtnKoaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKcjucjucjucjucjucjucjucjxcjxcjxcjuckKcjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNcfNcfNbWVbWVcrjbXJcwEcwFbXJcwGbWVbWVcldclecwHckzckAckBcwAckCcweckDcwKckFckGqOEqOEckIcwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaafonaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKckKckKcjucjucjuckKcjuckKckKcjucjuckKckKcjuckKckKcjuckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwMfITcwObXJckvckwbXJcwOfITcwRcCRcjmckOckPckPckPcwSckRcweckSodMjFOcwUckVmKcckXcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKckKcjucjuckKckKckKckKckKcjucjuckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabITfITfITfITckMckNfITfITfITcwRaaacjmcjmcjmcjmcjmcjmcjmcweclgxhjcxejXhqOEqOEckIcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKcjuckKckKcjucjucjuckKckKckKckKcjuckKckKcjucjuckKckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgcxhfITclbclbfITcxkcxgaaaaaaaaacfNcfNcfNcaScfNcfNcweclkcxnjFOckUclnclnclncwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKckKckKcjuckKckKcjucjuckKckKckKckKckKcjuckKckKcjucjucjuckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgaaaaaacxgaaaaaaaaaaaaaaaaaacfNcfNcaScaScaScwecwexhjjFOcwecwecwecwecwecfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKcjuckKcjuckKckKckKckKcjucjuckKckKckKcjuckKckKcjuclsckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcaScfNcaScfNcwelqycxzcwecfNcaScfNcaScfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaaahtaaaaaaaaaaaaabNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKcjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKckKckKcjucjuckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcaSaaaahtaaacxBcxCcxDcxEaaaahtcfNcaScfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKcjuckKcjuckKckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxKcxLcxMaaaahtaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKckKckKckKcjuckKckKckKckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxXcxYcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPtfwaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKcjucjucjuckKckKckKckKckKckKcjucjuckKckKckKcjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacxJcylcymcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKcjuckKckKckKckKckKcjuclvckKckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacyycyzcyAcyBaaaahtaaaahtaaaaaaaaaaaaaaaaaacfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKckKckKcjuckKcjucjucjuckKckKckKckKcjucjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNaaaaaacjpcjpcjpcjpcjpjgrvOwcjpcjpcjpcjpcjpahtahtahtahtahtcyLcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPuHGclziBJouvrnrabIabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjucjucjuckKckKckKcjucjuckKcjucjucjucjucjucjuckKckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcyMahtahtcjpcjpcCWckWcyPcyQcjQijFcyRcySckocyTcjpcjpaaaahtaaaaaacfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclAclBclwclEclwclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKcjucjuckKckKckKckKckKcjuckKckKckKcjucjuckKckKckKcjucjucjuckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNaaaaaacyUckHckHckHckHckHcjQpXcickickickickxjccyUaaaahtaaacfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclDhQzclwxnmclNclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKckKclFcjucjucjuckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcyMahtahtcjpcyYcyZckHcyZckHcjQckmckHcyZckHcyZxjacjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclCclwclJclBclwclMqxqclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKcjucjucjuckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNaaaaaaaaacyUckHckHckHckHckHcjQckmckHckHckHckHckHcyUaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGclHclQclRclSclTclUclVclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKcjucjucjuckKckKckKcjucjuclvcjuckKckKcjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcyMahtahtahtahtcjpckHczlczlczlckHcjQckmckHczoclpczpczqcjpaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIclGclPclXclYclZcmacmbcmcclwabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjuckKckKcjuckKckKckKckKclvcjuckKckKcjucjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpckHczrczrcztckHcjQckmckHczuczvckHczwcjpahtahtcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGkFmrsZcmdtlwclLmxymDWclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKclvckKckKckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacyUckHczrczBczCckHcjQckmckHczDczvckHckHcyUaaaahtcfNcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclwclwcmhcmeclwclwclwclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpczHczIczIczIckHczLczMckHczNczOczPczQcjpahtahtahtcyMcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmfcmguznnMGcmjcmkcmlclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKckKckKckKcjuckKckKckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaahtaaacyUckHckHczVczWczWczYczZcAacAaclickHckHcyUaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmmcmncmocmpcmqcmrcmsclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcyMahtahtahtcjpcyRckHckHcAgcAgcAicAjcAgcAgckHckHcyRcjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRcmtclwcmucmvclGcmwclGcmxcmyclwcmzadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaaaaaaacyUcyUcjpcArcAscAtcAucAvcAtcAscAycjpcyUcyUaaaaaacfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclGclGclGcmFclGclGclGclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKcjuckKcjuckKcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacjpcABckHckHcACcADckHckHcABcjpaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmGclGopzclGcmHcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKcjucjucjuckKcjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacyUcyUcAHczWcAJcAKcAacAMcyUcyUaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBxFlgpIgpIqYScmKcmKcmKcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKckKckKcjuckKcjucjuckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcyMahtahtahtahtcjpcjpcAScATcAUcAVcjpcjpahtahtahtaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmLcmMcmNcmKcmOcmPcmQcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuclvckKckKcjuckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNcfNaaaaaaaaaaaacyUcyUcyUcyUcyUcyUahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmRcmKcmKcmKcmKcmKcmUcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKclvcjucjucjuckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaacyMcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmVcmWcmKcmXcmKcmYcmZcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnacnbcmKcnccmKcndcnecmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjxcjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaaacfNcfNcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmRcmKcmKcmKcmKcmKcmUcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjxcnpcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyMcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnjcnkcnlcmKcnmcnncnocmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjucjucnqcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmKcmKcmKcmKcmKcmKcmKcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnrcnscntcnucnvcnwcnxcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmBcmBcmBcmBcmBcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacnyaaaaaaaaaabIaaaaaaaaacnzaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(2,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(3,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(4,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(5,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(6,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(7,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(8,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(9,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(10,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(11,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(12,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(13,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(14,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(15,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(16,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(17,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(18,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(19,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(20,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(21,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(22,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(23,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(24,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(25,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aoH +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(26,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aoI +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(27,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aoI +azG +aoI +aoI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(28,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aaa +azH +aaa +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(29,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(30,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azI +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(31,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azJ +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(32,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(33,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(34,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(35,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(36,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(37,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(38,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(39,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(40,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(41,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoJ +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(42,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(43,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +cBM +bZY +bZY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +fIT +cfH +fIT +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(44,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +csn +ceF +csY +bZY +bZY +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +fIT +cfI +fIT +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(45,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBM +csd +csd +csB +csd +csd +cBM +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +fIT +cjC +fIT +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(46,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +aaa +azL +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aoI +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +bZY +bZY +cse +cso +csC +cdp +kDf +bZY +bZY +cfN +cfN +cfN +cfN +cfN +cfN +cfN +bWV +bWV +fIT +cfJ +fIT +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(47,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +bZY +bZY +bZY +bZY +jsD +csd +csp +csp +csp +csd +dpb +bZY +bZY +cfN +cfN +cfN +cfN +cfN +cfN +bWV +ciJ +cjf +bXJ +cjZ +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(48,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +crt +crD +bZY +xSX +csi +owS +csE +rrU +ctr +cdo +ctX +bWV +bWV +bWV +bWV +bWV +bWV +bWV +bWV +ciK +cjg +cjk +cka +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(49,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crb +crg +cru +crE +ceh +crT +csf +pFe +hYe +kwm +ctr +cdo +kfM +bWV +cuk +cus +cuG +bWV +chC +chV +bWV +bWV +cvq +ceP +bWV +bWV +bWV +bWV +cwM +bIT +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(50,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +bZY +ceC +crv +crF +nku +ceE +csg +csq +csE +cta +ctr +cdo +lzJ +bWV +cgb +cut +cuH +chb +chD +chW +bWV +bWV +cgf +cvA +bWV +cwj +cww +bWV +fIT +fIT +cxg +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(51,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +bZY +crh +crv +crG +bZY +crU +csh +csr +csF +ctb +ctt +ctJ +bZY +bWV +cul +chB +cuI +chc +cuZ +chX +bWV +ciz +cvr +ceP +cvR +bXJ +bXJ +crj +cwO +fIT +cxh +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(52,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVp +cfN +cfN +bZY +bZY +bZY +bZY +bZY +bZY +lAf +css +csG +cta +ctu +bZY +bZY +bWV +cum +cgd +cuJ +chd +chE +chY +bWV +ciz +cvs +cvB +cvS +cdw +cjj +bXJ +bXJ +fIT +fIT +cxg +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(53,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +cfN +cfN +cfN +cfN +bZY +giI +pkM +crv +css +csG +cta +gKz +bZY +cfN +bWV +cfC +cuu +chU +cuR +ciy +chZ +bWV +ciz +ckb +cku +cvT +bZo +cwx +cwE +ckv +ckM +clb +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(54,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +cfN +cfN +cfN +bOw +bZY +pkM +bZY +bZY +cfk +tan +cte +bZY +bZY +cfN +bWV +bWV +cgf +bWV +cuS +bWV +bWV +bWV +ciz +ckb +cku +cvT +cwk +cwy +cwF +ckw +ckN +clb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(55,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aed +aby +aht +aby +aby +aby +aht +aby +aby +aby +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +bOw +cfN +bOw +bOw +bOw +bQg +bOw +ccu +cbG +cef +ceB +cfN +cfN +cfN +bWV +cdr +cuv +bXJ +ceP +crj +ciN +bWV +ciz +ckc +cvC +cvV +ceQ +ciA +bXJ +bXJ +fIT +fIT +cxg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(56,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +cqU +bNs +bUC +bOw +bOw +bOw +bOw +bOw +bQg +bUC +bOw +cbG +csM +ceB +cfN +cfN +cfN +bWV +cdC +cuw +cbK +ctg +ciA +cvd +bWV +ciz +cvt +ceP +crk +bXJ +bXJ +cwG +cwO +fIT +cxk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(57,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +ait +ait +ait +aiu +aiu +ait +ait +ait +aiu +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +bOv +bNs +bNs +bWh +bQg +bQg +bQg +bQg +bQg +bQg +bOw +bOw +cbG +cee +ceB +cfN +cfN +cfN +bWV +cdC +cux +cbK +ceP +cdC +ciO +bWV +bWV +cgf +cjl +bWV +cwl +cwz +bWV +fIT +fIT +cxg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(58,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +fIN +wwG +gGy +wYu +uQR +uaE +pdq +ajD +dci +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +bGD +bQQ +bNs +bNs +bQe +bQg +bOw +bOw +bOw +bOw +bOw +bSm +bOw +bUC +cbG +cef +ceB +cfN +cfN +cfN +bWV +bXJ +cuy +cuK +ceP +bXJ +cve +bWV +bXJ +ckd +ceP +bWV +bWV +bWV +bWV +cwR +cwR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cyM +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(59,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +oFf +ycr +wDm +wYu +ajD +ajD +ajD +ajD +mwg +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aby +aby +aby +aby +aaa +bNr +bNs +bNs +bNs +bOw +bOw +bQg +bOw +bOw +bOw +bOw +bQe +bWV +bWV +bWV +cdq +ceg +chJ +cfm +cfm +cfm +cfm +cfm +chF +cfm +cuU +cfm +cfm +cfm +cjH +chF +cuQ +cvX +cke +cky +cld +cCR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aht +aaa +aaa +aaa +cfN +cyM +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(60,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +lcU +sGr +hiw +wYu +ajD +jsf +ajD +rLi +tlc +aiu +aht +axB +rKr +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +bOv +bGD +bOv +bQQ +bNs +bNs +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bWV +bWV +bWV +bXJ +bYz +cdr +csN +ctg +ctx +ctK +ciD +cfD +chf +cuz +ciD +cuV +ciD +cfD +chf +cfD +cvu +cvE +cvY +ckf +ckf +cle +cjm +cjm +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cyM +cfN +cyM +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(61,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiu +kJw +aiu +aiu +aiu +aiu +cHS +aiu +aiu +aiu +axC +axB +azN +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +abI +bNr +bNs +bNs +bNs +bNs +bNs +bSm +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bUC +bWV +cdC +caT +cbK +bWV +cds +csO +ceH +cfl +ctL +cgg +cfE +cfE +cfp +cfE +cuW +cfE +cfE +cfE +cfE +cfo +cvF +cvZ +cwm +ckj +cwH +ckO +cjm +cfN +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aht +aaa +aht +aaa +aht +aht +aht +aht +aht +aht +aaa +cfN +cfN +cyM +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(62,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aiu +gwn +aiu +apz +aqe +aoK +dcL +apB +aiu +tpb +axC +ayz +azN +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHI +aby +aby +aby +bGH +bNs +bNs +bOw +bQc +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bQg +bOw +bWV +bWV +bWV +bYz +bWV +bWV +bWV +bWV +cei +bWV +cfm +ceJ +cfn +bWV +cgG +cgG +bWV +cuX +bWV +cgG +cgG +bWV +cfn +ciR +cwa +cwn +ckg +ckz +ckP +cjm +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aht +cfN +cfN +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(63,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +ait +ait +aiu +aiu +aht +aht +aiu +wRI +ajD +ajD +ajD +aoK +aBa +xyB +aiu +aAa +axC +axB +hzd +axB +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGD +bGD +bIT +bJZ +bIT +bMr +bNs +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bWV +crj +bXJ +bXJ +crK +cdr +cdw +csv +csN +bWV +cfm +cfF +cfn +cgG +chi +cid +cuM +chj +cvb +ciT +cvh +cgG +cfn +cvF +cwa +cwo +ckh +ckA +ckP +cjm +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyU +cjp +cyU +cjp +cjp +cyU +cjp +cyU +cjp +cyU +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(64,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +aiV +ajB +akr +aiu +ait +ait +aiu +lMU +apB +woq +lXc +nPA +egK +aBa +aiu +azZ +axC +ayA +azP +aAW +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGE +bGE +bIU +bHM +bHM +bHM +bHM +bNw +bOw +bQd +bOw +bQd +bOw +bQd +bOw +bQd +bQg +bQd +bWV +bWV +bXJ +bZl +bYA +bZl +bYA +cbP +cdu +csQ +ceK +cfm +cfG +cfn +cgG +cid +cuA +cib +cgH +cgH +ciS +cid +cgG +cfn +cvH +cwc +cwp +cki +ckB +ckP +cjm +caS +caS +caS +caS +aht +aht +aht +aht +cjp +cjp +ckH +cyY +ckH +ckH +ckH +ckH +czH +ckH +cyR +cyU +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(65,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +aiW +ajC +ajD +ali +ajD +ajD +anq +aoe +aiu +apB +aiu +aiu +aiu +aoK +aiu +azY +axC +ayB +azQ +aAX +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bFE +bGF +bHJ +pbm +bKa +cqH +bLn +bNt +bNw +bNw +bQe +bOw +bOw +bOw +bQe +bOw +bOw +bQg +bQe +bWV +bXJ +bXJ +bZm +bYB +crL +caV +cbM +ccH +csQ +ceL +cfm +ctM +cfn +bWV +cun +cuB +cic +cgH +chG +ciT +cjo +bWV +cvw +cvI +ckQ +clf +cwA +cwA +cwS +cjm +cfN +caS +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cCW +ckH +cyZ +ckH +czl +czr +czr +czI +ckH +ckH +cjp +cjp +cyU +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(66,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiX +ajD +aks +aiu +ait +ait +aiu +hOx +aDm +aDm +aDm +aoL +aso +aso +rrb +oPx +axC +ayC +azR +aAY +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aTH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGE +bHK +bIV +bKb +bLo +bMs +bNu +bOx +bPn +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bWW +bXI +bZn +bZn +bZn +bZn +bZn +bZn +cbN +ccE +cdw +cej +ceM +cfo +cgG +cgk +cuA +ciS +chk +cgH +cgH +cvi +cgG +cfn +ciR +cwa +cjO +ckk +ckC +ckR +cjm +cfN +caS +caS +aht +aht +aht +aht +aht +cjp +ckW +ckH +ckH +ckH +czl +czr +czB +czI +czV +ckH +cAr +cAB +cyU +cjp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(67,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +aht +ait +aiY +ajE +akt +aiu +aaa +aaa +aiu +aCg +aiu +aiu +aiu +wRz +aiu +aiu +aiu +syn +axC +axC +azS +axC +axC +aiu +aiu +aiu +ait +ait +aiu +aaa +aaa +aaa +aHA +aKy +xee +aKy +aHA +aaa +aaa +aaa +aHA +aKy +xee +qIC +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGG +bHL +bIW +bKc +bOy +bMt +bLs +bMy +bPo +bWX +bWX +bWX +bWX +bWX +bWX +bWX +bWX +bWX +cek +cdx +dpc +dpc +dpc +dpc +dpc +dpc +cbO +ccF +cdx +cek +ceN +cfn +cgG +cuo +ciV +cgI +chl +cib +cvg +cid +cgG +cfn +ciR +cwe +cwe +cwe +cwe +cwe +cwe +cwe +cwe +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyP +ckH +cyZ +ckH +czl +czt +czC +czI +czW +cAg +cAs +ckH +cAH +cjp +cyU +aaa +aaa +aaa +aaa +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(68,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +aht +aht +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aCg +aiu +aqg +gjN +arc +atp +aus +aiu +wxb +axC +xuv +azN +vtT +vtT +aiu +apB +aiu +aBa +oTC +ait +aaa +abN +aaa +aHA +aKz +aHA +aKz +aHA +abI +aht +abI +aHA +aKz +aHA +aKz +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGH +bGE +bIX +bKd +bLp +bMu +bNv +bNw +bNw +bQe +bOw +bOw +bOw +bQe +bOw +bOw +bQg +bQe +bWV +bXJ +bXJ +bZl +bYA +crM +caW +cbP +cdu +ceP +cth +cfm +ctN +cfn +bWV +cup +cuE +cgK +cgJ +cgH +abZ +cvj +bWV +cfn +cvJ +cwe +cjP +ckl +ckD +ckS +clg +clk +cwe +cwe +cxB +cxJ +cxJ +cxJ +cyy +cjp +cyQ +ckH +ckH +ckH +ckH +ckH +ckH +ckH +czW +cAg +cAt +ckH +czW +cAS +cyU +aht +aht +aht +cyM +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(69,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afU +afU +pfz +uqJ +afU +afU +ajF +aku +alj +alT +skw +anr +aof +aiu +aqh +lqc +aoe +atq +aut +aiu +giO +aDm +kJo +fAx +aDm +aDm +aDm +aDm +aDm +mLB +wUz +ait +aht +aht +aht +aHA +dqG +aHA +aKz +aHA +abI +aaa +abI +aHA +aKz +aHA +wKa +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bHM +bHM +bNw +bLq +bMv +bNw +bNw +bOw +bQd +bOw +bQd +bOw +bQd +bOw +bQd +bQg +bWi +bWV +bWV +bXJ +bZm +bYB +bZm +bYB +cbM +ccH +ceP +ceK +cfm +cfG +cfn +cgG +ciV +cgH +cgH +cgH +cic +ciV +cjq +cgG +cfn +ckE +ckT +xhj +xhj +cwK +odM +xhj +cxn +xhj +lqy +cxC +cxK +cxX +cyl +cyz +jgr +cjQ +cjQ +cjQ +cjQ +cjQ +cjQ +cjQ +czL +czY +cAi +cAu +cAC +cAJ +cAT +cyU +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(70,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +agi +agi +agi +afU +hwj +ahu +ahS +oXe +afU +ajG +akv +alk +alU +amH +ans +ePU +aiu +aqi +ard +asr +atp +auu +aiu +ekU +aiu +asr +tyL +ajD +nPA +mtu +aCc +aiu +wxb +wig +ait +aaa +aaa +aaa +aHA +wqu +aHA +wqu +aHA +abI +aht +abI +aHA +wqu +aHA +wqu +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +btK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHN +bGE +bKe +bLr +bMw +bNx +bNw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bWV +crk +bXJ +bXJ +crN +crX +cdx +cgn +csS +bWV +cfm +ctO +cfn +cgG +cgm +cuE +cuO +cgH +ciE +ciW +cjr +cgG +cvw +cvK +cwg +cjR +jFO +ckF +jFO +cxe +jFO +jFO +cxz +cxD +cxL +cxY +cym +cyA +vOw +ijF +pXc +ckm +ckm +ckm +ckm +ckm +czM +czZ +cAj +cAv +cAD +cAK +cAU +cyU +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(71,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +szG +sOC +iCV +msX +dVI +ahv +ahT +aiv +afU +ajG +akw +all +alV +tfZ +vCC +lHc +aiu +aiu +aiu +ait +ait +aiu +aiu +aiu +aiu +ait +ait +aiu +aiu +aiu +aiu +aiu +aCg +aiu +aiu +aiu +aiu +aHz +xee +aKB +nYn +aKB +xee +aHA +aHA +aHA +xee +aKB +nYn +fTY +xee +aYG +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bsl +btL +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aqG +bGE +cqW +bKf +bMw +bNy +bNw +bOw +bQh +bOw +bOw +bOw +bSm +bOw +bOw +bQg +bOw +bOw +bWV +bWV +crx +crH +bWV +crY +csk +bWV +cbR +bWV +cfm +ceP +cfn +bWV +cgG +cgG +bWV +cuY +bWV +cgG +cgG +bWV +cfn +ceP +cwe +cwr +clm +ckG +cwU +jXh +ckU +cwe +cwe +cxE +cxM +cxM +cxM +cyB +cjp +cyR +ick +ckH +ckH +ckH +ckH +ckH +ckH +cAa +cAg +cAt +ckH +cAa +cAV +cyU +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(72,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +lem +mzl +sJp +qMi +iPU +ahw +ahU +aiw +afU +ajH +ajH +ajH +ajH +ajH +ant +aiu +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aCd +hHr +hHr +aCg +ezF +aod +aqg +aiu +iab +aKA +aOk +aJE +aWE +aWE +wwr +hwd +wwr +aOk +aOk +aJE +aWE +aWK +aYG +aZy +baJ +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bcX +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +aqG +bGE +izF +ros +bMx +bNz +bHM +bNs +bNs +bNs +bNs +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bWV +bWV +bWV +bWV +bWV +bWV +bWV +ccJ +cdw +cel +ceM +cfp +cfE +cfE +chn +cfE +cdw +cfE +chn +cfE +cfE +cvy +cfG +cwe +cwe +fWv +qOE +ckV +qOE +cln +cwe +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyS +ick +cyZ +ckH +czo +czu +czD +czN +cAa +cAg +cAs +ckH +cAM +cjp +cyU +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(73,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +agj +agv +agF +agT +ahj +ahx +ahV +aix +aiZ +ajH +akx +alm +alW +amI +anu +aog +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +nyO +ezJ +ujI +dgI +ujI +ujI +iJi +aiu +xaQ +fmU +wOa +qUw +xSZ +wOa +aQv +eAp +aJE +ftW +coN +kvj +ftW +ppQ +aYG +aZy +baK +jzz +aZx +jzz +aaa +aaa +aaa +aaa +aaa +aaa +jzz +aZx +jzz +bsl +btM +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqG +bGE +bGE +bHM +bHM +bNA +bHM +bSZ +bQi +bQR +bNs +bNs +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bOw +bOw +bOw +bUC +bOw +bQg +cbR +bXJ +cdA +ctx +ctP +cdx +cdx +cgn +cho +cuP +cdx +cvc +cho +cvk +cdx +kXx +csS +cfm +cwe +fWv +qOE +mKc +qOE +cln +cwe +caS +aht +aht +aht +aht +aht +cjp +cko +ick +ckH +ckH +clp +czv +czv +czO +cli +ckH +cAy +cAB +cyU +cjp +aht +aht +aht +cyM +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(74,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +afU +agw +afU +afU +ahk +ahy +ahW +aiy +aja +ajI +aky +aln +alX +amJ +anv +aoh +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +awE +qGu +eOZ +kQZ +nih +kxs +qGu +aiu +rgs +jeq +pGe +aQt +aOf +xLi +aQr +aQr +aQr +oLR +pGe +aQt +aOf +aWK +aYG +aZy +baK +bbQ +bcX +bdV +aaa +aaa +aaa +aaa +aaa +aaa +bbQ +bcX +bdV +baK +bon +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIY +bIY +aht +aht +bNB +abI +abI +aby +abI +bRC +bNs +bNs +bNs +bOw +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +cbR +bXJ +cdB +cfm +cfm +cfH +cfm +cfm +chp +cuQ +cfm +cfm +ciF +cuQ +cfm +cfm +jSa +cfm +cwe +ckp +ckI +ckX +ckI +cln +cwe +cfN +cfN +aaa +aaa +aaa +aaa +cjp +cyT +ick +cyZ +ckH +czp +ckH +ckH +czP +ckH +ckH +cjp +cjp +cyU +aht +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(75,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aed +adR +abI +abI +abI +abI +abI +afX +agl +agx +agH +agV +ahl +ahz +ahX +aiz +ajb +ajH +akz +alo +alY +amK +anw +aoh +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiu +kFx +aiu +aiu +aiu +aiu +gKG +aiu +aJD +jeq +pGe +aQu +aOg +aWK +aRD +aSv +aTK +aML +pGe +aQu +aOf +duQ +aYG +aZz +baK +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +aZx +aZx +baK +bon +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aaa +aht +aby +aby +abI +bSn +uZb +cqS +bNs +bQe +bOw +bOw +bOw +bQg +bQg +bQg +bOw +bQe +bQg +bWV +csT +cen +bWV +ctQ +cfI +cfm +cgL +chq +chK +cfm +cio +chq +ciX +cfm +cfN +cwA +cfN +cwe +cwe +cwe +cwe +cwe +cwe +cwe +caS +caS +aht +aht +aht +aht +cjp +cjp +xjc +xja +ckH +czq +czw +ckH +czQ +ckH +cyR +cyU +aaa +aaa +aht +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(76,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aem +aem +aem +aem +aem +aiA +aiA +aiA +aiA +aiA +aiA +ahA +ahY +aiA +aiA +aiA +akA +alp +akA +akA +akA +aoi +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ebD +sbY +fuP +pXT +wrU +mpy +aiu +gue +aIC +pvK +aKD +gmO +aQt +aOh +aWK +aRE +aSw +aTL +aML +gmO +aQt +gpC +ppQ +aYG +aZA +baK +bbR +bcY +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkQ +bbR +baK +bon +aZx +aaa +aaa +aaa +aaa +oQm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amB +aht +aht +aaa +aaa +abI +abI +abI +uZb +bNs +bNs +bNs +bUC +bOw +crl +bXL +bNs +bOw +bOw +bQg +bWV +csU +bWV +bWV +bWV +cfJ +cfm +cgM +chr +chL +cfm +cgM +chr +chL +cfm +cfN +xSd +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aht +cjp +cyU +cjp +cyU +cjp +cjp +cyU +cjp +cyU +cjp +cyU +aht +aht +aht +aht +cyM +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(77,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeo +aeC +aeT +afn +agy +afZ +agn +agy +agy +agy +agy +ahB +ahZ +aiB +ajc +ajM +akB +alq +alZ +amL +anx +aoj +aiu +aaa +aaa +aaa +aaa +aaa +aaa +avp +aaa +aaa +aaa +aaa +ebD +aCe +gPV +pEL +elk +mXq +aiu +jhk +aiu +gxq +aKE +pGe +aQu +aOg +aWK +aRF +aSx +aTM +aML +pGe +aQu +aOf +aWK +aYG +ovM +baL +baK +bcZ +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkR +baK +baL +bon +aZx +aaa +aaa +aaa +aZx +pqP +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aaa +aht +aaa +aaa +aaa +aaa +abI +aaa +veF +bQR +bNs +bNs +bNs +bNs +bXM +bNs +bOw +bOw +bQg +bOw +ccM +cdD +ceo +bOw +bQg +cfm +cgN +chs +chM +cfm +cip +chs +ciY +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +cfN +cfN +aaa +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(78,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aep +aeD +aeU +aeU +afC +aeU +aeU +agy +agI +agW +agA +ahC +aia +aiC +ajc +ajM +akC +alr +ama +amM +akA +akA +akA +apE +apE +ari +apE +bBW +apE +avq +apE +ajM +aiu +aiu +gSH +xJy +sJr +sJr +sJr +sJr +aiu +jhk +aiu +niy +aKE +pGe +aQt +aOf +aPo +nGi +nGi +nGi +aPn +pGe +aQt +aOf +aWK +aYG +aZA +baK +bbS +bda +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkS +bbS +baK +boo +aZx +aaa +aaa +aaa +aZx +bcX +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +amB +aht +aht +aht +aht +aht +aht +abI +abI +aht +abI +bSZ +bSZ +cre +bNs +bXN +bNs +bOw +bOw +bQg +bQg +bQg +bQg +bQg +bQg +cfL +cfm +cfm +cht +cfm +cfm +cfm +cht +cfm +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aht +aht +aht +aaa +aaa +aht +aht +aht +aaa +aht +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(79,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeq +aeE +aeU +afo +afD +aga +aga +agz +aie +aiH +ahm +ahD +aib +aiD +ajc +ajM +akD +als +amb +amN +ajM +aok +aoO +apF +apE +wxJ +apE +bBW +ajM +avr +awH +axE +ayE +aAb +ebD +jjC +eEp +vhk +gAG +kxj +aiu +oTp +aiu +aJF +aKG +gvf +kvj +aOk +aWE +aJE +aRC +aQs +aTJ +vsJ +aVN +cJo +ppQ +aYG +aZA +baM +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +aZx +aZx +bno +bon +aZx +aZx +aZx +aZx +aZx +qRm +aZx +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aht +aht +aht +aht +amD +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aht +aaa +aaa +abI +bGI +bNs +rzF +bNs +bOw +bOw +bUC +bOw +bOw +bQe +bOw +bUC +bQg +cfm +cgO +chu +chN +cfm +ciq +chu +ciZ +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aaa +aaa +aht +cfN +cfN +cyM +cfN +aht +aaa +aht +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(80,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aer +aeF +aeU +afp +afE +aeU +aeU +agy +agK +agY +agy +ahB +aic +aiE +agy +ajM +akE +alt +amc +amO +ajM +aol +aoP +apG +ajM +arj +ajM +ajM +akA +akA +akA +ajM +ayF +aAc +xLC +xeB +nSo +uuS +uAU +oCn +aiu +jhk +aiu +riF +xhE +ftW +aJE +coN +aPq +klB +klB +klB +hkQ +ftW +aJE +fwe +aWK +aYG +aZA +baN +bbQ +bcX +bdV +aaa +aaa +aaa +aaa +aaa +aaa +bbQ +bcX +bdV +bnp +baK +pEH +deJ +sIK +wjQ +pEH +bbR +aZx +aaa +aht +bBV +bDf +bDf +bDf +agS +agS +agS +agS +agS +ala +aht +aaa +aht +aht +aht +aht +aht +aht +aht +aht +abI +abI +abI +aaa +bSZ +ahi +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfN +cwA +cjm +cfN +cfN +cfN +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aht +aaa +cfN +cyM +cfN +cfN +cfN +cfN +cyM +cfN +cyM +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(81,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aes +aeG +aeV +afq +afF +agb +agb +agA +agA +agA +ahn +ahF +aic +aiF +ajd +ajJ +akF +alu +amd +amP +any +aom +aom +akF +aom +ark +asu +atv +aux +avs +awI +axF +ayL +aAd +ebD +aCf +hnu +jTu +wTD +uVf +aiu +jhk +aiu +aiu +aiu +sgc +nDx +gLF +aHz +eLt +aRB +aRB +aOs +fUA +aVM +xmp +aOs +aYG +aZA +baN +jzz +aZx +jzz +aaa +aaa +aaa +aaa +aaa +aaa +jzz +aZx +jzz +bnp +baK +baK +baK +baK +baK +baK +baK +aZx +aaa +bAI +abI +abI +aht +abI +aaa +bva +bIZ +bIZ +bva +bva +bIZ +bIZ +bva +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +abI +ahi +bSZ +crO +arF +arF +arF +arF +arF +crO +crO +crO +crO +crO +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +iXx +cjm +cfN +cfN +aaa +aaa +aaa +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +cyL +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(82,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aet +aeH +peE +afo +afG +aeU +eSB +agy +agL +agZ +aho +ahG +aid +aiG +aje +ajK +akG +alv +ame +amQ +anz +aon +aon +apH +aqm +aon +asv +atw +aon +avt +awJ +axG +ayG +pFy +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aHC +aIH +ofX +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +wEn +aPv +fBt +aHz +aYG +aZA +baN +bbR +bbR +aYG +aaa +aaa +bgS +aaa +aaa +aaa +aYG +bbR +bbR +bnp +baK +baK +baK +baK +baK +baK +baK +aZx +aZx +bAJ +bBX +bBX +bBX +bBX +bva +bva +bJa +bHQ +bLt +bHQ +bNF +bHQ +bva +bva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +cdm +abI +aaa +bva +bva +bIZ +bIZ +bIZ +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +xYV +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(83,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeu +tnP +dYe +aeH +afH +aeH +aeH +agB +agM +aha +ahp +ahH +aie +aiH +ajf +ajL +akH +alw +amf +amR +anA +aoo +ana +aoo +aqn +arl +asw +atx +auz +avu +rjF +axG +ayH +aAe +aBc +aCh +eQZ +eQZ +aFk +aFU +eQZ +gjq +aiu +iSz +aIH +aIH +aIH +aOm +aIH +aIH +jTh +aSu +aiu +nfi +aJE +aWF +aXF +aYG +aZC +baN +baK +baK +aYG +aYG +aZx +aZx +aZx +aZx +aYG +aYG +baK +baK +bnq +baM +baK +baK +baK +baK +baK +baK +bxY +bzz +kGe +bBX +bDg +bEj +bFF +bva +bHP +bJb +bJb +bJb +fgS +bJb +bJb +bPp +bva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +cdm +abI +aaa +bIZ +caZ +cbS +ccN +bIZ +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cfN +cfN +cfN +cfN +qWo +cjm +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(84,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aem +agy +agy +lGp +aeU +afI +aeU +jXF +agy +agN +agY +agy +ahI +aif +aiB +agy +ajM +akI +alx +amg +amg +anB +amg +aoQ +amg +aqo +alv +asx +ajM +ajM +ajM +akA +axH +ayI +aAf +aBd +aBd +aBd +aBd +aBd +aFV +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +ayD +vIc +xxS +vAq +uLF +aVO +aWF +aXG +aYG +aZD +baO +bbT +bbT +bbT +beY +bbT +bbT +bbT +bbT +bbT +bbT +bbT +bbT +bnr +bop +bbT +bbT +bbT +bbT +bbT +bbT +bxZ +bzA +bAK +bBX +bDg +bEk +bva +bva +bHQ +bJc +bKh +bLu +bLu +bNG +bOz +bHQ +bIZ +aaa +aaa +aaa +aaa +aaa +bUD +bVr +cqX +cqX +cqX +crm +cry +abI +aaa +bIZ +cba +cbT +bDi +ozO +cwA +cwA +cwA +cwA +vco +cwA +cwA +cwA +cwA +xYV +bNE +xYV +qWo +lxI +xVt +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(85,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeW +ovB +utg +afr +agy +agc +ago +agy +agy +agy +agy +ahJ +aig +aiJ +agy +ajN +akJ +aly +amg +amS +anC +aop +aoR +apJ +apN +aon +aty +atz +aux +avv +awI +axG +ayL +aAi +aBd +aCi +aDo +xjK +fhM +aFW +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +oEA +oEA +scp +oEA +oEA +dpa +dTV +aWF +kAa +aYG +aZE +baP +bbU +bdb +bdW +beZ +bfY +bfY +bhE +bfY +biI +bfY +bkT +bfY +bns +bfY +bfY +bqS +bsm +btN +bfY +bfY +bya +bzB +bAL +bBX +bDh +bEl +bva +bGK +bHQ +bJd +bKi +bLv +bMA +bNH +bOz +bHQ +bIZ +bBW +bBW +bBW +bTa +bTW +bUE +bva +abI +aaa +aaa +bva +crz +bva +aaa +bIZ +cbb +bDi +ccO +bIZ +cjm +cjm +xgh +xgh +cjm +cjm +cjm +xgh +xgh +cjm +cjm +cjm +cjm +eNc +pia +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(86,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeX +iLR +iPH +iPH +agy +agd +agp +agC +agO +ahb +agy +ahK +aih +aiK +agy +ajO +akK +alz +amg +amT +anD +amX +aoS +apJ +aqq +aon +atB +atA +auA +avw +awJ +axG +ayL +aAi +aBd +aCj +aDp +aEm +aFm +aFn +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +nsy +eDC +tnY +uCS +mal +dTV +aWI +aXK +aXH +aXH +aXH +aXH +bdc +bdX +bfa +bfZ +bga +bfZ +bfZ +biJ +bfZ +aYG +bmc +bnt +bnt +bpt +aYG +aYG +btO +aYG +aYG +aYG +aYG +aYG +bBX +bva +bEm +bva +aaB +bHQ +bJe +bKj +bLv +bMB +bNI +bOz +bHQ +bIZ +abI +ouv +bBW +bTb +abI +bva +bva +bva +bva +aht +bIZ +crA +bIZ +aaa +bva +bva +bNK +bva +bva +aht +aht +kSb +kSb +aht +aht +mau +fon +fon +aht +aht +aht +cjm +cjm +cjm +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(87,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +abI +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +ahL +ahL +ahL +ahL +ahL +ahL +ahL +amg +amU +anE +amX +aoT +apK +aqr +arl +awK +atD +auz +avx +rjF +axG +ayJ +aAg +aBe +aCk +aDq +aEn +aFm +aFX +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +uos +xnP +qjx +iPO +pOr +geU +aWJ +aXK +aYH +aZF +baQ +aXH +bdd +bdY +bfb +bfZ +bgU +bhF +bib +biK +bfZ +bfZ +aYG +aYG +aYG +aYG +aYG +bsn +btP +bva +bws +byb +bzC +bzC +bBY +bDi +bEn +bva +bGM +bHR +bJf +bKk +bLx +bLx +bNJ +bOz +bHQ +bIZ +abI +rMV +cqy +bTc +cqy +bva +bVs +bVC +cqy +aaa +bva +crB +bva +aaa +aaa +bIZ +csy +bQl +cqX +xNx +ctS +cFB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fon +fon +aht +aht +nKo +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(88,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aed +adR +abI +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aii +aiL +ajg +ajP +akL +cBi +amh +amV +anF +amW +aoU +apL +aqs +aon +asz +ajM +ajM +ajM +akA +axI +ayL +aAh +aBf +aCl +aDr +aEo +aFo +aFY +oEA +uoS +uoS +uoS +rJZ +uoS +uoS +tCP +xOC +jAy +rHA +ffJ +oEA +dpa +dTV +aWF +aXI +aYI +aZG +baR +aXI +bde +baK +baN +bga +bgV +bhG +bhG +biL +bjI +bgd +bmd +bnu +boq +bpu +boq +boq +btQ +bvb +bwt +byc +bzD +bAM +bvb +bDj +bEo +bva +bva +bHQ +bJg +bKl +bJb +bMC +bJb +bJb +bPq +bva +bva +rMV +bSo +bSq +bTX +bUF +bNK +bva +bva +bva +bva +crC +bva +bva +bva +bva +bSq +bva +bva +rnE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(89,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aij +aiM +aiM +ajQ +akM +juw +ami +amW +anG +amX +aoV +apJ +aqt +arm +rdB +atz +aux +avy +awI +axG +ayL +aAi +aBe +aCm +aCk +aEp +aFm +nBw +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +aQw +eHI +yfO +hDG +aUG +aVP +aWJ +aXJ +fow +aZH +baS +bbV +bbT +bdZ +bfc +bgb +bgW +bhH +bic +biM +bjJ +bgd +bme +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bDi +bmf +bsn +bva +bHS +bJh +bKm +bHQ +bMD +bKm +bOA +bPr +bva +bQS +vmY +bSp +bTd +bPC +bDi +bDi +bDi +bWZ +bDi +bDi +bZr +caa +caa +bXa +bRD +bWl +cdE +bIZ +rnE +aaa +aaa +aaa +nge +adR +adR +adR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(90,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +sdk +ahL +aik +aiM +ajh +ajR +akN +ivO +amj +amX +anH +aoq +aoW +apM +aqu +arn +asA +atC +auA +avz +awJ +axG +ayL +aAi +aBd +aCn +aDt +aEq +aFp +aFn +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +aQx +aRG +qWM +oEA +aUH +dTV +aWF +aXI +aYJ +aZI +baT +aXI +baK +bea +bfd +bgc +bgX +bhG +bid +bgV +bjK +bgd +bmf +bnv +bor +bpv +bqT +bso +btR +bnv +bnv +byd +bzE +bAN +bnv +bDi +bEp +bsn +bva +bva +bva +bva +bLy +bLy +bva +bva +bva +bva +bQT +vay +bSq +bDi +bSw +bSw +bva +bva +bDi +bva +bva +bva +bva +bva +bva +bva +bva +bva +bva +ukn +bIZ +bva +bva +aht +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(91,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +ail +aiN +aji +ajS +akO +pfB +amk +amY +anI +aor +aoX +apI +apO +aro +jen +atD +auz +avA +rjF +axG +ayL +aAi +aBd +aCo +aCk +aEr +aGa +gQo +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +oEA +oEA +oEA +oEA +oEA +aUI +aQz +fBt +aXK +aYK +aZJ +baU +aXK +bdf +bdf +bfe +bgd +bgY +bhI +bie +biN +bgd +bgd +bmf +bnv +bos +bpw +bqU +bsp +btS +btS +bwu +btS +bwu +bAO +bnv +bDk +bmf +bva +bva +bHT +bJi +bva +bsn +bME +bva +bJi +bHT +bQj +bPA +vay +bSq +bva +bNK +bva +bva +bWj +bWZ +bXS +bva +bNX +bva +cab +jPf +oFI +bva +rse +uIn +mIa +qdj +sXi +bva +bBX +bBX +bBX +bBX +aht +adR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(92,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aim +aiO +ajj +ajT +akP +alA +aml +amZ +anJ +amX +aoY +amg +sBA +arp +asB +ajM +ajM +ajM +akA +axJ +ayL +aAi +aBd +aBd +aBd +aBd +aBd +aBd +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +aKH +aLu +aLu +aRH +aUJ +aVQ +nyB +aXB +aXI +aZK +aXI +aXK +aGV +aGV +bff +bgd +bga +bgd +bgd +bga +bgd +bkW +bmf +bnv +bot +bpx +bqV +bsq +btT +bnv +bnv +bye +bzF +bAP +bnv +bnv +bEq +bFG +bGN +bGN +bGN +bGN +bGN +bGN +bGN +bGN +bPs +bva +bWk +nLl +nfz +npE +oZW +bDi +bDi +bSw +bSw +bSw +bva +bOB +bva +aaC +kRq +kRq +bva +stQ +boq +boq +boq +cgp +dNr +bBX +bDi +bDi +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(93,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +agQ +agQ +agP +ahL +ahL +ahL +ahL +ahL +ahL +ahL +amg +amg +anK +aos +aoZ +amg +aqv +aro +jxK +atE +auB +avB +awL +axK +ayM +aAj +aBg +aCp +aDu +aEs +aFr +aGb +aGU +aHE +aAL +aAL +aAL +aAL +aMR +aAL +aAL +aHE +aAL +aAL +aTO +aUK +xvO +aCZ +aGU +aAL +aZL +aAL +aAL +aAL +aAL +bfg +aAL +aAL +bhJ +bif +biO +bjL +bjL +bmg +bnv +bou +bnv +bou +bnv +bou +bvc +bwv +byf +bzG +bAQ +bBZ +bvc +bDi +bEn +bDi +bDi +bJj +npE +npE +npE +nSj +cXW +bPt +qyF +bQU +bva +bva +bva +lGv +bva +bva +bva +bva +bSw +bYF +bSw +bva +bva +gkX +bva +bva +pVD +kDY +fmh +rSH +bSo +gHZ +bBX +wfO +bDi +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(94,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agP +cnJ +ahq +ahq +ahM +ain +aiP +ajk +ajU +akQ +alB +amm +anb +anL +aot +apa +agP +aqw +arp +tTZ +atF +alv +alv +awM +axG +ayN +aAk +axG +aCq +axG +axG +axG +aGc +aGV +aHF +aIL +aDZ +aDZ +aDZ +aMS +aDZ +aDZ +aQB +aPR +aPR +aPR +aUL +wun +aEa +aHm +aEa +aZM +baV +aEa +aEa +aEa +bfh +aEa +bgZ +bhK +aIe +biP +bjL +bkX +bmh +bjL +bov +bpy +bqW +bsr +btU +bou +bww +byg +bzH +bAR +bCa +bvc +bEr +bFH +bEr +bEr +pQw +bEr +bEr +bEr +bEr +bEr +bPu +bva +rXT +bFZ +sUP +bTf +vGg +wdx +bVu +mzU +rzp +kpK +bDi +bZt +bva +oAW +bDi +pYC +bva +mHy +wzb +nYb +gVc +uiP +xCV +ehM +bDi +dWk +bBX +aht +adR +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(95,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +ahq +ahN +aio +agP +ajl +ajV +ajV +alC +amn +alC +alE +aou +apb +agP +aqx +arq +asD +atG +auC +auC +awN +axL +ayO +aAl +aBh +aBh +aDv +aBh +aBh +aGd +tHk +aHG +aIM +aJG +aKI +aLv +aMT +aKI +aPw +aQC +aKI +aKI +aTP +aUM +aVR +aKI +aXL +aYL +aZN +baW +aKI +aKI +beb +aKI +bge +bha +bhL +aHN +bjj +xQc +bkY +bmi +bjN +bow +bpz +bpz +bss +btV +bou +bwx +byh +bzI +bAS +bCb +bvc +bvc +bFI +bGO +bHU +bJk +bKn +bLz +bMF +bNL +bOC +bPv +bIZ +bOG +bva +bSs +bTg +bUa +jYh +bVv +bva +nQc +bXU +bDi +bZt +bZs +kRq +uMt +bME +fef +fmh +bNU +nYb +dSr +fmh +dJm +bDi +wfO +weL +bBX +aht +adR +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(96,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +cnT +ahq +ahd +agP +ajm +ajW +ajV +alD +amo +anc +anM +aou +apb +agQ +aqp +arp +asE +ajM +auD +avC +akA +axJ +axG +aAm +aBi +aBi +aBi +aBi +aBi +aBi +aBi +hqo +aDZ +aJH +aKJ +aLw +aMU +aKK +aKJ +aQD +aRI +coV +aKT +aUN +aVS +aVS +aXM +aVS +aVS +aXM +bbW +bbW +aVS +aVS +bgf +bhb +aDZ +aHN +biR +bjL +bkZ +bmj +bnw +box +bpA +bqX +bst +btW +bvd +bwy +byi +bzJ +bAT +bCc +bDl +bvc +bFJ +bGP +bHV +sEN +bKo +bLA +bMG +bNM +bOD +bPw +bQk +bQV +bRE +bSt +bTh +rJg +dAG +bVw +bva +iEQ +bXV +bDi +bNK +bva +bME +bDi +ksf +bva +bDi +ohR +nYb +ohR +reH +xCV +xaO +sww +bDi +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(97,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +afJ +aby +aaa +agQ +ahd +ahq +ahq +ahq +ahd +agP +ajn +ajW +ajV +alE +amp +and +and +aov +apc +apP +aqy +arr +asC +ajM +auE +avD +awO +axG +axG +aAm +aBi +aCr +aDw +aEt +aFs +aGe +aGX +aHH +aDZ +aJI +aKK +aLx +aMV +aOt +aKJ +aKT +aKT +aKT +aKT +aUO +aVS +aWM +aXN +aVS +aZO +baX +bbX +bdg +bec +bfi +bgg +bhc +aAL +big +biS +bjL +bla +bmk +bjN +boy +bpB +bqY +bsu +btX +bve +bwz +byj +bzK +bAU +bCd +bDm +bvc +bFK +bGQ +bHX +bJm +bKn +bKn +bKn +bKn +bEr +bPx +bva +bOI +bFZ +bFZ +bFZ +lms +bva +bva +bva +bva +tvP +bDi +wRk +bva +bva +olc +bva +bva +rhr +dym +bDi +ycx +lBP +fvb +bBX +bDi +wfO +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(98,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +cnN +ahq +cnT +ahq +ahd +agP +ajo +ajX +ajV +alC +amn +alC +alE +aow +apd +agQ +aqz +ars +asy +atH +auF +avE +awP +axG +ayP +aAn +aBi +aCs +aDx +aEu +aFt +cou +aGY +aHI +aIN +aJJ +aKL +aLy +aMW +aOu +aKJ +aQE +aRJ +aSz +aSz +aUP +aVT +aWN +aXO +aYM +aZP +baY +aZP +bdh +bed +aVS +bgh +aJI +aDZ +aHN +biT +bjL +kSO +bjL +bjL +boz +bpB +bqZ +bsv +btY +bvc +bwA +byk +bzL +bAV +bCe +bDn +bvc +bFL +bGR +bHX +bJl +bKp +bLA +bMG +bNN +bOD +bPx +bIZ +bCz +bva +bSu +bTi +bUb +bva +bVy +ohR +hVx +oWw +bDi +bNS +bva +klo +bSv +new +bva +dye +nVU +bDi +qBv +bDi +pBD +bBX +bDi +fLG +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(99,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +ahq +ahq +aip +agP +ajp +ajY +ajV +alF +amq +ane +anN +aox +ape +agP +aqA +art +asF +ajM +auG +avF +awQ +axG +ayQ +axG +aBi +aCt +aDy +aDA +aDA +aGf +aGX +aHH +aIO +aJI +aKK +aLz +aMX +aOv +aKJ +aQF +aRK +aRL +aRL +aUQ +aVU +aWO +aXP +aVS +aZQ +baZ +bbY +bdi +bee +aVS +bgi +aJI +aDZ +aHN +bjL +bjL +blb +bml +bjL +bnv +bpC +bra +bsw +bnv +bvc +bvc +bvc +bvc +bvc +bvc +bvc +bvc +bAW +bAW +bHY +bGW +bKn +bLB +bMF +bNO +bOC +bPv +bIZ +bCz +bRF +bDi +bPC +bDi +bva +bPA +bSw +bSw +nNJ +bDi +nWP +bva +gjp +lHX +nDo +bva +sij +bDi +ydf +ihj +ssx +bva +bBX +bBX +bBX +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(100,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +cnP +ahq +ahq +ahO +aiq +aiQ +ajq +ajZ +akR +alG +amr +anf +anO +aoy +apf +ajM +ajM +aru +asG +ajM +auH +avG +awR +axM +ayR +aAo +aBi +aCu +aDz +aDA +aDA +aGg +aBi +aHJ +aIO +aJI +aKJ +aKJ +aKJ +aKJ +aKJ +aQG +aRL +aRL +aRL +aUR +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aaw +aJI +aDZ +aHN +bjL +bjP +blb +bjL +bnx +boA +bpD +brb +bsx +btZ +bvf +bwB +byl +bzM +bAW +bCf +bDo +bEs +bEr +bGS +bHZ +bGW +bKq +bKn +bKn +bKn +bEr +bPx +bva +bCz +bNK +bSv +bTj +bDi +bva +tRc +bVz +ftp +lQX +bDi +bva +bva +bva +bva +bva +bva +bva +bva +bva +bIZ +bva +bva +aht +aht +aht +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(101,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +cnQ +ahq +cnV +ahP +air +agP +agP +agP +cCS +alH +ams +alH +anP +agP +apg +ajM +aqB +arv +asH +atI +auI +avH +awR +awR +awR +awR +aBj +aCv +aDz +aDA +aDA +aGh +aBi +aHK +aIO +aJI +aKM +aLA +aMY +aKP +aNm +aQG +aRL +aSA +aTQ +aUS +aRL +aWP +aXQ +aYN +aZR +aYN +aYN +aYN +aXQ +bfj +bdm +aJI +aDZ +bih +biW +wUf +wUf +bmn +iGJ +bjQ +bpE +brc +bsy +bsy +bvg +bwC +bym +bzN +bAX +bCg +bDp +bEt +bFM +bGT +bIa +cBK +bKr +bLC +bMH +bNP +bOE +bPy +bQl +bQW +bva +bSw +bPC +bUc +bva +bva +bva +bva +nNJ +bDi +bOB +bSw +bDi +bDi +bDi +bIZ +aaa +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(102,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agP +cnQ +ahq +ahq +ahQ +ais +agP +ajr +aiR +akT +aiR +amt +aiR +anQ +aiR +aph +ajM +aqC +arw +asI +aqC +auH +avI +auH +axN +ayS +aAp +aBj +aCw +aDA +aDy +aDA +aGi +aBi +aHL +aIP +aJK +aKN +aLB +aMZ +aKP +aPx +aQH +aRM +aSB +aTR +aUT +aRL +aWQ +aXR +aXS +aZS +bba +aZS +aXS +bef +bfk +bdm +bhd +aBI +bii +biX +bjR +blc +biX +bny +aax +bpF +brd +bsz +bjQ +bvh +bwD +byn +bzO +bAY +bCh +bDq +bEu +bFN +bGU +bIb +bJn +bKs +bKs +bMI +bNQ +bOC +bPz +bIZ +pwj +bva +bSx +bTk +bUd +bva +bDi +bDi +wIv +qOH +fpT +fpT +fpT +wNq +bva +gMO +bBX +aaa +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(103,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +agQ +agQ +agQ +agP +agP +agP +ajs +aiR +akU +alI +amu +ang +anR +aiR +aph +ajM +aqD +arx +asJ +aqC +auH +avJ +awS +axO +ayT +aAq +aBj +vTL +aDA +aEv +aFu +lnn +aGZ +aHM +aIQ +aJL +aKO +aLC +aNa +aKP +aPy +aQI +aRL +aSC +aTS +aUU +aRL +aWQ +aXS +aYO +aZT +aZT +aZT +bdj +beg +bfl +bdm +aJI +aDZ +bij +biY +rvH +biY +biY +biY +biY +bpG +biY +bsA +bua +bvi +bwE +bsA +bsA +bsA +bsA +bsA +bjc +bFO +bFO +bFO +bFO +bKt +qar +bGW +bNR +bAW +bva +bva +pwj +bva +bva +bva +bva +bva +jXV +bva +bva +qYi +bBX +bBX +bBX +uUQ +bBX +fdS +bBX +bBX +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(104,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +abI +abI +abI +abI +ajs +aka +akV +alJ +amv +anh +anS +aiR +api +ajM +aqC +ary +asK +aqC +auH +avK +auH +axP +ayU +aAr +aBj +aCx +oyF +oyF +oyF +aGj +onX +qXH +aIO +aJI +aKP +aLD +aNb +aKP +aPz +aQJ +aRL +aau +aTT +aXS +aRL +aWR +aXT +aYO +aZU +bbb +bbZ +bdk +beh +bfl +bdm +aJI +aDZ +bik +biY +bjS +bld +bmp +bld +bld +bpH +biY +bsB +bub +bvj +bwF +byo +bzP +bCj +bCi +bDr +bEv +bFP +bGV +bIc +bFO +bKu +bLE +bMJ +bEr +bEr +bPA +bNX +bQX +bKH +bKH +bKH +bKH +bKH +bKH +iyg +lIr +bQY +bXk +mbe +scz +kSF +kDJ +oYj +uMo +bXk +bXk +bXk +bXk +bXk +bXk +bXk +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(105,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +akb +akW +alK +amw +ani +jvi +aiR +aph +ajM +aqC +arz +asL +atJ +auH +auH +auH +axQ +ayV +aAs +aBj +gkR +aDB +aEw +aFv +ulu +aGX +jYe +aIO +aJI +aKQ +aKQ +aKQ +aKQ +aLL +aQK +aRL +aSE +aTU +aXU +aVV +aWS +aXU +aYP +aZV +bbc +bbc +bdl +bei +bfm +bgj +bhe +aDZ +bil +biY +bjT +ble +bmq +bmq +boC +bpI +biY +bsC +buc +jsj +bwG +byp +bzQ +bzQ +ioj +bsA +bEw +naS +bkh +bId +bFO +bEr +bEr +bEr +bEr +bOF +bDz +bDz +bCD +bDi +bUe +bTl +bBX +bBX +bBX +bBX +qXq +bBX +bXk +bZx +eQN +tcY +cam +cam +sjC +bXk +mci +cbX +ceq +mhl +ceq +ceq +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(106,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +abI +ajs +akc +akX +alL +amx +anj +anU +aiR +apj +ajM +ajM +ajM +ajM +ajM +ajM +avL +auH +auH +ayW +auH +awR +awR +awR +awR +awR +awR +aAN +gNG +aIO +aJM +aKQ +aLE +aNc +aKQ +aLL +aQL +aRL +aSF +aXS +aXS +aRL +aWT +aXV +aXS +aZW +aXS +bca +aXS +bej +bfn +bdm +aJI +aDZ +bik +biY +bjU +bld +bld +bld +bld +bpJ +biY +bsC +bud +bvk +bwH +bua +bzR +bzR +bBb +bDr +bEx +bkh +bGX +bIe +bjc +bKv +bLF +bjc +bNS +bCz +bPB +bPB +bPB +bPB +bPB +bPB +bPB +uwX +uMe +lTC +bXd +cif +bXk +vRm +bpL +fQf +cbW +cbd +cdI +cri +cbX +cbX +cbV +cbV +ceq +ceq +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(107,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +akd +akX +alJ +amy +alJ +anV +aiR +apk +apQ +aqE +aqE +aqE +atK +auJ +aqE +awT +axR +ayX +aAt +aBk +aCy +aDC +aEx +aFw +awR +aHb +jYe +aIQ +aJL +aKR +aLF +aNd +wBg +aLL +aQM +aRL +aSG +aTW +aUW +aRL +kEW +aXW +aXS +aZX +bbd +aRL +bdm +bek +bdm +aRL +bhd +bhM +bim +biZ +bjV +blf +blf +blf +blf +bpK +biY +bsD +buc +kQy +bwI +byo +bzS +eFj +bCl +bsA +bEy +bFQ +buh +bIf +bjc +bKw +bLG +bjc +bNT +bCz +bPB +bQm +bQZ +bQZ +bQZ +bTm +bPB +bUG +uMe +hzc +bXe +krU +bXk +kyv +lWJ +iAx +bZA +cam +ous +bXk +ccR +cbX +ccQ +ccQ +ccQ +ccQ +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +cmt +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(108,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +ake +akX +alM +amz +ank +anT +ajs +apl +aoz +aqF +arA +arA +arA +arA +avM +awR +axS +ayY +aAu +aBl +aCz +aDD +aza +aza +awR +aHc +aHO +aIP +aJK +aKS +aLG +aNe +aKQ +aPA +aQN +aRN +aRN +aRN +aRN +aRN +aRN +aXX +aXS +aXS +pWT +bcb +bdn +bel +bdn +kEM +aJI +aDZ +bik +biY +bjW +blg +bmr +bnz +boD +bpH +biY +bsE +bue +tix +cSJ +bsA +bzT +bBc +bCm +bDr +bEz +wtE +buh +bIg +bjc +bKx +bLH +bjc +bNU +bCz +bPB +bQn +cCP +cCF +cCH +bTn +bPB +uwX +wMM +fzu +wiB +reV +bXk +sKa +iFI +oUa +vjd +oAw +cdK +bXk +bXk +bXk +bXk +bXk +bXk +bXk +bXk +aht +aht +aht +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +clw +clG +clG +clG +clw +clw +clw +clw +clw +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cny +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(109,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiR +ajs +ajs +akZ +alN +alN +alN +anW +ajs +apm +apR +aqG +arB +asM +atL +auK +avN +awU +axT +ayZ +aAv +aBm +aCA +aDE +aEy +aFx +awR +awR +aHP +aIO +aJN +aKQ +aKQ +aKQ +aKQ +aLL +aQN +aRN +aRN +aTX +aUX +aVW +aRN +aXY +aXS +aXS +pWT +bcc +aDZ +bem +aDZ +aDZ +aJI +aDZ +bik +biY +biY +biY +biY +biY +biY +bpM +biY +bsA +bua +rar +bwE +bsA +bzU +bBd +byo +bsA +bkb +bFR +bGY +bkb +bjc +bKy +bLI +bjc +bjc +bCz +bPB +bQo +cCF +bRa +bSy +bTo +bPB +bUH +bUH +bUH +bUH +bUH +bXk +bTE +cae +eta +mmv +cae +bTE +bXk +ceT +cfr +cfO +cgr +cgP +cgP +cgP +cgP +cgP +cig +cgP +cig +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +clC +clH +clP +kFm +clw +cmf +cmm +cmu +clG +cmB +xFl +cmL +cmR +cmV +cna +cmR +cnj +cmK +cnr +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(110,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aiR +abI +abI +abI +abI +abI +aoz +apn +aoz +aqG +arC +asN +atM +auL +avO +awV +axU +aza +aAw +aBn +aCB +aDE +aEz +aFx +aGk +awR +aHQ +aIO +aJO +aKT +aLH +aNf +aKT +aLL +aQO +aRO +aSH +aTY +aUY +aVX +aRN +aXZ +aYQ +aXS +ttS +bcd +bdo +ben +bfo +bfo +aJZ +aAL +bin +bja +bjX +blh +bms +bnA +boE +bpN +bre +bsF +bkh +jUV +bwK +byr +bzV +bBe +bCn +bDs +bEA +bFS +bGZ +bCn +bJo +bGZ +bLJ +bMK +bjc +bCz +bPB +bQp +cCH +cCF +cCP +bTp +bPB +bUI +bVD +bWn +bXf +bUH +bYI +jrG +caf +uun +cbY +cdc +gnq +bXk +ceU +eVy +bXk +bXk +bXk +bXk +tue +pjH +pjH +pjH +roc +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +tfw +pjH +pjH +uHG +clw +clw +clw +clQ +clX +rsZ +clw +cmg +cmn +cmv +clG +cmG +gpI +cmM +cmK +cmW +cnb +cmK +cnk +cmK +cns +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(111,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoz +ahr +aoz +aqG +arD +asO +atN +auK +avP +awW +axV +azb +aAx +aBo +aCB +aDF +aEA +aFy +aGl +awR +aHR +aIR +aJP +aKT +aLI +aNg +aKT +aPB +aQP +aRN +aRN +aTZ +aSK +aSK +aRN +aRN +bgk +gam +aZZ +aRN +aRN +beo +aRN +aRN +aJI +aDZ +bim +bjb +bjY +bli +bmt +bnB +boF +bpO +brf +bkg +buf +bvm +bwL +bys +bzW +bBf +bCo +bkh +bEB +bkh +buh +bIh +bkh +bKz +bnH +boN +cBL +bCz +bPB +bQq +bRb +bRG +bSz +bTq +bPB +bUJ +bVE +bWo +bXg +bXY +bYJ +bZy +bZy +cbc +cbZ +bZy +cdL +cer +ceV +cfs +dWp +cgs +cgQ +chv +mKk +cdm +cdm +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +clz +clA +clD +clJ +clR +clY +cmd +cmh +uzn +cmo +clG +clG +clG +gpI +cmN +cmK +cmK +cmK +cmK +cnl +cmK +cnt +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(112,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cdm +cdm +aqG +arE +arA +atO +auM +avQ +awW +axW +azc +aAy +aBp +aCC +aDG +aBm +aFz +aGm +awR +aHQ +aIO +aJO +aKT +aPz +aLL +aOw +aLL +aQP +aRN +aSI +aSK +aUZ +aSK +aWU +aRN +aYR +aYS +aYS +cpq +cpu +cpw +bfp +bgk +aJI +aDZ +bik +bja +bjZ +blj +bmu +bnA +boG +bpP +brg +bsG +brf +bvn +aaz +byt +bzX +bpP +bCp +bpP +bEC +bFT +bHa +bIi +bJp +bKA +bLK +bMM +bjc +bCz +bPB +bPB +bRc +bRH +bSA +bPB +bPB +bUK +bVG +bWp +bXh +bXZ +bYK +bZz +nAY +cbd +nRM +cam +cdM +bXq +xmE +ymb +bXk +ore +qWG +bXk +paU +dSp +cdm +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +iBJ +clB +hQz +clB +clS +clZ +tlw +cme +nMG +cmp +cmw +cmF +opz +qYS +cmK +cmK +cmX +cnc +cmK +cmK +cmK +cnu +cmB +abI +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(113,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +apS +ala +arF +arA +atP +auN +avR +awX +awU +awR +awR +awR +aCD +aDH +awR +awR +awR +awR +aHS +aIS +aJO +aKT +aLK +aNh +aKT +aPC +aQP +aRN +aSJ +aSK +aVa +aVY +aWV +aYa +aYS +aYS +bbg +cpr +bcf +beq +cpy +bgl +bhe +aDZ +bik +bja +bka +blk +bmv +bja +bjc +bpQ +bjc +bjc +bug +bvo +bwN +byu +bzY +wLo +bCq +wLo +bzY +bFU +bFU +bIj +bJq +bIj +bFU +bFU +bjc +bCz +bPC +bPB +bRd +bRI +bSB +bTr +bPB +bUL +cqV +bWq +bXi +bYa +bYL +bZA +caw +cbe +cca +cam +qtO +bXk +bXk +bXk +svA +mjK +mjK +mjK +aap +aac +aac +bXk +shH +shH +shH +shH +shH +shH +shH +shH +fon +fon +mau +fon +aht +aht +mau +fon +fon +aht +aht +ouv +clw +clw +clw +clT +cma +clL +clw +cmj +cmq +clG +clG +clG +cmK +cmO +cmK +cmK +cmK +cmK +cnm +cmK +cnv +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(114,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +apo +abI +aqH +arG +asP +atQ +auO +avS +awY +axX +azd +aAz +aBq +aCE +aDI +aEB +aEB +aEB +aHd +aHT +aIT +aJQ +aKT +aKT +aKT +aKT +aPD +aQQ +aRN +aSK +aUa +aVb +aVZ +aWW +aRN +bce +aYS +cpm +bcg +bdp +ber +cpz +bgk +aJI +aDZ +bik +bjc +bkb +bkb +bkb +bjc +boH +bkh +brh +bjd +cqm +bvl +bwO +byv +bzZ +bBg +bCr +bDt +bED +bFU +bHb +bIk +bJr +bKB +bKB +bFU +bNV +bCz +bPD +bPB +bRe +bRJ +bSC +bTs +bPB +bUM +bVH +bWr +bXj +qGZ +bYQ +bZD +caj +cbf +ccb +cah +cdO +ioF +ceX +aah +cfS +fFv +fmL +gXZ +kmd +lXJ +lXJ +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rnr +clE +xnm +clM +clU +cmb +mxy +clw +cmk +cmr +cmx +clG +cmH +cmK +cmP +cmK +cmY +cnd +cmK +cnn +cmK +cnw +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(115,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alO +aaa +aaa +aqI +arH +asQ +atR +auP +avT +awZ +axY +aze +aAA +aBr +aCF +aDJ +aEC +aDJ +aAA +myu +aHU +aIV +aJS +aKU +aNj +aNi +aOx +aNj +aQR +aRN +aSL +aRN +aRN +aWa +aRN +aRN +rxV +aYS +cpn +bch +bdq +bes +cpA +bgk +aJI +aDZ +bik +bjc +bkc +bll +bmw +bnC +boI +bpR +bri +bjd +cqm +bvl +bwP +byu +bAa +bBh +bCs +bDu +bEE +bFU +bHc +bIl +bJs +bKC +bLL +bFU +bNW +bOH +bPE +bQr +bRf +bRK +bSD +bQr +bQr +bUH +bUH +bUH +bUH +bYb +bYN +bZF +cak +cbg +cam +cam +cam +cam +mwG +nAs +cfT +wcs +ggg +qbp +qbp +gEo +dMG +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +clw +clN +qxq +clV +cmc +mDW +clw +cml +cms +cmy +clG +cmB +cmK +cmQ +cmU +cmZ +cne +cmU +cno +cmK +cnx +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(116,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anl +aht +aaa +aaa +aqI +arI +asR +atS +auQ +avU +axa +axZ +azf +aAB +aAB +aAB +aAB +aAB +aAB +arA +arA +aHV +aIO +aJO +aKT +aKT +aKT +aOy +aLL +aLL +aRP +aSM +aUb +aVc +aWb +aWX +aYb +aYV +cpl +bcf +cps +aYS +bep +cpB +bgk +aJI +aDZ +bik +bjd +bkd +bkh +cqa +bnD +boJ +bpS +bjd +aay +cqm +bvl +bwP +byv +bAb +bBi +bCt +bDv +bEF +bFU +bHd +bIm +bJr +bKD +bKD +bFU +bNX +bCz +bPE +bQs +bRg +bRL +bSE +bTt +bUf +bQr +bVI +bWs +bXk +bYc +bYO +bZA +xhI +cbh +cbh +cbh +cbh +cbh +hjD +aai +cfU +tIS +iCs +rPg +rPg +cBR +iCs +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cnz +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(117,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anl +aaa +aht +aaa +aaa +aqI +arJ +asR +asS +asS +asS +asS +aya +azg +aAB +aBs +aCG +aDK +aED +aAB +aGn +axi +aHW +aIO +aJO +aAN +aGn +aKT +coF +aPE +aPE +aPE +aPE +aPE +qEN +bdv +aWY +aRN +aYU +bab +bbi +bbh +bdr +cpx +aRN +aRN +aJI +aDZ +bij +bje +bke +blm +bpT +bpT +bpT +bpT +bpT +bsH +blo +bvl +cqs +byu +bAc +bBj +bCu +bDw +bEG +bFU +bFU +bIn +bJt +qni +bFU +bFU +bFU +hZB +bPF +bTu +bRh +bRM +bSF +bTu +bUg +bUN +bVJ +bWt +bXk +bYd +bYP +bZF +rTd +wDl +vxr +irM +irM +qFu +cet +ulY +aak +cgu +cgU +aam +aaq +aac +jzE +bXk +bXk +bXk +bXk +bXk +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +cmz +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(118,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amA +aht +aht +aht +aht +abI +aqJ +arK +asS +atT +auR +avV +axb +ayb +azh +aAB +aBt +aCH +aCK +aEE +aAB +aGo +aHf +aHX +aIW +coz +aKV +abI +aKT +coG +aPE +aQS +aRQ +aSN +aUc +aPE +aWd +aXb +aRN +aYT +bac +baa +baa +baa +beu +bgk +bgn +aJI +aDZ +aHN +bjd +bkf +bln +bmx +bnE +boK +bpU +bpU +bsI +bui +bvp +bwQ +byv +bAd +bBk +bCv +bDx +bEH +bFU +bFU +bIo +bJu +bKE +bLM +bMN +bFU +bCz +bPE +bQu +bRi +bRN +bSG +bTv +bUh +bUO +bVK +bWu +bXk +bYe +bYQ +bZA +can +cbi +ccc +aac +cdR +aaf +bXk +bXk +sWW +cgv +lXb +cgv +uaP +cgv +ukp +cgV +cgv +cgv +gQf +bXk +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +abN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(119,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acO +aby +aby +aby +aby +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aqI +arL +asR +atT +auR +avW +axb +ayb +azi +aAB +aBu +aCI +aDL +aEF +aAB +aGp +aHf +aHX +aIW +coz +aKV +abI +aKT +coH +aPE +aQT +aRR +aSO +aUd +aVd +aWe +aXb +aRN +aYX +bad +bbl +bbl +bbl +bbl +aRN +bgo +bhd +aBI +aHG +bjf +cpX +cpZ +cqc +bnF +boL +bpV +bpV +bpY +bpY +bvq +bpX +bpY +bpY +bpY +bCw +bDy +bDy +bDy +bFU +bIp +bJv +bJx +bLN +bMO +bFU +bCz +bPE +bQv +bRj +bRO +bSH +bTw +bQr +bQr +bQr +bQr +bXk +bTE +bYR +bZA +can +cbj +aac +cbX +wcs +iyJ +cfa +aac +twv +hoS +sWj +dnS +hSC +jTU +fZK +pgH +pgH +uRk +ciG +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(120,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +abI +aaa +aaa +aaa +abI +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arM +asR +atU +auR +avX +axb +ayb +azj +aAC +aBv +aCJ +aDM +aEG +aAB +aGq +aHf +aHY +aIX +coB +aKV +abI +aKT +coH +aPE +aQU +aRS +aSP +aSP +aPE +aWf +aXb +aPE +aYY +bae +bbm +bae +bcm +bae +cpC +bgp +aJI +bhN +big +bjg +cpY +cqa +bmy +bnF +boM +bpV +brj +bsJ +buj +bvr +bwS +byw +bAe +bpY +bCx +bDy +bEI +bFV +bFU +bIq +bJw +bKF +bLO +bMP +bFU +bCz +bPE +bQw +bRj +bRP +bSH +bTx +bQr +bUP +bVL +bWv +bXl +bYf +bYS +bZA +can +qpS +aae +ccX +ccX +ceu +cbX +cfu +tlN +ncm +cCI +aan +aar +aao +meF +oKv +wbB +xzR +hQC +bXk +aht +fon +shH +fon +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(121,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +acP +acP +acP +acP +acP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arN +asR +atT +auR +avY +axb +ayb +azk +aAB +aBw +aCK +aDL +aEH +aAB +aGr +aHf +aHX +aIW +coz +aKV +abI +aKT +coJ +aPE +aQV +aRT +aSQ +aUe +cpa +aWg +aXc +aPE +cpg +bah +bag +bah +bag +bex +bfr +bgq +aJI +aDZ +bih +bjh +bki +blp +bmz +bnG +boN +bpW +dHZ +bsK +buk +bvs +bwT +byx +bAf +bBl +bCy +bDy +bEJ +bFW +bHe +bIr +bJx +bJx +bLP +bMQ +bFU +bCz +bPE +bQx +bRj +bRQ +bSH +bTy +bQr +bUQ +bVM +bWw +bXm +bYg +bYT +bZB +caq +cbk +aac +ccY +cdT +ccY +cbX +aac +vlC +iej +qeY +fyO +fyO +fyO +qeY +oKv +wbB +wfP +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(122,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +acm +aaa +aaa +aaa +abI +aaa +acP +acP +acP +acP +adG +adS +adS +adS +adS +adS +aeJ +aeY +aft +afK +acP +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aht +aht +aht +abI +aqJ +arO +asS +atT +auR +avZ +axb +ayb +azh +aAB +aBx +aCL +aCK +aEE +aAB +aGs +aHf +aHX +aIY +coz +aKV +abI +aKT +coJ +aPE +aPE +aRU +aPE +aPE +aPE +aWh +aXd +aYd +aYZ +bag +cpo +cpt +cpv +bag +aPE +bgr +aJI +aDZ +aHN +bjd +bjc +bke +bkh +cqf +boN +bpX +brl +bsL +bul +bwU +bsK +bsK +bAg +bpY +bCz +bDy +bEK +bFX +bFU +bIs +bJy +bKG +bLQ +bMR +bFU +bCz +bPE +bQy +bRk +bRR +bSI +bTz +bQr +bUR +bVM +bWx +bXn +bYh +bYU +bZE +car +mgz +aac +cbX +wcs +wcs +cfd +bXk +tlN +ncm +lUO +mpd +hKp +hKp +cit +qeY +puw +vBE +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(123,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +acP +acW +adh +ads +adH +adT +aee +aee +aee +aev +kjK +aeZ +afu +afL +acP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aqI +arP +asR +asS +asS +asS +asS +aya +azl +aAB +aBs +aCM +aDN +aEI +aAB +aGn +axi +aHZ +aDZ +aJO +aAN +aGn +aKT +aOz +aPF +aQW +aRV +aSR +aPE +aPE +cpe +aPE +aPE +aZa +bah +bag +bah +bdw +bey +cpC +bgs +aJI +aDZ +aHN +bji +bjd +blq +bkh +bkh +boN +bpW +brk +bsM +bum +bvt +bwV +byz +ooh +bpY +bCA +bDy +bEL +bDy +bFU +bFU +bJz +bFU +bFU +bFU +bFU +bCz +bPE +bQz +bRl +bRS +bSJ +bTA +bQr +bUS +bVM +bWy +bXo +bYi +bYV +bZA +cam +ccW +bXk +cda +wcs +wcs +wcs +eyj +eAH +lnr +qeY +fBZ +fBZ +fBZ +cgY +ciI +tdL +dHr +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(124,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abI +abO +abV +acc +ach +abY +abW +acn +acw +abY +abV +acc +acG +acQ +acX +adi +adt +adI +adU +aef +aef +aef +aew +aeK +afa +afv +afM +acP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arQ +asR +atV +auS +awa +axc +ayc +azm +aAB +aAB +aCN +aAB +aAB +aAB +arA +arA +aHV +aDZ +aJO +aKT +aKT +aKT +aOA +aPG +aQX +aRW +aSS +aUg +aVf +aWi +mjn +aYe +aZb +bag +bbr +bbr +bdv +bez +cpC +bgp +bhf +cpH +cpN +cpT +bjd +blr +cqd +cqd +boO +bpV +brm +bsN +bun +gGA +bwW +byA +bAi +bpY +bCB +bDz +bEM +bFY +bDz +bDz +bJA +bKH +bKH +bKH +bNY +bOJ +bPE +bQA +bRm +bRT +bSK +bTB +bQr +bUT +bVN +bWz +bVN +bYf +bYW +oWu +cam +vli +ckJ +cey +cdW +wcs +cdW +eyj +kTR +mEu +wMX +dFJ +wYK +dFJ +uzh +nUQ +fym +hon +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(125,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abW +acd +ace +ace +ace +aco +acx +acx +acz +acd +acH +acP +acY +adj +adu +adJ +adV +adV +cnD +adV +adV +aeL +afb +acP +acP +acP +agq +adX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arR +asT +atW +atW +atW +axd +axY +azn +aAD +aBr +axZ +aDO +aEJ +aDO +aAA +aHe +aHU +aIZ +aJT +aKY +aKY +aKY +aKY +aKY +aKY +aKY +coW +aPE +aVg +aWj +bah +aYf +aZc +bah +bbo +bco +bdw +beA +aPE +aPE +aJI +cpI +cpO +bjk +bje +bjd +bmA +bmA +bjd +bpY +bpY +bpY +bpY +pxD +jZG +bpY +bpY +bpY +bNZ +bva +bva +bva +bva +bva +bva +bva +bva +bva +bNZ +bva +bPE +bPE +bPE +bRU +bPE +bPE +bQr +bUU +bUU +bUU +bUU +bUT +bYX +bZA +cam +lfx +bXk +pCo +wcs +wcs +wcs +eyj +qkM +miw +qeY +prQ +prQ +prQ +dgj +psd +fxC +dZj +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(126,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abX +ace +ace +abO +abO +acp +abO +abO +acA +acx +acI +acP +acP +acP +adv +adK +adW +aeg +cnE +aeg +aex +aeM +afc +acP +afN +age +agr +adX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aht +aht +aht +abI +aqK +arG +asU +atX +auT +awb +axe +ayd +azo +aAE +aBy +aCO +aDP +aEK +aEK +aEK +aHg +aIa +aJa +aJQ +aKZ +aLQ +aNp +aOB +aPH +aQY +aKY +coW +aPE +aVh +bah +bah +aYg +cph +bag +bbp +bbp +bdv +bag +bfs +bgt +bhd +cpJ +cpP +aBI +aEY +bls +aBI +aBI +bmB +vKq +nTr +gDR +vzA +bvu +hIZ +tqO +mqp +cKV +iwe +qTV +xDj +blt +jCv +bOK +bEN +bKI +bEN +bHf +bOa +bOK +bPG +bQB +bBm +bRV +bSL +bTC +bUi +bUV +bVO +bWA +mCe +bYj +bYQ +bZA +cam +mgz +aac +tlV +wcs +wcs +dEy +bXk +tlN +ncm +puw +fyF +cZt +cZt +fjD +qeY +iTF +slJ +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(127,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +abO +acp +abO +abO +abO +acB +acJ +abO +acZ +adk +adw +adL +adV +adV +cnD +adV +adV +aeN +afd +afw +afO +agf +ags +adX +adX +adX +adX +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aaa +aaa +arA +arA +arA +arA +arA +aye +arA +aAF +aAH +aAH +aDQ +aAH +aAH +axi +axi +aIb +aJb +aJU +aLa +aLR +aNq +aNq +aPI +aQZ +aKY +coW +aPE +aVi +bah +aXh +aYg +aZd +beB +bbq +abU +bdx +beB +bft +bgu +aJZ +bhO +bio +aDZ +aGV +aDZ +aDZ +aDZ +jcT +xje +tTl +tTl +tTl +gkS +tTl +tTl +tTl +koz +dgg +phJ +phJ +lJI +bAk +bIt +bJB +bKJ +bJB +bMS +bOb +bJB +bPH +bQC +bJB +bRW +bSM +bTC +bUj +bUW +bVP +bWB +mCe +bYk +wjm +bZF +cbm +mgz +aac +oHa +oHa +eWi +cbX +aac +loL +cgx +qeY +fyO +fyO +fyO +qeY +cBS +cjt +kaR +hQC +bXk +aaa +fon +shH +fon +aht +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(128,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +acj +acq +abO +abO +abO +acC +acK +acR +ada +adl +adx +adL +adX +aeh +aeh +aeh +adX +aeN +afe +afx +afx +cnC +adX +adX +adX +adX +alb +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aaa +ahi +atY +bcN +auU +atY +lQQ +ayf +lQQ +aAF +aBz +aCP +aDR +aEL +aAH +aGt +aAN +aHV +aDZ +aJO +aKZ +aLS +aNr +aOC +aPJ +aRa +aRX +aST +aPE +cpb +bah +bah +aYg +cpi +bag +bbr +bbr +bah +bag +bfs +bgt +aJI +cpK +cpQ +aDZ +aGV +blu +aDZ +aDZ +bjm +mhn +cqi +cqi +cqi +cqi +cqi +imE +kYM +mfC +fdQ +bmD +bmD +eRp +bAl +bIu +bJC +bKK +bCC +bMT +bOc +bmD +bPI +bmD +bRn +bRX +bSM +bTC +bUk +bUX +bVQ +bWC +mCe +bYl +bYO +bZA +cam +lrM +aae +cAQ +cAQ +cLw +cbX +cfu +jBn +oxw +meF +aao +aao +aas +cCI +cBS +iLh +liR +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(129,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abJ +abO +abY +acf +abO +abO +ack +acr +acy +abO +abO +acD +acL +acS +adb +adm +ady +adM +adY +aei +aei +aei +aey +aeO +aff +afy +aab +bIK +agt +agD +agR +ahh +ahi +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aaa +ahi +baH +auV +auV +awc +axg +ayg +azp +aAG +aBA +aCQ +aDS +pHo +aAH +aGu +aHh +aHV +aDZ +aJV +aLb +aLT +aNs +aNs +aPK +aRb +aKY +aQN +aPE +cpc +aWl +beB +aYh +cpj +bah +bbs +bcq +bag +beC +aPE +aPE +bhg +cpL +cpR +bjl +bGa +bKM +blt +cqh +bKM +cCl +cCl +cCl +tJr +tzH +tzH +byD +bAm +dhz +uxP +bDA +bEQ +bGa +bHp +sYQ +bJD +bBo +bBo +bMU +bmC +bOL +bPJ +bOL +bRo +bRX +bSN +bTD +bTC +bUY +bVR +bWD +bWD +bTE +bYY +bZA +cam +cbn +aac +cbX +wcs +cfP +cff +aac +cfX +vVO +iop +kWQ +oXq +qpd +tkL +tOD +tOD +ikO +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(130,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +acl +acs +abO +abO +abO +acE +abY +acT +adc +adn +adz +adL +adX +aeh +aeh +aeh +adX +aeN +afg +afz +afz +agg +adX +adX +adX +adX +alb +aaa +aaa +aaa +aaa +aaa +aaa +aht +amD +aht +aaa +aaa +aaa +aaa +aaa +ahi +atY +atY +atY +atY +axh +axh +axh +aAH +aBB +aCR +aDT +aEM +aFA +aGv +aHi +aHV +aDZ +aJO +aKZ +aLU +aNt +aOD +aPL +aRc +aKY +aQN +aPE +aVj +aWm +bck +aYi +cpk +bag +bbp +bbp +bah +beD +cpC +bgv +aJI +cpM +cpS +cpU +bKM +blv +bmC +cqi +boP +bqb +pYw +gFo +cSK +duF +bxa +byE +bBp +wfG +bBp +bBp +bBp +bBp +bvD +bIv +cqz +bKM +bLR +bMV +bOd +bOL +bPK +bOL +bRp +bRY +bSM +pps +bUl +bUZ +bVS +bWE +bXk +bYm +bYZ +bZG +cax +cbo +ccc +aac +cdR +aag +bXq +bXq +cfY +xNy +smv +xNy +hGB +hSt +civ +civ +vsw +qRl +oKJ +bXk +aht +fon +fon +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(131,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +abO +act +abO +abO +abO +acB +acM +abO +add +ado +adA +adL +adZ +adZ +cnG +adZ +adZ +aeP +afh +afA +afQ +agf +ags +adX +adX +adX +adX +aFj +aht +aht +aht +aht +aht +alO +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aAH +aBC +aCS +aDU +aEN +aAH +aGw +aHj +aHV +aDZ +aJW +aKY +aLV +aLV +aLV +aLV +aKY +aKY +aQN +aPE +aPE +aPE +aPE +aPE +aZf +bah +bag +bah +bag +beE +cpC +bgw +aJI +aDZ +aHN +bjn +bKM +blw +bmC +cqi +boQ +cCl +brq +byF +cCt +byF +bxc +nIU +bAo +bBq +bCE +bDB +bER +bBp +bHh +bIv +cqz +bBo +bLS +bmC +bmC +bOL +bPL +bOL +bRo +bRZ +bSO +bTF +bUm +bVa +bVT +bWF +bXp +bYn +bZa +bZF +cal +cbp +cci +kTj +kTj +qhE +loz +frj +aal +eyj +uIB +eyj +eyj +uIB +eyj +eyj +bXk +bXk +bXk +bXk +aht +aht +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(132,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abV +ace +ace +abO +abO +act +abO +abO +ace +ace +ach +acU +acU +acU +adB +adN +aea +aej +cnH +aej +aez +aeQ +afi +acU +afR +agh +agu +agE +agS +agS +ahs +ahR +ahs +ahs +ahs +ahR +ala +aht +aaa +aht +aaa +aaa +app +apT +apT +apT +apT +apT +apT +aaa +aht +aaa +aaa +aAH +aBD +aCS +aDV +aEO +aAH +aGw +aHj +aHV +aDZ +aJR +anX +aLW +aNu +aOE +aPM +anX +aPB +aQN +aUf +aVk +aWn +aXk +aYj +aZg +ban +bbt +bcr +bck +beF +aPE +bgx +aJI +aDZ +aHN +bKM +bBo +blx +bmC +bnI +boR +cCl +brr +bsR +bup +bvw +bxd +byG +bAp +bBr +bCF +bDC +bES +bBp +bHi +bIv +cqz +bBo +bLT +bmC +bmC +bmC +bmC +bmC +bRo +bmC +bQD +pps +bUn +bVb +bVU +bWG +bXq +bYo +hXK +bZI +hXK +cbq +cbd +cam +cam +cam +haA +aaj +upc +wIo +hyh +upc +voh +pBJ +wIo +voh +cdm +aaa +aaa +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(133,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abW +acd +ace +ace +ace +ace +ace +ace +ace +acd +acw +acU +ade +adp +adC +adO +adZ +adZ +cnG +adZ +adZ +aeR +afj +acU +acU +acU +agq +adX +abI +abI +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +apT +aqL +arS +asV +aua +auW +awd +axi +aaa +aaa +aAH +aBE +aCS +aDW +aEP +aFA +aGv +aHk +aHV +aDZ +aJO +aLc +aLX +aNv +aOF +aPN +anX +aRY +aQN +aUf +aVl +aWo +aXl +aUf +aUf +aPE +bbu +bcs +bag +beG +aPE +bgy +aJI +aDZ +bih +bjp +bkm +bly +bmD +bJI +boS +bqb +brs +bsS +buq +bvx +bxe +byH +bAq +bBs +bCG +bDD +bET +bBp +bHj +bIx +cqz +bKM +bLU +bMW +bOe +bOM +bPM +bQD +bRq +bCC +bSP +bTG +bTQ +bVc +bUo +bWH +bXk +bTE +bZc +ueX +cCU +bZJ +wbF +cCV +ceb +epV +qLI +aaj +eiV +upc +dsz +eiV +eiV +uaO +voh +eiV +cdm +aaa +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(134,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abI +abO +abX +acg +aci +abY +abW +acu +acw +abY +abX +acg +aci +acU +adf +adq +adD +adP +aeb +aek +aek +aek +aeA +adF +afk +ael +afS +acU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqM +arT +asW +aub +auX +awe +axj +aaa +aaa +aAH +aBF +aCT +aDX +aEQ +aFB +aGx +aHl +aHV +aDZ +aJV +aLd +aLY +aNw +aOG +aPO +anX +aRZ +aQN +aUf +aVm +aWp +aXm +aYk +aUf +bao +bbv +bct +bah +aZe +bdy +bdo +aJI +wVC +aHN +blt +bmC +bmC +bmH +byK +boS +bqc +brt +bsR +bur +bvy +bxf +byI +bAr +bBt +bCH +bDE +bEU +bBp +bHk +bIv +bJE +bJN +bLV +bMX +bOf +bON +bJN +bQE +bRr +bSa +bJN +bJN +bJN +bVd +bJN +bJN +bJN +bJN +frj +pYh +pYh +pYh +pYh +pYh +pYh +pYh +pYh +hUw +nqu +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +dsz +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(135,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +acU +adg +adr +adE +adQ +aec +ael +ael +ael +aeB +aeS +afl +ael +afS +acU +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqN +arU +asX +auc +auY +awf +axk +aaa +abI +aAH +aBG +aCU +aDY +aER +aAH +aGy +aAN +aHV +aDZ +aJO +aLc +aLZ +aNx +aOH +aPP +anX +aSa +aQN +aUf +aUf +aWq +aXn +aYl +aUf +bap +bbw +bcu +bag +aXb +bdy +bdo +bhd +aBI +aHG +bjr +bko +blz +bmI +byK +boT +bqb +bru +bsT +bus +bvz +bxg +mdL +bCJ +bBu +bCI +bDF +bEV +bBp +bHl +bIv +bJF +bKO +bLW +bMY +bOg +bOO +bPN +bQF +bRs +bSb +bLW +bTH +bUp +bVe +bUp +bWI +bXr +bKQ +udl +bZK +abI +abI +abI +abI +aaa +aaa +aaa +uaO +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +hyh +aaa +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(136,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +acv +aaa +aaa +aaa +acF +acN +acV +acV +acV +adF +acU +acU +acU +acU +acU +acU +acU +afm +afB +afT +acU +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqO +arV +asY +aud +auZ +awg +axl +aaa +axi +aAH +aAH +aCV +aAH +aAH +aAH +aAN +aAN +aIc +aGV +aJP +anX +aMa +aNy +aOI +aPQ +anX +aSb +aSV +aNj +aVn +aWr +aXo +aYm +aUf +baq +bbx +bcv +bah +beH +aPE +bgz +aJI +aDZ +bip +bKM +bkp +blA +bmJ +bnL +boU +cCl +cCl +cCl +cCl +bqb +bxh +bqb +fRs +fRs +bAo +bAo +fRs +bBp +bHm +bIy +bJG +bKP +bLX +bMZ +bOh +bOP +bPO +bRz +bRt +bSc +bSQ +bTI +bUq +bVf +bMf +bWJ +bXs +bJN +cui +bJP +bJP +bJP +bJP +bJP +abI +abI +aht +pBJ +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +dsz +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(137,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +acU +acU +acU +acU +acU +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqP +arW +asZ +aue +apT +awh +axk +abI +awd +aAI +aBH +aCW +aDZ +aAN +aFC +aGz +aAN +aId +aDZ +aJR +anX +anX +aNz +aOJ +anX +anX +aKT +aSW +aKT +aUf +aUf +aXp +aUf +aUf +aPE +aPE +bcw +bdy +aPE +aPE +aDZ +aJI +aDZ +biq +bGa +bkq +blB +bkn +bnM +bsU +bqd +brv +cqk +but +bsU +bxi +byJ +bAt +bBw +bCK +bDG +bEW +bAt +bHg +cqw +cqD +bKO +bLW +bNa +bOi +bOQ +bPP +bQG +bRu +bSd +bTO +bTJ +bMf +bMf +bMf +bMf +bXt +bYp +eAZ +bZL +caz +cbs +cbs +bJP +aaa +aaa +aaa +uaO +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +hyh +aaa +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(138,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acO +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +abI +aaa +aaa +aaa +abI +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBU +lcZ +lcZ +apT +apT +apT +apT +apT +apT +awi +axk +awd +awd +aAJ +aBI +aCX +aBI +aES +aBI +aBI +aEY +aHG +aBI +aJX +aBI +aMb +aNA +aOK +aMb +aRd +aMb +aSX +aUi +aVo +aMb +aXq +aMb +aZh +bar +aMb +aSX +aMb +aBI +aEY +bgA +bhe +aDZ +bip +bKM +bkr +blC +cqe +bnN +byC +bqe +byC +cql +byC +bvA +bxj +hiY +bAt +bBx +bCL +bDH +bEX +bGb +bHn +bIA +bJH +bJN +bJN +bNb +bOj +bPQ +bRx +bRA +bSS +bST +bJN +bTK +bMf +bMf +bMf +bMf +bXu +bLW +cui +bMi +caA +cbt +ccm +bJP +aaa +aaa +aaa +pBJ +swg +hyh +pBJ +hyh +pBJ +hyh +pBJ +hyh +cdm +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(139,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +lcZ +apW +apV +apU +aqQ +arX +ata +auf +ava +awj +axm +ayh +azq +aAK +aBJ +aCY +aEa +aEa +aEa +aEa +aHm +aIe +aJc +aJY +aEa +aEa +aJY +aOL +aPR +aPR +aPR +aPR +aUj +aJI +aDZ +aHN +aDZ +aDZ +aDZ +bby +aDZ +aDZ +aDZ +aGV +aDZ +bhh +bhM +bir +bBo +bks +blD +bko +bko +bko +bqf +bko +bsV +buu +bvB +bxk +byK +bAt +bBy +bCM +bDI +bEY +bGc +bHo +bRX +cqE +bJN +bLY +bNc +bOk +bPQ +bRy +hka +bQH +bSe +bPQ +bTL +bMf +bMf +bMf +bWM +bXv +bVh +poP +bZL +caB +cbs +cbs +bJP +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(140,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBU +aoB +apr +apV +aqR +arY +atb +aug +cBU +awk +axn +axn +axn +aAL +aAL +aCZ +aAL +aAL +aAL +aAL +aGU +aCZ +aJd +aJZ +aAL +aMc +aNB +aOM +aPS +aRe +aMc +aHE +aUk +aJZ +aMc +aXr +aMc +aZi +aMc +bbz +aMc +aPS +aAL +aGU +aAL +aJZ +aAL +bis +aAN +bkt +bkt +bku +bkt +bkt +bkt +bku +bkt +bkt +bvC +bxl +cqt +bAu +bAu +bAt +bAt +bAu +bAu +bHp +cqx +bJJ +bKQ +bLZ +bNd +bOl +bOT +bPR +bPQ +bPQ +bQI +bPQ +rNi +bMf +bMf +hjk +pmB +bXw +dJk +cui +bJP +bJP +bJP +bJP +bJP +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(141,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aaa +lcZ +apU +apV +apW +aqS +arZ +atc +auh +avb +awl +awd +abI +awd +aAM +aBK +aDa +aEb +aAM +aFD +aDa +aAN +aIf +aJe +aKa +aLe +aLe +aNC +aON +aLe +aLe +aPW +aSY +aUl +aUs +aPW +aLf +aLf +aLf +aLf +aLf +aEj +aEj +aEj +aEj +bgB +aJI +aDZ +aHN +bjm +bku +blE +bmL +bnO +boX +bqg +brw +bsW +bku +cqp +bxm +byL +bAv +bsU +cqk +bsU +bsU +bGd +bHq +bIC +bJK +bJN +bMa +bNe +bOm +bOU +bPS +bSf +bUp +bTM +bUp +bTN +bMf +bMf +bVZ +bOX +bUA +bYp +eAZ +bZL +caC +cbu +cbu +bJP +aht +aht +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +aht +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(142,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiT +plA +oMN +akf +gxe +akf +eqD +oMN +vlF +tvj +aiT +aaa +cBU +lcZ +lcZ +cBU +cBU +asa +atd +aui +avc +awm +awd +abI +axi +aAN +awd +awd +aAN +aAN +awd +awd +aAN +aIg +aJf +aKb +aLe +aMd +aND +aOO +aPT +aRf +aSc +aSZ +aOT +aVp +aWs +aPW +aYn +aZj +bas +aLf +bcx +bdz +aFi +bfu +aDZ +aJI +bhP +aHN +bjm +bkv +blF +bmM +bmM +bmM +bqh +brx +bsX +buv +bvE +bxn +byM +bAw +bBz +cqv +bBz +bBz +bBz +bHr +bID +bJL +bKR +bMb +bNf +bQJ +bOV +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bOX +bXx +bVi +cui +bMi +caD +cbv +ccn +bJP +aaa +aaa +fon +shH +shH +shH +shH +shH +shH +shH +shH +shH +shH +fon +aaa +aht +shH +shH +fon +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(143,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +qPB +iqc +ngp +cBr +cBs +tap +gna +klV +xbJ +aiS +aaa +aaa +aaa +aaa +aaa +cBU +cBU +cBU +cBU +cBU +awd +axi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awd +aHN +aIU +aJI +aLe +aMe +aNE +aOP +aPU +aRg +aSd +aTa +aOT +aVq +aWt +aXs +aYo +aVu +bat +aLf +bcy +qAM +aEj +aEj +bgC +bhi +bhQ +bip +bjm +bku +blG +bmN +bnP +bnP +bqi +bmM +bsY +bku +bvF +bxo +byN +bAx +bko +bko +bko +bko +bko +bHs +bBA +bJM +bJN +bMc +bNg +bOn +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVY +bUs +bVg +bVm +poP +bZL +caE +cbu +cbu +bJP +aht +aht +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +aaa +aht +shH +fon +fon +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(144,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +aiS +aiS +aiS +epJ +uaC +cBv +cBw +gNv +nnh +sqh +aiT +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awd +aHN +aIU +aJH +aLe +aMf +aNF +aOQ +aPV +aRf +aSc +aSZ +aUm +aVp +aWu +aXt +aYp +aPY +bau +aLf +aFi +aFi +beI +beI +bgD +bhj +beI +bit +beI +bkt +blH +bmO +bnQ +bnQ +bqi +bry +bsZ +bkt +bvG +bxp +byO +bAy +bBB +bCN +bDK +bEZ +bGe +bHt +bIE +bJN +bJN +bMd +bPT +bOn +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bOX +kas +bNm +cui +bJP +bJP +bJP +bJP +bJP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(145,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +cBk +jhD +cBo +alQ +xjg +cBw +noC +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +aiS +aiS +aiS +aiS +apX +avd +avd +apX +ayi +ayi +apX +aBL +aBL +apX +aET +rYC +aET +aET +aHN +aIU +aJI +lAs +lAs +iKb +aOR +iKb +lAs +lAs +aTb +aOT +aVp +aWu +aXu +aYq +aPY +bav +aLf +aFi +jBh +beI +bfv +bgE +bhk +bhR +biu +bju +bkt +blI +bmO +bnQ +bnQ +bqi +brz +bta +bkt +bvH +bxq +byP +bAy +bBo +bCO +bBo +bCO +bBo +bCO +bBo +bJN +bKS +bMe +bNh +bOo +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bWO +bXA +bQO +poP +bZM +caF +cbw +cby +bJP +aaa +aaa +aaa +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(146,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiU +jHP +aju +ajt +alQ +mnG +tap +tap +aiS +anY +apt +sbk +aiS +alP +cBB +apu +ale +ale +asb +coe +apX +ave +awn +apX +ayj +azr +apX +aBM +aDb +apX +oFo +jOB +qbZ +aET +aHN +aIU +aJI +lAs +aMg +aNH +aOS +aPX +aRh +aSe +aTc +aOT +aVp +aWu +aPW +aYr +aOV +baw +bbA +bcz +bdB +beI +bfw +bgF +bhl +bhS +bhS +bhS +bkw +blJ +bmP +bnR +bnR +bqj +brA +btb +bkt +bvI +bxr +byQ +bBo +aaa +aht +aht +aaa +aht +aht +aaa +bJN +bKT +bWM +bNi +bQK +bOZ +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bMf +bXB +bNm +cui +bMi +caG +cbx +cco +bJP +aht +aht +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(147,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +kkk +akh +alc +alR +amF +pzF +tap +anm +ajv +ajv +aju +ajv +cBA +aiS +akn +apX +apX +asc +atf +apX +avf +awo +apX +ayk +azs +apX +aBN +aDc +apX +aET +cor +aET +aET +hFy +aJh +bhe +lAs +aMh +aNI +fwl +dMB +aRi +aSf +aTd +aUn +aVr +aWu +aLf +aYs +aZk +bax +aLf +aFi +bdC +beI +bfx +bgG +bhm +bhT +biv +biv +bkt +blK +bmQ +bmM +bmM +bmM +brB +btc +bkt +bvJ +bxs +byR +bAA +bAA +bCP +bAA +bCP +bAA +bCP +bAA +bHw +bKU +bOr +bPU +bRw +bPa +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVY +bWP +bXy +bQO +poP +bZN +caH +cby +cby +bJP +aaa +aaa +aaa +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(148,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +cBl +cBm +cBp +alS +amG +mnG +cPO +aiS +aiS +aiS +aiS +aiS +aiS +aiS +akn +apX +aqT +asd +atg +auj +avg +awp +apX +ayl +azt +apX +aBO +aDd +apX +aEU +aFE +aGA +aHn +aIi +aJi +aKe +klb +aMi +aNJ +fwl +aPZ +aRj +lAs +aTe +aUo +aVs +aWv +aLf +aPW +aZl +aPW +aLf +aLf +bdC +beI +bfy +bgH +bhn +bhU +biw +biw +bkt +blL +bmR +bnS +boZ +bqk +brC +btd +bkt +bvK +bxt +byS +bAA +bBC +bDN +bDL +bFa +bGf +bCR +bIF +bHw +bKV +bOX +bUv +bQL +bPa +bMf +bMf +bMf +bMf +bSU +bTT +bUv +bKX +bTR +bUt +bXC +bYs +bVW +bYw +bYw +cBT +bYw +bYw +bYw +aht +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(149,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +akg +aiS +aiS +akg +aiS +aiS +aiS +aob +eaw +ajv +ajv +cnX +aiS +apv +apX +aqU +ase +ath +apX +atf +awq +apX +atf +azu +apX +atf +aDe +apX +aFF +vuP +aGB +aET +aHN +aIU +aJI +lAs +aMj +aNK +fwl +dMB +dMB +iKb +aTf +aUp +aVt +aVt +aVt +aVt +aZm +aPY +bbB +aLf +bdD +beI +bfz +bgI +bho +bfz +beI +beI +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bvL +bxu +byT +bAB +bBD +mzE +bDM +bFb +bGg +bHu +bIG +bJO +bKW +bMg +bNj +bOp +bPV +bPV +bPV +bPV +bPV +bUw +bUw +bUw +bVj +bTS +bUu +bXD +bYt +bZf +bZO +caI +cbA +ccp +cdg +cbz +aaa +aaa +mau +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(150,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +wMF +cBn +cBq +ajv +ajv +iEU +aiS +akj +ale +ale +ale +ale +ale +ale +apw +apX +aqV +asf +ati +auk +avh +awr +axo +aym +awr +aAO +aBP +com +apX +aET +lKL +aET +aET +aHN +aIU +aJI +lAs +aMk +aNL +aOU +aQa +aRk +aSg +aTg +aUq +aVu +aPY +aPY +aPY +aZn +aPY +bbC +aLf +bdC +beI +bfA +bgJ +bhn +bhV +beI +aKq +bkx +blM +bmS +bnT +bpa +bql +brD +bte +buw +bvM +bxv +byU +bAA +bBE +bCQ +bCR +bGh +bGh +bCR +bIH +bHw +cqG +bOX +bNk +bOq +bPd +bPW +bPW +bPW +bPd +bPW +bPW +bPW +bPd +bUr +bWQ +bXE +bYu +bZg +bZP +caJ +cbB +ccq +cdh +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(151,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +aiS +aiT +aiT +aiS +aiS +aiS +cBx +aiS +aiS +aiS +aiT +aiT +aiT +aiS +apX +cod +asg +atj +apX +avi +aws +coi +aBQ +aDf +aDf +aBQ +con +cop +aEW +kIO +aGC +cos +coy +aJj +aJI +lAs +aMl +aNM +dse +aQb +aRl +aSh +aTh +aUr +aVv +aWw +aXv +aYu +aOT +aPY +bbD +aLf +bdD +beI +beI +beI +bhp +beI +beI +bjv +bkx +blN +bmT +bnU +bpb +bqm +brE +btf +bux +bvN +bxw +byV +bAA +bBF +bCQ +bDO +bCR +bCR +bCR +bII +bHw +bKY +bMh +bNl +bQM +bPe +bPX +bSR +bRB +bSh +bSV +bTP +bUy +bVk +bWb +bUz +bXF +bYv +bZh +bZQ +caK +cbC +ccr +cdi +cec +ceA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(152,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiT +akl +aiT +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +apX +apX +apX +avj +awt +axp +ayn +azv +col +aBR +coo +apX +aGV +aDZ +aGD +aDZ +aDZ +aJk +aJH +lAs +aMm +lAs +aOW +lAs +lAs +lAs +eeQ +aUs +aLf +eex +aLf +aLf +aUl +baz +aLf +aLf +bdE +bcz +bcz +bcz +bhq +aNR +bix +ygZ +bkx +blM +bmU +bnT +bpc +bqn +brF +bkx +buy +bvO +bxx +byW +bAA +bBG +xEx +bDP +bFd +bGi +bHv +bIJ +bHw +bKZ +bOR +bWR +bWc +bPf +bPY +bQO +bPY +bPf +bPY +bQO +bWc +bVl +bWc +bWR +bXG +bYw +bZi +bZR +caL +cbD +bYw +cdj +bYw +bYw +aaa +gYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(153,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajx +akm +alf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +aul +avk +awu +axq +ayo +azx +aAP +avk +aDg +aEc +aEY +cot +aBI +aBI +aBI +aJl +aKf +lAs +aMn +lAs +aOX +lAs +aRm +aLg +aTi +aUt +aVw +aWx +aXw +aYv +aZo +aTm +bbE +bbE +bbE +bbE +bbE +bbE +aEj +aEj +biy +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bod +bvP +bxy +byX +bAA +bAA +bCS +bDQ +bCS +bAA +bHw +bHw +bHw +bLa +abI +bNn +abI +bLa +abI +bNn +abI +bLa +abI +bNn +abI +bLa +abI +bNn +abI +aht +bZj +bZS +caM +cbE +thA +cdk +ced +bYw +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(154,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajy +akn +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ash +ash +ash +avk +awv +axr +ayq +azy +aAQ +avk +aDh +aEd +aEd +aEd +aEd +aEd +aIj +aJm +aKg +cDa +aMo +cDa +cDa +cDa +cDa +aLg +wDZ +aUu +aVx +aVx +aVx +aYw +aZp +aZt +bbF +bcA +bdF +beJ +bfB +dps +aZv +aUC +biz +bjw +bky +blP +bmV +bnV +bpd +bqo +brG +btg +fjs +bvQ +bxz +byY +bAC +bBH +bCT +bDR +bCT +bGj +buz +abI +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +aaa +bYw +bZT +caN +bZT +bYw +cdl +oGw +bYw +aaa +mau +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(155,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajy +ako +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqY +asi +atk +izB +avk +awv +axt +coj +cok +ayr +aBS +aDi +aEd +aEZ +aEZ +aEZ +aEd +aEd +aJn +aEd +aEd +aMp +aNN +aOY +aQc +aRn +aSi +aTk +aUv +aVy +aWy +aXx +aYx +aZq +baA +bbG +bcB +bdG +beK +bfC +bbE +aTx +aEj +aTx +bjw +bkz +blQ +bmW +bnW +bpe +bqp +brH +brH +buA +bvR +bxA +byZ +bAD +bBI +bCU +bDS +bwb +bGk +buz +abI +bJP +bLc +bMj +bNo +bJP +bPg +bPZ +bQP +bJP +bSj +bSW +bTV +bJP +bVn +bWe +bWT +bJP +aht +bYw +bZU +caO +cbF +bYw +gmZ +bYw +bYw +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(156,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajy +akn +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +asj +atl +aum +avk +awv +axu +ays +azA +avk +avk +aDj +aEe +aFa +aFG +aGF +aGF +aGF +aFI +aKh +aEd +aMq +aNO +aOZ +aQd +aRo +aSj +aTl +aUw +aTm +aTm +aTm +aYy +aZo +baB +bbH +bcC +bdH +beL +bfD +bbE +aTx +aEj +aTx +bjw +bkA +blR +bmX +bnX +eSL +bqq +bpf +bth +wBb +bvS +bwa +bza +bAE +bBJ +bBJ +bDT +bFf +bGl +buz +abI +bJP +bLd +bOS +bLe +bJP +bPh +bQa +bPh +bJP +bSk +bSX +bSk +bJP +bVo +bWf +bVo +bJP +aht +bYw +igB +caP +fRr +qVk +cdm +cdm +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(157,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajz +akk +alh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +apX +avl +fIu +epj +aIh +azA +dbi +dbi +aDk +aEd +aFb +aFH +aGG +aHo +aIk +aJo +aGF +aEd +aMr +aNO +aPa +aNO +aRp +aSk +aTm +aUt +aVz +aWz +aVz +aYz +aZo +baC +bbI +bbI +bdI +bdI +bdI +bbI +bhr +bbI +aTx +bjw +bkB +blS +bmY +bnY +bpg +bqr +bqs +bti +wBb +bvT +bxC +bzb +bAF +bAF +bCV +bDU +bCV +bAF +bHy +aaa +bJP +bLe +bMk +bLe +bJP +bPh +bQb +bPh +bJP +bSl +bSY +bSk +bJP +bVo +bWg +bVo +bJP +aaa +bYw +bYw +caQ +bYw +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(158,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akp +aiT +aaa +aaa +aaa +aaa +aaa +aaa +aaF +aaF +aaF +aaF +atn +atn +aww +axv +ayt +azB +axv +axv +atn +aEd +aEd +aFI +aGH +aEd +aEd +aEd +aKi +aEd +aMs +aNO +aPb +aQe +cDa +cDa +aTn +aUx +aVA +aTm +aTm +aTj +aZr +baD +bbI +bcD +bdJ +beM +bfE +bgK +bhs +bbI +aTx +bjw +bjw +bjw +bjw +bjw +bph +eYr +bqs +brJ +wlK +bvU +bxD +bzc +bAF +bBK +bCW +bDV +bFh +bGm +bHy +aaa +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +abI +aaa +bYw +caR +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(159,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +cBy +aiS +aaF +aaF +aaJ +aaJ +aaJ +aaF +aaF +abw +abz +abH +abl +axw +abg +axw +ayu +azC +axw +aBT +atn +aEf +aFc +aFI +aGF +aHp +aIl +aEd +aKj +aEd +aMt +aNP +aPb +aNO +aNP +tLP +aTq +aSk +aTm +aTm +aTm +aYy +aZs +baE +bbJ +bcE +bdK +beN +bfF +bgL +bht +bbI +biC +pdW +bjw +blT +bmZ +bnZ +bpi +edl +bqs +btk +buB +eNq +eNq +urP +bAF +bBL +bCW +bDW +kmn +bGn +bHy +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +abI +nbu +hbl +nbu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(160,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +ajv +aaH +aaN +abc +abm +abm +abq +abm +abm +abA +abT +abK +abL +abM +abP +abR +azC +axw +aBU +atn +aEg +aFd +aFJ +aGF +aEd +aEd +aEd +aEd +aEd +aMu +aNO +aPc +aQf +aRq +cDa +aTp +aSk +aTm +aTm +cCB +aYA +aZt +aZp +bbK +bcF +bdL +beO +bfG +bgM +bhu +bbI +aFi +aTx +bjw +blU +bna +bqs +bqs +bqt +brK +btl +dkR +bvV +cxt +bzd +wnJ +bBM +bCX +bDX +bFi +bGo +bHy +aaa +aby +aaa +aby +aaa +aby +aaa +aaa +bzy +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +ckK +ckK +ckK +cju +ckK +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(161,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaE +aaF +aaR +aaL +aaO +aaO +aaO +aaO +aaO +aaW +aaF +abb +abd +abh +abQ +abS +azD +aAS +aat +atn +aEh +aFe +aFI +aGF +aHq +aIl +aEd +aKk +aLh +aMv +aNQ +aNO +aQg +aNP +cDa +aTq +aSk +aVB +aWA +aXy +aYB +cCT +baF +bbI +bcG +bdM +beP +bfH +bfH +bhv +bbI +aEj +bjx +bjw +blV +bnb +bqs +bqs +bqt +brL +btl +buC +bvW +bxG +bze +vTN +bBN +bBN +bDY +bFj +bGp +bHy +abI +aby +aht +aby +aht +aby +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +ckK +cju +cju +cju +ckK +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(162,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaG +aaF +aaS +aaL +abn +aaO +aaO +aaO +aaO +aaW +aaY +aba +axw +abg +axw +axw +axw +axw +aBW +atn +aEd +aEd +aFK +aEd +aEd +aEd +aEd +cCX +cDa +cDa +cDa +coL +coL +coL +cDa +aTr +aUy +aPd +aUy +aXz +aLg +aLg +aLg +bbI +bbI +bbI +bdI +bfI +bdI +bbI +bbI +aGP +bjx +bjw +blW +bna +pbI +bqs +bqt +brM +btl +gDZ +bvV +bxH +bzd +wnJ +bBO +bCZ +bDX +bFk +bGq +bHy +aaa +aby +aaa +aby +aaa +aby +aaa +aaa +aaa +acO +aby +aby +aby +aaa +acO +aby +bzy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(163,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaF +aaS +abj +aaO +aaO +aaO +aaO +aaO +aaW +aaY +awB +abe +abi +axw +axw +axw +axw +aBX +atn +aEi +aEd +aFL +aGI +aHr +aEd +aJp +cCY +aLi +aMw +aEj +aaa +aaa +aaa +aLg +aTs +aUz +aPd +aWB +aXA +aLg +aaa +aaa +aaa +aaa +aaa +bdI +bfJ +bdI +aaa +aEj +pKd +bjx +bjw +qDJ +vmG +bnZ +pDP +nBL +bqs +xgG +cKA +bvY +bvY +fkH +bAF +bBP +bCW +bDX +bFl +bGr +bHy +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(164,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaI +aaS +aaL +abo +aaO +abr +aaO +aaO +abB +atn +atn +avm +avm +axy +avm +avm +axy +avm +avm +atn +atn +aFM +aGJ +aGJ +aDl +aEk +cCZ +aLj +aMx +aEj +aaa +aaa +aaa +aLg +aTr +sQt +aPd +sQt +aXz +aLg +aaa +aaa +aaa +aaa +aaa +bdI +oPy +bdI +aaa +aEj +aEj +bjx +bjw +bjw +uAZ +boe +boe +bqv +bqs +brJ +buD +bvZ +bxJ +tAK +bAF +bBQ +bDa +bEa +bFm +bGs +ubW +ubW +xIx +bHy +bHy +bHy +bOs +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(165,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaK +aaS +aaL +aaO +aaO +aaO +aaO +aaO +abC +atn +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aEd +aEd +aEd +aEd +aEj +aEj +aKq +aJs +aEj +aaa +aaa +aaa +aaa +aaa +aUA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bfK +aaa +aaa +aaa +aEj +obj +aLi +tim +eXo +bof +boa +bqw +brH +btp +buE +bwa +efu +bzh +bAF +bBR +bDb +bEb +bFn +bGt +bHz +bIM +bJQ +bIM +bMl +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +ckK +clF +cju +cju +ckK +ckK +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(166,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaI +aaS +aaL +aaO +aaO +aaO +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFN +aGK +aHs +aEj +aJq +aKn +aKn +aMy +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aFi +bjw +nJI +bog +bpo +lAR +bqs +bti +buF +bwb +bxK +bzi +bAF +bBS +bDc +bEc +bGu +bGu +bGu +bIL +bJR +bLf +bMm +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +ckK +cju +cju +cju +cju +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +cju +cju +ckK +cju +cju +cju +ckK +clv +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(167,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaF +aaT +aaL +aaO +aaO +aaO +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFO +aGL +aHt +aEj +aJr +aEj +aLk +aLk +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aEj +bjw +xPa +boh +bpp +bqx +bqs +brJ +buG +bwc +bxL +bzj +bAF +bBT +bDd +bEd +bFp +bGv +bHA +bIM +bJS +bIM +bMn +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +cju +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(168,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +ajv +aaF +aaU +aaL +aaO +aaO +abs +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFP +aGM +aFi +bfu +aJs +aKo +aLl +aMz +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aFi +bkD +vxp +boc +bnc +tdp +oDP +bts +buH +bjw +bjw +bjw +bHy +bHy +bHy +bHy +bHy +bGw +nsD +rPW +kfh +bHy +bHy +bHy +bOs +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjv +cju +cju +cju +cju +ckK +cju +cju +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +clv +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(169,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +aaQ +aaF +aaV +aaM +aaP +aaP +abt +aaP +aaP +abD +atn +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFQ +aGN +aGN +aEj +aJt +aFi +aFi +aEj +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aEj +bjw +bjw +bjw +bjw +bkF +brR +btt +brR +bkF +ldQ +lNW +mSc +sci +bwm +glf +bFr +qtA +khk +bIN +dAF +bCV +bCV +bCV +bOu +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +cjv +cjv +cjx +cjx +cjx +cju +cju +ckK +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +ckK +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(170,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +sbk +aaF +aaX +aaZ +aaZ +abk +abp +abu +abx +abE +atn +atn +avm +avm +vzz +avm +avm +vzz +avm +avm +atn +atn +aEj +aEj +aEj +aEj +aJs +aKp +aFi +aMA +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +aEj +aEj +aEj +aEj +aEj +aEj +aEj +oTl +vzP +vzP +iWV +aFi +bpq +bnj +brT +bxF +wkZ +bnj +bwm +bwm +lWy +gXg +bwm +pNy +bFs +bGx +bHC +cxb +bJT +wOS +bMp +bPl +bcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ahi +cjw +cjV +ckt +cjx +cjx +cjx +cju +cju +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(171,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +ajv +aaF +aaF +aaF +aaF +aaF +aaF +aaF +aaF +abF +aaF +aiS +atn +awC +axz +ayw +azE +aAT +aBY +atn +aEj +aFf +hUt +aFi +aFi +aFi +aJs +aFi +aFi +aFi +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +bdQ +beR +aUC +aUC +eCw +aUC +aUC +qHI +aKq +aEj +wAI +vzP +vzP +bqA +brU +bxF +buK +dqw +spz +spz +spz +wFT +bwm +veM +bFt +bGy +bHD +fBz +gMm +bCV +bCV +bCV +ahi +aht +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +ahi +cjx +cjx +cjx +cjx +cjx +cjx +cjx +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +cjx +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(172,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aaD +ale +ale +ale +ale +ale +ale +ale +abv +ale +abG +ale +ale +avn +awD +axA +ayx +azF +aAU +aBZ +aDl +aEk +aEk +aEk +aEk +aEk +aEk +aJv +aKn +aKn +aMB +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +aTx +aEj +aKq +aEj +gfi +aEj +bkF +bkF +bkF +bkF +bkF +bkF +bkF +bkF +brV +ume +bkF +bkF +bkF +bkF +bxP +nev +hgD +bEf +bFu +noM +bHE +bJV +bLh +bMq +aht +aht +aaa +aht +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +ahi +cjx +cjx +cjx +ckL +cjx +clj +cjx +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +ckK +ckK +clv +clv +clv +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +cjx +cnp +cnq +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(173,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +atn +atn +avm +avm +avm +avm +atn +atn +aEj +aEj +aEj +aEj +aHu +aEj +aEj +aKq +aEj +aJs +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aTx +aFi +aFi +aEj +bhz +lEn +pnU +pnU +bnd +taT +lWH +wfs +pfP +bqC +brW +vMx +ofN +gdL +iLl +bkF +bwm +xlA +bwm +bAF +bAF +bGA +bAF +bAF +bAF +bAF +bAF +uaO +dsz +xQk +hxI +xQk +hxI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +ahi +cjx +cjx +cjx +cjx +cjx +cjx +cjx +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +cju +cju +cju +cjx +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(174,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +abI +abI +aEj +aFg +aFR +aGO +aFi +aGO +aFi +aFi +aEj +aJs +aEj +aEj +aEl +aEl +aEl +aEl +aEj +aEj +aht +ccs +aEj +aEl +aEl +aEj +aEj +aTx +aFi +aFi +aEj +bjD +lEn +uwb +bjB +bkH +mql +bpn +hEX +brO +bzg +brX +csu +xzp +ugC +gdJ +bkF +lWy +cDB +lWy +tSL +lWy +bAG +bwm +rBh +gjv +tfx +xlg +mJp +nqu +mJp +nqu +tlp +ilE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ahi +cjw +cjx +cjx +ckt +cjx +cjx +cju +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(175,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aEj +aFh +aEj +aGP +aEj +aIp +aEj +aEj +aEj +aMC +aNR +aNR +aNR +aNR +aNR +aTu +aUB +aEl +aaa +aEj +aZv +aUC +aUC +bcH +aUC +aZw +beS +aFi +aEj +gfi +lEn +biD +biD +bnd +tdB +bpn +thW +bpn +bqE +brW +btu +xpr +ihk +pXg +bkF +kPi +cDB +hxn +uvq +bFx +bIP +bNq +tSL +hMx +tfx +xlg +mhK +wIo +mhK +mhK +mhK +hyh +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +cjv +cjv +cjx +cjx +cjx +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(176,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aFi +aEj +aEj +aEj +aIq +aJw +aKr +aEj +aMD +aPf +aQj +aRs +aLi +aSl +aTv +aGO +aEj +aEj +aEj +aTx +aFi +aGO +bcI +aFi +aFi +aFi +bfM +aEj +bhz +lEn +vYN +vYN +bnd +blZ +mQm +ilD +edJ +bqF +brW +btv +nuv +ihk +cPT +bkF +syQ +cDB +rFq +obP +bFy +bGB +bwm +bwm +bwm +rNB +bwm +bwm +rNB +bwm +rNB +bwm +cdm +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjv +cju +cju +cju +cju +cju +cju +ckK +cju +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +ckK +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(177,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aFi +aEj +aaa +aEj +aEl +aEj +aEj +aLm +aLm +aLm +aQk +aRt +aLm +aLm +aTw +aUC +aVE +aUC +aUC +aZw +aEj +aEj +hSM +aEj +aEj +kIo +bfN +aEj +gfi +aEj +bkF +bkF +bkF +xWl +hPN +nxT +ueP +ost +nOY +dgz +jxl +tXn +hfZ +bkF +kkQ +rKL +lWy +lWy +bFz +bIR +fwr +eMC +bwm +aht +bwm +ikB +iVJ +lWy +typ +bwm +aht +aby +aht +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +ckK +ckK +cju +ckK +cju +cju +ckK +ckK +cju +ckK +cju +cju +cju +ckK +cju +ckK +cju +cju +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(178,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bZV +aEj +aaa +aaa +aaa +aaa +aLn +aNT +xer +aQo +aPg +aRu +srZ +aLm +aTx +aEj +aEj +aEj +aEj +aYC +baG +cfQ +bcJ +mvm +baG +aEj +aEj +aEj +bhB +fwI +fwI +bjE +bkF +bnj +bnj +bnj +bnj +brR +qVP +qtF +jwe +brR +bnj +bkF +bkF +bkF +bkF +bwm +bwm +bwm +bwm +lQn +bwm +rNB +bwm +wTO +hPU +xsO +rEh +rNB +aaa +aby +aaa +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +ckK +ckK +cju +cju +ckK +cju +ckK +ckK +ckK +clv +ckK +ckK +cju +cju +cju +ckK +ckK +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(179,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +aaa +aaa +aaa +aaa +aaa +ahi +ahi +ahi +aaa +aaa +aaa +aaa +aLm +aLm +aNU +phS +dqY +aRv +sZh +aLm +aTx +aEj +aav +aFi +aFi +aFi +baG +bbL +bcK +bdR +baG +bfP +bfP +aEj +aEj +aEj +aKq +gfi +bkF +blX +blX +bpr +oSc +bsa +btw +buI +bwe +bxM +bzk +bAH +blX +blX +bkF +kgR +bFB +bwm +svN +bIQ +uek +lWy +bwm +qnT +lJr +lWy +maW +bwm +aht +aed +aht +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(180,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aME +eFG +phS +dqY +aRw +sqQ +aLm +aTy +aEj +aEj +aHu +aEj +aEj +baG +bbM +bcL +bdS +baG +kKI +aFi +hOz +aEj +oRX +biF +bjF +bkF +bnh +blX +blX +kNf +bsb +btw +buJ +bwe +bxN +bzl +blX +bBU +bDe +bkF +dMO +lWy +rxQ +lWy +bIQ +lWy +lWy +mES +lWy +lWy +lWy +lWy +bwm +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +ckK +ckK +cls +ckK +ckK +cju +cju +ckK +cju +cju +ckK +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(181,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLo +aMF +aNV +phS +cvf +aQn +sqQ +aSm +aTz +aEj +aVG +aFi +aFi +aYD +baG +rWE +uXH +rWE +baG +eZA +tDn +aFi +nZw +aFi +gfi +aFi +bkF +bni +blX +blX +hvW +igE +btx +dxc +bwf +bxO +bzm +blX +blX +blX +bkF +hTl +bFC +bwm +nzD +uoj +bwm +lWy +bwm +dMI +lWy +lWy +jDA +bwm +aht +aby +aht +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(182,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLo +aMG +aNX +phS +xer +aRy +aSn +aSn +aTA +aEj +aVH +aFi +aXC +aYE +baG +rWE +oCX +rWE +baG +vzT +gUb +aFi +aEj +gSI +gfi +bfM +bkF +bnj +bnj +bnj +bnj +bnj +itl +buL +cuc +bnj +bnj +bnj +bnj +bnj +bkF +bwm +bwm +bwm +bIQ +bwm +bwm +bwm +bwm +oEG +ndI +lWy +cDB +rNB +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(183,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aMH +aNY +aPi +aQp +aRz +daY +aSo +aTB +aEj +aVI +aFi +aXC +aYF +baG +sut +oCX +rWE +baG +dsv +dLY +xyl +aEj +aKq +gfi +ybX +bkF +blX +blX +bpr +bqG +bsa +btw +buM +bwh +bxM +bzn +bAH +blX +blX +bkF +qIO +jXA +bwm +bIQ +hXt +bwm +aht +bwm +hFp +abf +abf +ijU +bwm +aht +aed +aht +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(184,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aLm +aLo +aLm +aLo +aLm +aLm +aLm +aLm +aEj +aEj +aEl +aEl +aEl +baG +rWE +atZ +rWE +baG +aEj +aEj +aEj +aEj +aEj +ntj +bfM +bkF +bnh +blX +blX +bqH +bsb +btw +buN +bwe +bxQ +xxO +blX +bBU +bDe +bkF +dmP +bFD +bwm +gxK +pWF +bwm +aht +bwm +bwm +rNB +bwm +rNB +bwm +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(185,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +abI +aaa +aaa +abI +abI +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +ybX +bkF +bni +blX +blX +bqI +bsc +btx +buO +bwf +bxR +bzp +blX +blX +blX +bkF +aaA +lWy +fKj +lWy +bIQ +bwm +aed +aaa +aht +aaa +aht +aaa +aed +aaa +aaa +cFB +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(186,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +fNv +bkF +bnj +bnj +bnj +bnj +bnj +bsf +buQ +buU +bnj +bnj +bnj +bnj +bnj +bkF +sZu +lWy +bwm +bwm +bIQ +bwm +aby +aht +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(187,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +bfM +bkF +blX +blX +bpr +bqJ +bsa +gIG +buN +bwe +bxM +bzq +bAH +blX +blX +bkF +wfc +sAK +bwm +hXt +bIQ +rNB +aby +aaa +aed +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(188,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +ybX +bkF +bnh +blX +blX +bqK +bsd +gIG +buN +bwe +bxS +bzr +blX +blX +bDe +bkF +bwm +bwm +bwm +bwm +bIQ +bwm +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(189,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +bBW +aaa +aEj +aEj +ntj +fNv +bkF +blX +blX +blX +bqL +bse +xjT +btE +buW +bxT +bzs +blX +blX +blX +bkF +ueV +heC +uug +cDB +bIQ +bwm +bwm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(190,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +cFB +aaa +aEl +bnl +gfi +aFi +bkF +bkF +bkF +bkF +bkF +bkF +bkF +qdi +bkF +bkF +bkF +bkF +bkF +bkF +bkF +doo +efU +eMC +cDB +dVJ +jDA +rNB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(191,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEl +iCe +vsk +lje +rxa +bnl +bok +aFi +aFi +aEj +btA +uXG +mtI +bwm +kFu +tSL +cDB +cDB +aad +dtm +bwm +jFw +xpD +jQh +bwm +bwm +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(192,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEl +wOf +bhB +fwI +eCK +wQU +xah +fwI +fwI +bqO +btB +btF +gIC +bwn +vRi +dKs +oKa +rgn +jRG +gmp +bwm +rNB +bwm +bwm +bwm +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(193,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEj +aEj +aEj +aEl +aEj +bnn +bom +aEj +bkF +bkF +xKc +vgp +oBb +bkF +bkF +bwm +bwm +bwm +euQ +vuQ +bwm +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(194,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aEj +aEj +aEl +bkF +bkF +kFD +eIL +mTS +pMG +iPz +sXR +sXR +pwS +bwm +vtl +bwm +bwm +aaa +aby +aht +aed +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(195,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aed +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnd +kRK +cPy +dir +mTS +ufa +oNE +oep +bnd +mlr +sEB +jEX +rui +bwm +aht +aby +aht +aby +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(196,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnd +qcD +xxw +lhA +lFh +ufa +taA +qcH +bnd +nNN +bwm +lWy +bwm +bwm +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(197,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcR +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +bnd +qYq +sNz +nqV +oSL +hUJ +riW +jtf +bnd +aht +bwm +vHf +bwm +aaa +aht +aby +aht +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(198,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +beU +abI +aby +aaa +bnd +lGS +nIm +oEW +iuM +wXu +cOp +lGS +bnd +aaa +ahi +ahi +ahi +aht +aaa +aed +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(199,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +aTE +aaa +aby +aaa +bkF +dmT +tqX +nEb +pWm +uvo +mMz +dmT +bkF +aaa +aaa +aaa +aaa +aby +aht +aby +aht +aby +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(200,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +bkF +bkF +bkF +pbR +blX +naq +bkF +bkF +bkF +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(201,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aed +aht +bkF +blX +blX +blX +blX +blX +blX +blX +bkF +aht +aed +aht +aed +aaa +aaa +aed +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(202,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +xKc +blX +blX +iPj +tfP +iPj +blX +blX +xKc +aaa +aby +aaa +aht +aaa +aaa +aby +aaa +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(203,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aby +aaa +bkF +blX +blX +blX +tuy +blX +blX +eQR +bkF +aaa +aby +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(204,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +bkF +bkF +bkF +xKc +bkF +xKc +bkF +bkF +bkF +aaa +aed +aaa +aby +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(205,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +ajA +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(206,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aed +aby +aby +aby +aby +aby +aby +aed +aby +aby +aht +aby +aht +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(207,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aed +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(208,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(209,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(210,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(211,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aed +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(212,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(213,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(214,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcT +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(215,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcU +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(216,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(217,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aby +aby +aby +aby +aby +aby +aby +aby +aby +cFB +bcQ +cFB +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(218,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +bcV +abI +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(219,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +cFB +abI +cFB +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(220,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(221,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(222,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(223,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(224,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(225,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(226,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(227,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(228,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(229,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(230,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(231,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(232,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(233,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(234,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(235,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(236,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(237,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(238,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(239,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(240,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(241,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(242,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(243,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(244,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(245,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(246,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(247,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(248,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(249,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(250,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(251,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(252,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(253,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(254,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(255,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC "} From 27ecbdd6f149d41b6790e762bcd2b8501402b2d8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:22:14 -0800 Subject: [PATCH 109/165] why did i do this --- code/modules/mob/say_vr.dm | 89 ++++++++++++++++++++++++++++++++++---- 1 file changed, 80 insertions(+), 9 deletions(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 471bd9939e..76c45b5d0e 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -86,15 +86,6 @@ proc/get_top_level_mob(var/mob/S) else if(!params) var/subtle_emote = stripped_multiline_input_or_reflect(user, "Choose an emote to display.", "Subtler" , null, MAX_MESSAGE_LEN) if(subtle_emote && !check_invalid(user, subtle_emote)) - var/type = input("Is this a visible or hearable emote?") as null|anything in list("Visible", "Hearable") - switch(type) - if("Visible") - emote_type = EMOTE_VISIBLE - if("Hearable") - emote_type = EMOTE_AUDIBLE - else - alert("Unable to use this emote, must be either hearable or visible.") - return message = subtle_emote else return FALSE @@ -111,6 +102,77 @@ proc/get_top_level_mob(var/mob/S) user.visible_message(message = message, self_message = message, vision_distance = 1, ignored_mobs = GLOB.dead_mob_list, omni = TRUE) +///////////////// SUBTLE 3: DARE DICE + +/datum/emote/living/subtler_table + key = "subtler_table" + key_third_person = "subtler_table" + message = null + mob_type_blacklist_typecache = list(/mob/living/brain) + +/datum/emote/living/subtler_table/proc/check_invalid(mob/user, input) + if(stop_bad_mime.Find(input, 1, 1)) + to_chat(user, "Invalid emote.") + return TRUE + return FALSE + +/datum/emote/living/subtler_table/run_emote(mob/user, params, type_override = null) + if(!locate(/obj/structure/table) in range(user, 1)) + to_chat(user, "There are no tables around you.") + return FALSE + if(jobban_isbanned(user, "emote")) + to_chat(user, "You cannot send subtle emotes (banned).") + return FALSE + else if(user.client && user.client.prefs.muted & MUTE_IC) + to_chat(user, "You cannot send IC messages (muted).") + return FALSE + else if(!params) + var/subtle_emote = stripped_multiline_input_or_reflect(user, "Choose an emote to display.", "Subtler" , null, MAX_MESSAGE_LEN) + if(subtle_emote && !check_invalid(user, subtle_emote)) + message = subtle_emote + else + return FALSE + else + message = params + if(type_override) + emote_type = type_override + . = TRUE + if(!can_run_emote(user)) + return FALSE + + user.log_message("[message] (TABLE-WRAPPING)", LOG_SUBTLER) + message = "[user] [user.say_emphasis(message)]" + + var/list/show_to = list() + var/list/processing = list() + var/safety = 25 + for(var/obj/structure/table/T in range(user, 1)) + if(safety-- <= 0) + to_chat(user, "Table scan aborted early, some people might have not received the message (max 25)") + break + if(get_dist(T, user) > 7) + continue // nah + processing |= T + for(var/mob/M in range(T, 1)) + show_to |= M + var/obj/structure/table/other + other = locate() in get_step(T, NORTH) + if(other) + processing |= other + other = locate() in get_step(T, SOUTH) + if(other) + processing |= other + other = locate() in get_step(T, WEST) + if(other) + processing |= other + other = locate() in get_step(T, EAST) + if(other) + processing |= other + + for(var/i in show_to) + var/mob/M = show_to + M.show_message(message) + ///////////////// VERB CODE /mob/living/verb/subtle() set name = "Subtle" @@ -128,3 +190,12 @@ proc/get_top_level_mob(var/mob/S) to_chat(usr, "Speech is currently admin-disabled.") return usr.emote("subtler") + +///////////////// VERB CODE 3 +/mob/living/verb/subtler_table() + set name = "Subtler Around Table" + set category = "IC" + if(GLOB.say_disabled) //This is dumb but it's here because heehoo copypaste, who the FUCK uses this to identify lag? + to_chat(usr, "Speech is currently admin-disabled.") + return + usr.emote("subtler_table") From b885abb69dd761d80404fadec12dacbfc8b222c5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:28:10 -0800 Subject: [PATCH 110/165] okay --- code/modules/mob/say_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 76c45b5d0e..2123400816 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -170,7 +170,7 @@ proc/get_top_level_mob(var/mob/S) processing |= other for(var/i in show_to) - var/mob/M = show_to + var/mob/M = i M.show_message(message) ///////////////// VERB CODE From 97be4a5d12b5361caf3835863e9f7211ab41635a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 17:34:31 -0700 Subject: [PATCH 111/165] Update say_vr.dm --- code/modules/mob/say_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 2123400816..11fd42c3b1 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -153,7 +153,7 @@ proc/get_top_level_mob(var/mob/S) if(get_dist(T, user) > 7) continue // nah processing |= T - for(var/mob/M in range(T, 1)) + for(var/mob/living/M in range(T, 1)) // no ghosts/cameramobs show_to |= M var/obj/structure/table/other other = locate() in get_step(T, NORTH) From 36125c609d64e69a3d58d7933c419662da84cc99 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 18:41:31 -0800 Subject: [PATCH 112/165] ily putnam --- code/modules/mob/say_vr.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 2123400816..5eb8dae286 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -147,6 +147,9 @@ proc/get_top_level_mob(var/mob/S) var/list/processing = list() var/safety = 25 for(var/obj/structure/table/T in range(user, 1)) + processing |= T + for(var/i in processing) + var/obj/structure/table/T = i if(safety-- <= 0) to_chat(user, "Table scan aborted early, some people might have not received the message (max 25)") break From 0cd0770549067924f78223674a6f639dfd7b0a3c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:32:12 -0800 Subject: [PATCH 113/165] fix --- code/datums/elements/flavor_text.dm | 22 +++++++++++++++++++ code/modules/mob/living/carbon/human/human.dm | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index ae139104f0..128496abf5 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -13,6 +13,8 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/save_key /// Do not attempt to render a preview on examine. If this is on, it will display as \[flavor_name\] var/examine_no_preview = FALSE + /// Examine FULLY views. Overrides examine_no_preview + var/examine_full_view = FALSE /datum/element/flavor_text/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key, _examine_no_preview = FALSE) . = ..() @@ -30,6 +32,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code always_show = _always_show can_edit = _edit save_key = _save_key + max_length = _max_length examine_no_preview = _examine_no_preview RegisterSignal(target, COMSIG_PARENT_EXAMINE, .proc/show_flavor) @@ -71,6 +74,9 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code examine_list += "\[[flavor_name]\]" return var/msg = replacetext(text, "\n", " ") + if(examine_full_view) + examine_list += "[msg]" + return if(length_char(msg) <= 40) examine_list += "[msg]" else @@ -113,6 +119,18 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/datum/element/flavor_text/F = choices[chosen] F.set_flavor(src) +/mob/proc/set_pose() + set name = "Set Pose" + set desc = "Sets your temporary flavor text" + set category = "IC" + + var/list/L = GLOB.mobs_with_editable_flavor_text[src] + var/datum/element/flavor_text/carbon/temporary/T = locate() in L + if(T) + to_chat(src, "Your mob type does not support temporary flavor text.") + return + T.set_flavor(src) + /datum/element/flavor_text/proc/set_flavor(mob/user) if(!(user in texts_by_atom)) return FALSE @@ -167,3 +185,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code texts_by_atom[user] = "" if(user.dna) user.dna.features[save_key] = "" + +/datum/element/flavor_text/carbon/temporary + examine_full_view = TRUE + max_len = 1024 diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 3aa26de5cf..43ec23db18 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -43,7 +43,7 @@ AddComponent(/datum/component/mood) AddComponent(/datum/component/combat_mode) AddElement(/datum/element/flavor_text/carbon, _name = "Flavor Text", _save_key = "flavor_text") - AddElement(/datum/element/flavor_text, "", "Temporary Flavor Text", "This should be used only for things pertaining to the current round!") + AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!") AddElement(/datum/element/flavor_text, _name = "OOC Notes", _addendum = "Put information on ERP/vore/lewd-related preferences here. THIS SHOULD NOT CONTAIN REGULAR FLAVORTEXT!!", _always_show = TRUE, _save_key = "ooc_notes", _examine_no_preview = TRUE) /mob/living/carbon/human/Destroy() From 5bd20acc1dbadb27da47dd1e573a49f60cce82f8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:44:37 -0800 Subject: [PATCH 114/165] fix --- code/datums/elements/flavor_text.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 128496abf5..0a9171a90a 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -32,7 +32,6 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code always_show = _always_show can_edit = _edit save_key = _save_key - max_length = _max_length examine_no_preview = _examine_no_preview RegisterSignal(target, COMSIG_PARENT_EXAMINE, .proc/show_flavor) @@ -40,7 +39,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code if(can_edit && ismob(target)) //but only mobs receive the proc/verb for the time being var/mob/M = target LAZYOR(GLOB.mobs_with_editable_flavor_text[M], src) - M.verbs |= /mob/proc/manage_flavor_tests + add_verb(M, /mob/proc/manage_flavor_tests) if(save_key && ishuman(target)) RegisterSignal(target, COMSIG_HUMAN_PREFS_COPIED_TO, .proc/update_prefs_flavor_text) @@ -189,3 +188,10 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code /datum/element/flavor_text/carbon/temporary examine_full_view = TRUE max_len = 1024 + +/datum/element/flavor_text/carbon/temporary/Attach(datum/target, text, _name, _addendum, _max_len, _always_show, _edit, _save_key, _examine_no_preview) + . = ..() + if(. & ELEMENT_INCOMPATIBLE) + return + if(ismob(target)) + add_verb(target, /mob/proc/set_pose) From fa6537a092239f65c9cebc9ebd55d64c8114deb7 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:53:38 -0800 Subject: [PATCH 115/165] fix --- code/datums/elements/flavor_text.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 0a9171a90a..769ea5510b 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -124,7 +124,10 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code set category = "IC" var/list/L = GLOB.mobs_with_editable_flavor_text[src] - var/datum/element/flavor_text/carbon/temporary/T = locate() in L + var/datum/element/flavor_text/carbon/temporary/T + for(var/i in L) + if(istype(i, /datum/element/flavor_text/carbon/temporary)) + T = i if(T) to_chat(src, "Your mob type does not support temporary flavor text.") return @@ -195,3 +198,8 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code return if(ismob(target)) add_verb(target, /mob/proc/set_pose) + +/datum/element/flavor_Text/carbon/temporary/Detach(datum/source, force) + . = ..() + if(ismob(source)) + remove_verb(target, /mob/proc/set_pose) From 1c06dd92c2740d8e7dbc19d0462a6c5a827ad8f1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:55:17 -0800 Subject: [PATCH 116/165] fix --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 769ea5510b..81aa8f40e0 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -202,4 +202,4 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code /datum/element/flavor_Text/carbon/temporary/Detach(datum/source, force) . = ..() if(ismob(source)) - remove_verb(target, /mob/proc/set_pose) + remove_verb(source, /mob/proc/set_pose) From 3535916fd86f2b6d27c4bf55631d11cf3d595c22 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 22:02:56 -0800 Subject: [PATCH 117/165] fix --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 81aa8f40e0..4b6ebff666 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -128,7 +128,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code for(var/i in L) if(istype(i, /datum/element/flavor_text/carbon/temporary)) T = i - if(T) + if(!T) to_chat(src, "Your mob type does not support temporary flavor text.") return T.set_flavor(src) From 6beb47ef6d545939f42c1e96d3d6960a4ebc4839 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Sun, 27 Dec 2020 02:46:00 -0400 Subject: [PATCH 118/165] re-removed bedsheet on morgue tray --- _maps/map_files/BoxStation/BoxStation.dmm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 8762726c1c..e870074812 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -53735,10 +53735,6 @@ /obj/structure/bodycontainer/morgue{ dir = 8 }, -/obj/item/bedsheet/medical{ - pixel_x = 3; - pixel_y = 9 - }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "edj" = ( From 81fe7f42306201d2c20c6ab73259212ac0206a16 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Sun, 27 Dec 2020 03:01:29 -0400 Subject: [PATCH 119/165] returned access to Starboard Emergency Storage --- _maps/map_files/BoxStation/BoxStation.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index e870074812..92e5596382 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -54092,8 +54092,8 @@ /turf/open/floor/carpet, /area/crew_quarters/dorms) "eUy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage" }, /turf/open/floor/plating, /area/storage/emergency/starboard) From a8f1960c5b66d75f7ca259839cdbc010819b83cc Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 27 Dec 2020 01:14:12 -0600 Subject: [PATCH 120/165] disregard the branch name --- _maps/map_files/BoxStation/BoxStation.dmm | 5 +++-- _maps/map_files/Deltastation/DeltaStation2.dmm | 4 ++++ _maps/map_files/LambdaStation/lambda.dmm | 4 ++++ _maps/map_files/PubbyStation/PubbyStation.dmm | 10 +++++++++- _maps/shuttles/whiteship_box.dmm | 1 + 5 files changed, 21 insertions(+), 3 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 87178c32f3..4cf04bb6f5 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -37315,8 +37315,9 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "bKk" = ( -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver{ + amount = 2 + }, /obj/effect/turf_decal/stripes/line{ dir = 10 }, diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 071a9b4fef..e907602d59 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -32964,6 +32964,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, /obj/effect/turf_decal/bot, +/obj/item/stack/ore/silver{ + amount = 2 + }, +/obj/item/stack/ore/iron, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) "biu" = ( diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm index 71f3ed6b1a..50e08dfae4 100644 --- a/_maps/map_files/LambdaStation/lambda.dmm +++ b/_maps/map_files/LambdaStation/lambda.dmm @@ -19827,6 +19827,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/item/stack/ore/silver{ + amount = 2 + }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) "aJC" = ( @@ -20222,6 +20225,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/item/stack/ore/iron, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) "aKq" = ( diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index b053c5176c..91c31887a6 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -61209,6 +61209,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) +"vzp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/item/stack/ore/iron, +/obj/item/stack/ore/silver{ + amount = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) "vzz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -103631,7 +103639,7 @@ bbI bcG bdM beP -bfH +vzp bfH bhv bbI diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 3ac1d18ac4..c892bab447 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -1560,6 +1560,7 @@ /area/shuttle/abandoned/bridge) "cc" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, From e98e73279cd7cc62612c44f669e1c0cb35c1cfb6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 06:48:51 -0600 Subject: [PATCH 121/165] Automatic changelog generation for PR #13846 [ci skip] --- html/changelogs/AutoChangeLog-pr-13846.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13846.yml diff --git a/html/changelogs/AutoChangeLog-pr-13846.yml b/html/changelogs/AutoChangeLog-pr-13846.yml new file mode 100644 index 0000000000..68e013acf0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13846.yml @@ -0,0 +1,4 @@ +author: "DeltaFire15" +delete-after: True +changes: + - balance: "Fleshmend, Anatomic Panacea and bloodsucker healing now work for Synths / IPCs." From d1dc5ae419c279d760dcb8fc500b00caf5fbbde3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 06:50:40 -0600 Subject: [PATCH 122/165] Automatic changelog generation for PR #13881 [ci skip] --- html/changelogs/AutoChangeLog-pr-13881.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13881.yml diff --git a/html/changelogs/AutoChangeLog-pr-13881.yml b/html/changelogs/AutoChangeLog-pr-13881.yml new file mode 100644 index 0000000000..0ad2d3afc8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13881.yml @@ -0,0 +1,4 @@ +author: "BlueWildrose" +delete-after: True +changes: + - rscadd: "PubbyStation now has two Christmas Tree spawners." From 67d9e7993491c8d3fa80c70b0af503193db8f7a6 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 05:27:46 -0800 Subject: [PATCH 123/165] fix --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 43ec23db18..03816555b3 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -43,7 +43,7 @@ AddComponent(/datum/component/mood) AddComponent(/datum/component/combat_mode) AddElement(/datum/element/flavor_text/carbon, _name = "Flavor Text", _save_key = "flavor_text") - AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!") + AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!", _save_key = null) AddElement(/datum/element/flavor_text, _name = "OOC Notes", _addendum = "Put information on ERP/vore/lewd-related preferences here. THIS SHOULD NOT CONTAIN REGULAR FLAVORTEXT!!", _always_show = TRUE, _save_key = "ooc_notes", _examine_no_preview = TRUE) /mob/living/carbon/human/Destroy() From ec2df686c3e992dbe0edfa177ad55968fa35d8bf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 05:31:58 -0800 Subject: [PATCH 124/165] maybe --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 4b6ebff666..6217665157 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -155,7 +155,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/static/list/i_dont_even_know_who_you_are = typecacheof(list(/datum/antagonist/abductor, /datum/antagonist/ert, /datum/antagonist/nukeop, /datum/antagonist/wizard)) -/datum/element/flavor_text/carbon/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key = "flavor_text", _examine_no_preview = FALSE) +/datum/element/flavor_text/carbon/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key, _examine_no_preview = FALSE) if(!iscarbon(target)) return ELEMENT_INCOMPATIBLE . = ..() From e0c928a74562391f52f085193e04e58bc094e5cc Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 06:57:15 -0700 Subject: [PATCH 125/165] Update respawn.dm --- code/modules/mob/dead/observer/respawn.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index f966051ed3..94ebf42a2a 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -155,16 +155,18 @@ penalize = client.prefs.respawn_restrictions_active client.prefs.respawn_restrictions_active = penalize - to_chat(src, "You have been respawned to the lobby. \ + message_admins("[key_name_admin(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") + log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") + var/mob/dead/new_player/N = transfer_to_lobby() + + to_chat(N, "You have been respawned to the lobby. \ Remember to take heed of rules regarding round knowledge - notably, that ALL past lives are forgotten. \ Any character you join as has NO knowledge of round events unless specified otherwise by an admin.") - message_admins("[key_name_admin(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") - log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") - transfer_to_lobby() - /** * Actual proc that removes us and puts us back on lobby + * + * Returns the new mob. */ /mob/dead/observer/proc/transfer_to_lobby() if(!client) // if no one's in us we can just be deleted @@ -179,3 +181,4 @@ var/mob/dead/new_player/M = new /mob/dead/new_player M.ckey = ckey + return M From d06c82ae6433090d2073bc50a21736e658867a1d Mon Sep 17 00:00:00 2001 From: HeroWithYay Date: Mon, 28 Dec 2020 03:21:41 +1300 Subject: [PATCH 126/165] It has the wrong description, fixing it. --- code/datums/diseases/advance/symptoms/flesh_eating.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm index 774d97202e..b2b71c9a8e 100644 --- a/code/datums/diseases/advance/symptoms/flesh_eating.dm +++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm @@ -31,9 +31,8 @@ Bonus var/bleed = FALSE var/pain = FALSE threshold_desc = list( - "Resistance 9" = "Doubles the intensity of the immolation effect, but reduces the frequency of all of this symptom's effects.", - "Stage Speed 8" = "Increases explosion radius and explosion damage to the host when the host is wet.", - "Transmission 8" = "Additionally synthesizes chlorine trifluoride and napalm inside the host. More chemicals are synthesized if the resistance 9 threshold has been met." + "Resistance 7" = "Erodes the host's skin, causing them to bleed profusely.", + "Transmission 8" = "Eat's away at the host's musclemass, causing increased fatigue." ) /datum/symptom/flesh_eating/Start(datum/disease/advance/A) From 3e3ca7c8a76d169e19f433f4f50c1d86aa841f39 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 11:24:13 -0600 Subject: [PATCH 127/165] Automatic changelog generation for PR #13873 [ci skip] --- html/changelogs/AutoChangeLog-pr-13873.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13873.yml diff --git a/html/changelogs/AutoChangeLog-pr-13873.yml b/html/changelogs/AutoChangeLog-pr-13873.yml new file mode 100644 index 0000000000..320a5b69a4 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13873.yml @@ -0,0 +1,4 @@ +author: "BlueWildrose" +delete-after: True +changes: + - tweak: "Nyctophobia quirk now has some light lag compensation." From 798b1b50f43a9473d03fa6d39257f7fd2d49b222 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:38:07 -0700 Subject: [PATCH 128/165] Update plushes.dm --- code/game/objects/items/plushes.dm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 9bc20565a6..5b0a593267 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -33,6 +33,8 @@ //--end of love :'(-- var/snowflake_id //if we set from a config snowflake plushie. + /// wrapper, do not use, read only + var/__ADMIN_SET_TO_ID var/can_random_spawn = TRUE //if this is FALSE, don't spawn this for random plushies. /obj/item/toy/plush/random_snowflake/Initialize(mapload, set_snowflake_id) @@ -112,10 +114,21 @@ return ..() +/obj/item/toy/plush/vv_get_var(var_name) + if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) + return debug_variables("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) + return ..() + +/obj/item/toy/plush/vv_edit_var(var_name, var_value) + if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) + return set_snowflake_from_config(var_value) + return ..() + /obj/item/toy/plush/proc/set_snowflake_from_config(id) var/list/configlist = CONFIG_GET(keyed_list/snowflake_plushies) var/list/jsonlist = configlist[id] - ASSERT(jsonlist) + if(!jsonlist) + return FALSE jsonlist = json_decode(jsonlist) if(jsonlist["inherit_from"]) var/path = text2path(jsonlist["inherit_from"]) @@ -151,6 +164,7 @@ var/datum/component/squeak/S = GetComponent(/datum/component/squeak) S?.override_squeak_sounds = squeak_override snowflake_id = id + return TRUE /obj/item/toy/plush/handle_atom_del(atom/A) if(A == grenade) From d4f94724ece7855fffd3b22f1c6018d4556767e4 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:51:44 -0700 Subject: [PATCH 129/165] Update plushes.dm --- code/game/objects/items/plushes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 5b0a593267..3588b7be63 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -116,7 +116,7 @@ /obj/item/toy/plush/vv_get_var(var_name) if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) - return debug_variables("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) + return debug_variable("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) return ..() /obj/item/toy/plush/vv_edit_var(var_name, var_value) From 5e269c327a65c7379dd548927892e2bbd72aec49 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:53:11 -0700 Subject: [PATCH 130/165] Update space.dm --- code/game/turfs/space/space.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index b150d4930e..765c88842e 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -163,6 +163,8 @@ while (pulling != null) var/next_pulling = pulling.pulling + if(next_pulling == pulling) + break // no loops var/turf/T = get_step(puller.loc, turn(puller.dir, 180)) pulling.can_be_z_moved = FALSE From 952f5f87162bd0de8c21f7253338a3dc49395be5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:32:14 -0700 Subject: [PATCH 131/165] Update drug_reagents.dm --- code/modules/reagents/chemistry/reagents/drug_reagents.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 44b6e85f47..0b44c33926 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -171,11 +171,13 @@ /datum/reagent/drug/methamphetamine/on_mob_metabolize(mob/living/L) ..() - L.ignore_slowdown(type) + ADD_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type) + L.update_movespeed() ADD_TRAIT(L, TRAIT_TASED_RESISTANCE, type) /datum/reagent/drug/methamphetamine/on_mob_end_metabolize(mob/living/L) - L.unignore_slowdown(type) + REMOVE_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type) + L.update_movespeed() REMOVE_TRAIT(L, TRAIT_TASED_RESISTANCE, type) ..() From c25c6b01d7341b711697c2bedf8dcbc709388f59 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:41:07 -0700 Subject: [PATCH 132/165] Update atmospherics.dm --- code/__DEFINES/atmospherics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index dad2a38afd..f51eb53cee 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -115,7 +115,7 @@ #define MAX_HIGH_PRESSURE_DAMAGE 16 // CITADEL CHANGES Max to 16, low to 8. #define LOW_PRESSURE_DAMAGE 8 //The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). -#define COLD_SLOWDOWN_FACTOR 20 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this +#define COLD_SLOWDOWN_FACTOR 50 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this //PIPES //Atmos pipe limits From 50de8d7590e36903c0833e7deb61048f5c65f6be Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:43:21 -0700 Subject: [PATCH 133/165] Update atmospherics.dm --- code/__DEFINES/atmospherics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index f51eb53cee..7bb124fe0f 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -115,7 +115,7 @@ #define MAX_HIGH_PRESSURE_DAMAGE 16 // CITADEL CHANGES Max to 16, low to 8. #define LOW_PRESSURE_DAMAGE 8 //The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). -#define COLD_SLOWDOWN_FACTOR 50 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this +#define COLD_SLOWDOWN_FACTOR 35 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this //PIPES //Atmos pipe limits From ad9fc238e7aa5bdcf824b9a45a06184d832567a3 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:19:37 +0800 Subject: [PATCH 134/165] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 12829ed0e7..d61d842ece 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -873,9 +873,9 @@ /obj/item/clothing/head/helmet/space/hardsuit/lavaknight name = "cydonian helmet" desc = "A helmet designed with both form and function in mind, it protects the user against physical trauma and hazardous conditions while also having polychromic light strips." - icon_state = "knight_cydonia" + icon_state = "hardsuit0-knight_cydonia" item_state = "knight_yellow" - hardsuit_type = null + hardsuit_type = knight_cydonia max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | LAVA_PROOF heat_protection = HEAD From b51a2e939ea11df4e982c4d232a002f7155c7d90 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:21:52 +0800 Subject: [PATCH 135/165] Update miscellaneous.dm --- code/modules/clothing/spacesuits/miscellaneous.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index dd46d7a5bb..2ffe85b6c4 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -256,7 +256,7 @@ Contains: helmettype = /obj/item/clothing/head/helmet/space/hardsuit/ert/alert armor = list("melee" = 70, "bullet" = 55, "laser" = 50, "energy" = 50, "bomb" = 65, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100, "wound" = 50) resistance_flags = FIRE_PROOF | ACID_PROOF - mutantrace_variation = STYLE_DIGITIGRADE|STYLE_SNEK_TAURIC + mutantrace_variation = STYLE_DIGITIGRADE|STYLE_SNEK_TAURIC|STYLE_PAW_TAURIC //ERT Security /obj/item/clothing/head/helmet/space/hardsuit/ert/alert/sec From b70ddb91024e7d41e564c4e2499ddfb22ba2337a Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:23:12 +0800 Subject: [PATCH 136/165] Add files via upload --- icons/mob/clothing/head.dmi | Bin 232775 -> 232832 bytes icons/mob/clothing/head_muzzled.dmi | Bin 84460 -> 84776 bytes icons/mob/clothing/taur_canine.dmi | Bin 131870 -> 138694 bytes icons/mob/clothing/taur_naga.dmi | Bin 124916 -> 128491 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index 889888ef0a65a366dd5c973bea882a38fae47a9a..62d6644311cd46fb0182208ccdb1ad20a64d8e35 100644 GIT binary patch delta 36727 zcmYg%1y~ec)b|pC(kdk>pn@PJBF!S8s7Q%)w{&+5NViy^G>CL}E-6TNr^M3D63gy< zga7w^pKqUsnYl4@&pqed6Tf@u{6XfQNcNEpm-t%TeG$O&ivfagm~~ZiEwIX^Y)itY zbZDJ-v9k{Wpa=EVR#|3fB*YKVsOp&b=qI^W;+}k+BH1J&z`h=$8geZNdP;7G`P_h;=)6a?yx&Ve08Zc;n75igjlS!_ zuJAO*#PJS=xYSc8*0z@uB5_&<4`puPt;tvP1IkOb1ClmkX8H?sdvR6Yjx~EIvnJKZ zolFHMi$MSS;``NpIZQTNf8G_#Z~b9lM$@vLEXCR3;XOWMIw-XlaXJ}N6mi>akrZ)@ z;gU6^(z{iQ&>C{Y=lE- zI65?g$H>1F^!(-2hYR2x{oNWyW7*Mk4<5tM7O3%#U97Q$XWTJQ_J^A<_4H{<8=`sq z^g5H<3kQ0YrJufMcp~5gt9C*)=Z-yemOXvf)177c2lod?Om6WynJ%SPa{IL(u6L0D zUZK6Hz}avlEY)oB+a)9Uxxs+aHwnEfac8gYAq}YCvZkwzyM{Jo>kC+K=Y}H*EzbTpK5pZLx^>=AcI0+zRs66OEb$N0&W$P%0v9FLv3U8zQ4NWRZYq>u8{tzWCqfkqKrV%OS_q#I{gHl;%9qRl+nv!J#$Rv2`w}p zw@I3wG=@EwzDPd2Htb(4rHR866jCS<_8~Qkz_jAc588yaQ>i;5-xcBS>@l$#s8CQ;ri=^ZvK1D0ON8dVfAM=UxT;SGt8QEbUc3D%{(!U`Blx}I4A4+qp=6~EmkRqd>Qu40`+d23iL6&OzOChsI*E7; ztPS;vFO7vFhuVhk`gK#1Q*M7%KQ*y;xE^(XLCs$5C)-@AIW3#e{m801j?TRrOZWlQa3=@1}GFZMO^OBYcBS*6MBll#dHj zg5+ovz2xXg;L6P2x$*${C;O%y8O8}mh2mS+-W3(b+yv6>SoppY)u{Y3^jhnsD%fMl z!kvHn^CeXfYiK%d%IETefLuevv*#aia^kguXkjkdyABRF`Pq<0U9~Tg{omW&;gk6M zv!clUh=N?d-@k~2mE%cwxD-dQ`h77`(k3=n_r7BG)$&M`Z`mq3eUUs|LC$WD?YO^~ z*R=EX5b0Kop;)^|z~}O7tbpnxn`%Z-Rbe)>y*P>3WOr#@$(#*u4X8@#z1hn_7hxKp zyYT&WldLy_;JwzPTJ-UG&!K#dK$J-9&)k5&bRka!Lk?jHQe^6VZPppw`u-VG!2)?S+?~p5B0cy`_uOuGoNtPTevwI?{;u%oK<%p zysu{3X!!0-N{3RRVW^<J{!`7qRf>N8X2I zH;Q?$zYHIY+7)(scIzoI(En$wu;4XUrLXC-@OZebyxLZfsYX1WbepXFjnIs$p062B zd5O>O^+^q#yfwW~=-!!qY4-Fh9H_(2+x{kdou$#P#V2Yi{nxWtDhD4!6vCy_d7A?# z;FF1qo&jCX>WxSe&kx2LHy$`Vr#kd_uijhi@Dkh9(72V_)E~gMB?0hXBuq!X@G0%* zaTBKFw(L^r5BQ78%bxMp6OvpWOP-O|?-E=!S-(!TuJ>7z`Iev8@>mnSWu5HSJTVh*|B`G3v4=R9y6g``=q2L z$)xOz4GZ4qWejFml;y^E)z)SkVb6<}8lN=AM>CAuH%6x~pPcz@zIx@warlGuA^lf@ zAk?tBY%zKFB@Hz!hCx_J;&Wy9oxF&L{myL%?*eT_m87=1*~fbodVVUXq*ZL+?Pog@ z_vn^zaZW|x-FNcAeGE{&328ajj1wrf&u;ytv?*-j{_4f5-jYsLfiCC1pn~e!w}wvX zSzQxUXP6>3$HML2~p!eo$bx!P+4A!*2vfqu#>=8{+6cr1Oe*E=P?Y?!y=9uy? zb}>$^Wx;N`-;~t(+ZIF>>V-I#?1DiPFbC4m*B^Dq{+J$5IQ(J-s)=5_efX9q_qC(~ zmA0+gO!}tkv1_EL8Rw=~&h&OmaNd|_AR$%qfm6|lmi=`@xB!lenuTZU{&J0!kZ_7F z!S-fiav;T8$2kl$e}7@ZUPG>a&bbTrmDTj3PqCG9Pk@H&X3ppD$-%GxayP`?&S$@S zqj}y~6<%JQ7AY%24!oZnpz1mhH& zO|;q6o`k<$n&v5P7#hU26s+cw`<>uM*fLdMAkPrjbz7#~U+TudO-b$GmqY-L-0&Kk ze%7^=pNUN>18Fj`t54gQDkQQs>D|ul35p}zqo_-paY}+Fs+xe92^OIddPWLr(&X;i zukuP+Eq@;gFpWGBU?OTYSfV0j8>>H`k-8TBC1=ZR<`H}7Y>3kw({C~n`7Oeyl=yeL zl6o3UW&Dk`S7JWH)bj23XHF(s<{yt|8ra`~_eF^*?e`YP-wA*Ihw>5e`rnrG4;>0L zN_V9=fdgFJAcKA{^9HwTL5||?L=AFY5A3g%uZC#)tD?I8JQMlMmVF|y*Y!v6rRKlu z_etR<{3_Z>R=K0N&(>u{om_Z0ylqLzt0~R5u33fRHbgHK`W@$t$0jadFI|tem=SQ0 z+#a{=n-9sYu|Q7ZP)=f;YEEL@t#c!P{OhcD-uO*4~ z`^*>96erf=ou_y=-FbZU=g*z^xM3U#fYRkY$ic-WPnmUJv)be_Ijf-H*!xly-!}fF zSM=6%c8RsrurIM}P!E{DyKVAB>esLLhhsXmss-vP3Eufylc+V)cT#*Jmofkwt+!IZ zpF5W0JF`aLanuZASWYyTY0K&?a0e%Vz3Dn6=&6G-Ak_2~2?-vHHc1$JW)A}YUg{`P z-a?&ba^mGRF|_4%J8Yqn)6HPVCkype{aZ>eUs8PTXDYMfwI3lSBxfQ?xNstYBk~+c z0MP~FE8L*;1 z3`YC-EeE3<3SbX`!S<%}wx;_4QN4R9dKPp2)&eiQ!Q=woPQHw-2V1DM2$eO@j^zZ< zrS7V$XfgP?nnb1c=YiY$JHr*3izaMR5pU<qiU?}>3wOdtXIEes$-ZvbrP_O|!)x)HpAI8)KSI=<7} z@CugZ!vOVoe8gM~4GCP%UN1G;d$Hx_gc#Dq=vp?9#+#gN_q^RgDNM-0n$2RD%QXBg z%*?_^N8h=~i2FSZNvHoC_v43EBj4yVg8gc$iDjc9Qu0VUj@R;1uU|(DJDNhBzkC5G zuLSRE&s8L+qWz(2E8av(ncmdxA^wMH4usv_MQ&~`R1x-F2=AFK!v-*YAWXSHg?F$_ zf7j0k57Gn6t*g3xy8}J`mtsuWjo>R4^Zg{sYjPK^rq7#r^Z9v zYA(kARFw_AG>m$ZU$oU?jCapgDW3m2-W{NGxWw3)-|fxqNq&XJbCZh;@Urwt{%%Bg zhX*zRi*+Zni`RIEn4?rh8a%@L={gSh z1kw0)*W?Tr)9!I4jHtj@$4z4|9#%iF&L>Y`Io=vcZFg1rz4$F^%R&CPtB3E!XWA!a z{AucH?t?EEPd1daU5mXR69C0Zz*|c_u_>@f#rETbIZ54%O2?m|Ugq@OLzKmkU|uu| z+XHLLLz7f69Y4_~_o558n0S~TT$3IfACkx6k`ZBY3k_Of+TncQiqo*(6&{ciz^K$QWT@f(2_$))| zQjnGs14F$tH&#BzTfYrNQ}u4<0P@|2BoThFn}J7s92YpVpB`&oaT%L#d3Jeh;_$pb zl*>u-A{6-bZ!#E}k%GF^R6i2vp+XNltG&s}S<2X76(I#FzVHkuu1fe0pPyY&)y0k6 z1M!P((+Y_Z8mL$~7H=|H;?B1FD!Pqae?5}9VUUI%W!I45$rn`9;5efpwViBYR(PZ7f``{?e)o#Q7o7ZJBup0V}>rUrS{mAHJN+(H#7s*d>fq} z)vYn}X-Ls5PzA1&M^+RzeLES6>HNL~;2EqV7*x}a;U@`qq~tJc+B2KhT35>M6l$i8 z^hpPu-UJMT!DHqy3CHIZRbvxn*rU$j{jJ@mF+k*()CLHdxK%>3g_BKm6dBh&x|-hbt{Jg-{nUUJcEnSl2iN{B-KGz6st|DlU=yW-?rgJ4FL2 z%&}V%gAhsbxXr}XY?)n;eFZM<7l|?PCT{@=!axG&of85W>@Mt;?6Y^|wtYi>f@_d9CA3YG=^(0U%wu%BI;Xp!tqyghP31_)|$Eb@IJjGSV^A4v!`MW)k*h< z`r71m?YBu1pf%qOAR56OxOGYaya!8Y2s+dA2u@r>!C`1%yjR=-g^y+q!@yO%31AKx zC=zsWF8KJ;t_Z})!dLTwkE=xMi;IQ~lC~*gK6KZ~$i}OP8jFg^q)Zf`{IJivf7NHQ z^H&53JaG%8`99UHk={*J;&@QXQ7i~xDjKRNp=WIk7Q7NGuYpjjd1oG^457g$5ZvQ~ zHCPhOuLM`A*2r~yOF^eAddq9Ei2YvK)qLeuqDjfNfIxs04oGTR&W~3TiA?BPn~fc( zkdHMWb^p!p>@BFGZkqCl%NP_qF$h`s(+Gs9eeYoEwEpm$!yx#PhLl`Lu%X4l49q{d z!=CN&BiR|wplv*vMiY@vktBKe_15oIXc)|5 zdRGQ`Df_WXZQVjK1rL`0>(ocLh|BAC@9eDZFE{Ch#1pz>|}c zai3YP7>F9-1+eu)rpMx#3{zNuASHvDEOX&W#z%MxV1@*JMN z%|aK56`~XlVl@Tx6_arnMVRwE z2Rz4eRiXJ&f?at_cOP+jp2ExJ(@|Jn;qoyHG-9z=eYMgz7p!f2TzLv8oL-Zh0Rh1|8jj)} zc?{_4j==yNUG8X5S=sOeM5}zAMgv@^a~sgULvpn;QaZALe=_#4;kB!)Yff>ooSq)z z=H_Neg97hA(oUl^V@18A8-<6lVJIxKCD3j{{H3l=w80|B;KtPgUK$Z30wORB+f< ze;!UZje?Lht~dooaswdJ6|xC9i!lSPT>nE??Ya44d?NX~lqc1fIpP}-yE0|^ehfpl zxOqXnaBv<(6lyQkUh974Y?F8X78L53&ujz%-qhMo3p9B6-J9pISo;Nf*Auo_iaX<{ zpOv?qt>U^#nHQ7#Vkqt{6s*cZx7edRU-f;_h?pl$=SvzVTMk7dZrn@N6_7?GZB@)c zbIxGPIxARoU9GJDxraM=e84-9@3OWcGRjaa6l>rYz2cXtaHAGJ)Sik9Rc_WROm^gZRTAPxZnodnkP1s{UO+`&@)lq)~ zM)zA;MI``|=IHo1tFSQbvuDqy(ae;TL6GH!sxlyZO+`i3U2H%QJ!ikQI|S}lyH4Da zYPvk^d12I|(r|U}@7L`G%v0jZ1tyjohH;)mEiK2wUjUxZ?+_8ku<}S!r>CbwAEl#< zs5#T5q-J;ywMb&mOjaibu!L@)*`UYFC>0Y1VY^AhjkBVZLiIbqc8%ZSb1l-j|G~hK zm7L*tm(N_oINnU}4*PUvFbZ33Z9Oho(#IgbwzXNDiXq>|_N0jv+uToNiIvZXiT1WC|=!}kYCBtj7Y@F$kR8^ETIk*cc?#njA1OSRaO|k zu`ziw&WL60_3?6cDI5CZ;a2=J=P}z4;%82A3w&2MbQh9)z;Q_FN6(a z36fsDdZk%zP6~VPxx{N`Y8vLa{M%^pH|Hbaaw_NP`LLuR7N|LT-0=)|51a4D_8Lv^ zAUX#$NK#nW@$yyAdE5)d4D_jCUwlCcExOc!mdvE>GS7(jAq#Fg--1Q10c)JV|GWhn z6pBRXl#(-N@?!aTzWsmi<$;clj;v3fP?{*N{gq&&K8?uKoOt->Qq6}Hr-C;;GV(Tz z0+Jh~JFE7xmH=Kqq!!l11j$E|CcjDeUDlO-u&vK7&Gz>8NBorjhOpl%G3g}Z#`($n zogXj>f%&J)gl3d1<{S!TR3LCHbbTJVZS$Rq4~p!Sfi38T=3lCK{COs1R>c?=w1LCB zb9$BO1^|=_vl!+t>D#LEx9IJEER7-|ZVA9!BTs^YslzC~p`Ga}%_gkLETsf) zDwX~3pI>xTn!u=Uu<7`F1J?x>KAulkzRQ` z{YRZ-VJcx$NYEm-_7%AM*DR_CbkB^~(F-N;nqf~q{b|+}b#}%7d^D`-7aAAEJdRzo z(lEN5rEto>&Hm3hbHM6KsRf+48TlYk~PUUI0|WAz)g zz*xAdGZPIB`!1DSA?#9u?df8xz1W?g1+Ez5C6&rpP^&cLiYP&(fO#*4u`j#$;q>1A z#WB0l&m@wX{Sifibf~hS>{KM{X#caHbMWkDd#*?-zexz~7=I^GvrsZ!7q)Gd`7!_r zR}m$*2fcp&_qk$mvoM`QdH`=9JSJ=S_n}fT{~MsX7&(`{K+wO>0ILsWde`S^{SiJk zwCLCnObg&#Jv{*;Fj8HGib+3?QY0=S68|!n;_eR+>66#&&nOZs33b3f^qwejB!^af zq51DSN+~xVNOH~FTw4@+9((=2Zdc;@PJVGue_Z_RIZRRZ|9&ewWhfXs>;L^OiVWlZ zMe*Ln?~CBo0Uwf>U^oBgHBJDTp*wk}Y1;mD3hmo+fXMxoJ+Z@M=Ql9B&asWOf zM&6q22gBy$KlmBY5f81_ZNq#ZWCI75>Z@gyT)%N~9WoK`W@y0Wfb(AZdZObcw8|6 zj=D#dt~9;xyx4o^3w!D9np`7L(OcJ;_n5&wD5mXBEwLP7t0El6y(dK zqYTr5nV=>GAL$8BIXP6ZRmC7bFCK3}hsOc47T^)$7Kb^lUKN21j zshb)&u$7r2j%HzRY`^eWYew`$f zpVx_&OHC$$<(wZ{L-Cp5Cv^1qtq<^dk(W{AmiBX!9w-Lb;^4-JwzOvURuBKN6)-_| z!&Y0+8{EwMLCqX_>N>+H?yWd;a)nBL`9fJSPai!l5m47ArH3$v{JDP5?UI6mM-WCu zblMrB2H#c>fQq(CFth87LWQ)D_+YU3p5Srs%s7poJW*Ik$WhybHOAsw)I1U6)E|1V zc+FTOtK*LDQFz!cwq6(D$@hEr?#npVKH;J4#76y1YU;Hi$m&1mByBM}<1W@3cdehx z@v!y(Mlm}Niu9liTUM~JBuJ{o^`K>O(QO3N&7q$ll#Hv;edyWO(JwF9a;rbMTzkvS z;vp^lVST)iewefBuem#IRZwl*)X9r4@$uF-(r@3oC0nfD$On`fMymnOFNGOIU0&*3 zZ>mw%IDk~c$E`2=`i&bnu-Jnfq85Wqlj~?fJSjCbD!U6SE&`2>8!fks0oCJO0sJ1M zu0?WUg(1x$x#`t+p=uIZVamOJhWE+!dsz(I{Zr}O`0*^qvy4;g!&!o`#j^uZpUYzk z8_Y{R+D0gXr4X9OnZ1azm_vq;;iR$S$NDZbp1d*Q`+^9-@`X6 zp1iqzkpj$YDcx=r-7Fx7om*NasL!5>i_h`#6>0)ITX)ZAtyNr}tO>3VKv8&PM&?i= zi*P01UdgHKb5d0NJCp6+BaZrd;#NR8pbT((en!|?ipt7&ur(!g+1>oE;*%(a`e5W7 z(Nh4nIBt1Z`MxVp&AgAdL>z6gJcwX<@PHstk{*Bi_NMfHXRwq3o|ye~ct!?m)cirF zISA0nI5esk={__zHs*Ujc$fRA$r-7r^6p*GjoS}=kZ2z*Z~tmNQHD;Os7_u-o43qK z-^)m0A7|~KJl&oPJ8)(T>ZZ^QDap^b`Y}6^uO}uBsd^5HQ6h1`?dgivmU3hTgt?Z4 zE)=Wz&8_VDc$BSn?*9$yDd=uMD%xB%f-SHS(Jw=0bN%*9645Bz~!&p!RmApd6@} z5>fh2A3`d?794Y>;v2+2VxCt*i>e@xgwQ`^P|E-u(br?AezUuGAZW1%zRlSMj+~ne zors2^YL}qJx$Zh6(g(&07BHm0otadvN>N?G>R`GIlRdNF`d~USxJvz?Z4W}6a8_42 zczNaELjxv~=A3zrYq}=URRCc?<8OV~8j(j31FonmmA3kaJrAPKza|kN{94d#VM9TM zm__KFCkr?>n68GxND{=A`SaJ~;KB9M@byRe3$phhb8|8Ez#DulPDQ6r63)j3J|sC! zV}KAlI7reZ7?d`2lyVLB=AuXTxOo8wW+rs1qBs7wYK^gCZ;Tnxf#Yr}2YfcL8CLhU zu4DNX>=#C-)Avk=4917d6q1CkNfi8a+XH<3UxDwFj*_cHQlFm5JQ^MakB?m*?aa`q z9v+oe*c;Rgj||nj+mD%X&kvlsN`i#F`}OYTzfKtL!r{ybaOUb+C*ogkR8GY?pfUop zW6y7f_4zro1~fpu1RpRCkBoE-XUX%MbyIdNH+UX39U1jj8>QY>b573;(d#_tSsuOQ zaLj1!^}bpW;5vM{H}@;8mIJOBu^S8a`)$qhKd%|?U@Q!m2OMnM5IeJ#zLA8b>M)>{ zi@?*s(Av?m9H-&6lQ{op6N;NR1G?YgrTUcN-sS_Iy=wewqG7bs6&{u&sF7&zD-Q}H zj)&zl5THb}w%Q66nQ#<|(K{4~ScYo#ja&3f5qlohM zgEvqNP#U4M7naY1(GZ^lcJMTtOxbo3D4Yst{XhsT#Vw9g)BW5l9y;ASapOD zH0^x0cjHR0UOjvJ_7<5Pf%IH+OP>_<{PykJFB63Rvpz?`?yp}HLB&OhD+r;Mp)=Y& z!9?|s#sxEG<6Z0#1_;zyr#KeS2vITL2{(q zA^=mU5?)J73*-e74=>!xAc!hwO#GBeC=R@_Ifq*%Bp?(wZo<8_%`25Pp-(+-V zoUV)|Gz?jQ4Ho%|XP6YJ>NCT>0Y-N4VW><%!a(#Nv`0w75aG77d@wnEqKOTjo-QTt zzZqD?@V*L!u2S29&R_Zg=qj7tk~!F<0mL5dc%R5Y1&Bet*az^ zpI3;Od23QL>fvOs?H?9)9iLE+&3?%uEIi!u&nG6xc3*w$s*;rzw^oQ-*{^Tj^elRZ z#eBV90{`}dCn)&fBi$NhNJZ~*a?(vQWi)`3OdoPM$^np=hR5X))Ln9IV2x+=--95b zjw6E>G4uif3_=~`)GQ^gFeWGfzO?;)nEXosA2^+JKLFY~t@GUx7V6kdM(@+GJ&ek<|o-nuwx=5h$hXdk*P1%68@h zgkKcKf?+??yL@a&Adu4c7YGe{Rbc%T@*fNc<&)d57(#iaV@#C(3PU)9RlaSpma0k9 zx%qhN~W77?BKE3Xm3pkQ`cf=%7`AbmjFq=b3Z^J`wd z+tOJ$=aEMPS++Hi!=*=Zr{~ygk(sbx!@<@g_=?@=abj^JD2Q3p(Mf}?0s4z}6OSQ) zbR@OxKiD;y+daLg4A-JZPk4*xSzo#YbUP3(o(?bEau}bZeX`w9OMb}Q0L|fuxnTx^ z49jwObDBkH1A(wu2- zYI^UNLLvd|Yzr^|Bih?#%_?u-zI`x(z*52ZY^R^dzIfpkmDPrOG5{j`5-oJoK%80( z4s2`M6}6CiKHuOe@LFE}X4yU!Lrlzzu2v0YZS9D@#4+xs3c~%5N}i}6_Dz~Gz?sagKQ7S@3kn*kwZJW`<9sxn5{ zmO4t$5&5XQW*)-oN=gP_LWesJJ@yx$#m)o=2X~_lG&SG1cXZrn)(vN3V2I*pcP>S^ zl8*MlOo-c)d^rA%&|BR+9EY+{4q@=`Hj{Jgf zX2=6aM@5maAP9xr-$@XlPr;L|37whPpV`@X{=*W@*>ApoAf3mzSy1)T|!L-+m&i0r7V$pk@&`RHrg>!cX!c&7(GG8nu zyU({&+0G>SDFaqtTeApp$B%*W?^NN<=7{91)le25O zF69h&O)!>TsGkIr64_qqEWhYhUuxb*SGc@??J#(-#&KEsU>bH0VQSd+21m_aw$|tu zMcE4oRJiH{b0`4G8}x#znZu00&gizIMEN)Xf`xuI){#NOl`Sdo#Gy9pLYRfu_rL;8 z8Iq#S4_FOB?BR6E5%LNWcqE>OC7tvMCu!ZIlH)H~meNIX{{F@%^x=Yd{(rZ>&6$)1 z$azor+xvF;wj&~5^ye~IcT~qL8f-%9%lh}nyX`JoyJUJ%Z~E7W?zc=p^99|Vpwo@h zyAhFYEcQd>t5r6y*NmVv$gTnJWfF=23O?Hc8bKJW@QBIN`^UP^GVN8;Bv!;2la8)V zUmIk)vb^%JEqPOl`SaiWIU*H=$po>j8Qt|?P=NM&sPK8m1L%zf?Sn$+`Bk*TqllOn zq1T9&B`nB(QPBVdTo}g29x!q9b>7g6O4K#JnqRe>jN-s0U>{Gz-Qi3QOV!D~ zl76S@(<$Pf@lyahQv4A0WayU;Ws|}8fR6NX$EsPXt4<`Xz~lpYd2m5Ekx0sZ-o;SJKrb}x?TgD;I(#xd6S(Z$cwP8VJ@*MexDbZqr+ zZsjWyn(!j9hS#fs8H(RVGPH8B5%aOd<8=`&8y9_!^dTRY->S*zZ%Mc9te@1)+1+Gj z=H2d;%H7keuFZsxKah?cGp8W)2whk^XUY#?TUHylE7+4D&@zxHZz@QHL*Oi2f5Bv+ z;69zz3_8t+#KbQ3Zfkw8XASXEsi4-Ry(CNv?t6DthD^RGRv|7{3#KNqex z3QOph(xmlIff<_&)ydGh1eYmJAO;g!VO@@QLUknZg~;fo^{oko-5U=M4p<*OBH5X) z1OhQRTt2RKe$So-K;Wr)q39u#T)o>)8tX^*`nil+?YEkm2`b9U`^oyG&n4dw%oGNE zrq6fGyTCg-GvijYD#^=UMI)n3;NPrx$#a2n?DvxEXx;&_zJ!R2nUyrv}4zqP+h z*rTGpTZQd9xE!d-2&-H{AR2ynvx`_CDIZ^!AsEgLVlMXa;f%bGOz)O z=J2p4nFl97MpqIq4`q7rP#x7!(*A>3&y{Dj-^lsLF))U@hBE^|Ik+HA-KH+^X7XCU zd(EN*w)oH2(|5}4Th5|_3#h@9#H3S=s*>72V6c%9_d+7EZ-2;QeaF^K&-KP>DXhm8 z2VCgp(l<^S2e@Cq;~S)FCGy=_s&3kODZV8%DqdSkS14W7TAOz|m|NYt2~(s-gsP8K z3TwDBCBJar*A2JxE3nal)dH=R4HftZgWHi{i^`>+LIIUuOs($++rFbGfcXrlW}0jl);*xUt`0ab#z$(`?l)$emcGI_%|fSY+F$!?=V9 zB?=(_$8@N(bg3!$5@yHn@R6*iWw;=L$kVTrVDm1b*iqEq{sxxPAK03W{Y`^vii7rO zO3!d1eqNIW*-w7lW1W6(=yLqt=F$9n#;Y_dD)kPCs_Z9ri+LEB2lz zx2=U0G1i%ka<`Rkz-J1UuPUTSS{jj=85arvI`w%D-DsHZCru-g8dMootH)X7XRK@s z;)7NoaDDHhyq!X>3AM6mFI2K~e8a~mIzLNhzs*BU-&$}sQ0%VFnRFYsc{tzBgoK0` zdQ2sf#ze*K=?iZCsEw&9|6f=dN=jP0YMmrWUpl*L`os0nP2@YnaEI@$p;$#CE_OPR0NY9b^;s!W!0`BH^7;N#11y!5JKO3r!OK zzeT1>O+r6;(u%sg=N}YafRb)ur z)PYgV7}lH*%cwi0kTRjj87{*sh4rc-FoYz{CFwFHR%4voef-F!mrHkNFNg&z0mK7p zZ)Zt-m`h|>I}{Fu?}(L^TAbQB+pLy)s3}+yqnRf$z-}$F9l~+>p~aEL0%|pS3A$}h z2Glwu31+w8mM5EItxwq(5&-zMMbX4PVuSY~6a0gvU;ww_g@IQcC4Hn&#)YonQ)>Hn zOcxh*!y{Q|L%cxHrt?_0wOVTa_^k?qH_uP_Z7#@_z1Mzz8=RP!LdppCi%=YK8NvKN z7Q5?5xjH<-;h0%YOZFWrAIVRp|KM(v8f61}KXpkzHUC)xKPCt(COYFhCSzmS15f+ai4O(WEf>s7V2^cU3 zz!JpVi%PvttN=8wIG+FYm3?{`#2&}zT*H`$Fv8=4-s7)S)w(#dln^g3o4_7&ZXw93 z+%uiziVdi_pnu=6o9mlxHS@XpLbuZ7sL=|Iy9}9^AQJCYehLi$FM0xFAe3#r1?+tP z9MkXq#zH)V@5wgiX5=_ycQReXa%&KuVG%BKOn-cm5FQcGxuV;%qm-nHA%zty&>w0V z8?zoB9vU)&>+LUnI)B0aKz_7OS}=M~0-5k_;!`S?Ud(CbrAsW6L%`nKZK$bNVVnJSYYRx3_l2XQ&;@K%>W@~FXjGb^Pz!+NWP(P<&SA8tGC~D=S8o=P@Jt9IAP}4zj zPJQPCB!UNhMCDjo=m5*J4ySz-#Y1kk}kZo8T#0w3%-@?&QSAM*Dy@!#d;;3RT2ozLqz z&tzR59+KV&h%D|UrF6RQ;D9FUUb`~X&utYdmzS~`A}f2CuibBh^M3-Z z>;FYtKXK!q(c&e=lk?&^0hBApu&^*5Ib#ri$(P4|;2E3p=9Qzr`V9$LTpzmE!@|n! zzT;myj^_^UR>lMsD@L)D0v~GJnjMaJ#VB}xf<&L0U&=h!;-59^g!cZ*nv(l3P>vp{ zBWep9%&?!af&~{x<3u|KXw*dqyZ?lnuuzDnHFT>P|a3!wIPA<=@5(w`{rgIcSlEumMe7ds&b&Q(GN=TA-IZ>UdG5M-3ZjX zBEm}k1}0R?m3()q$ai<=WFV!eV@Rf+k-n`(VulpmsW>{Ort^0hUcwA+1BR!-5m$7v znB3*cOyjO8O!1h}8DdUr?jTy)CF+mZrJwOUa|NW87jLmm@e1O2OaMds?IY}BS7mmr zV0#1Frg}jzwhmWw?_z4IIm4!rrN)_*?D$%V!sdhqZpTbz$Rd-8a0;QzEBqMb25~d}rj|)gF@9b|K)74Fa&JI`EO^lD@4xZx9*84%{6FIrK zDnss~`2XkB8gvMC8ka&#DJC6)2cc7p+M59TG4q3r;_ym48o-s(zX>*8?-yK8lFb=w z{f{#2CI{5|{6Isl^4elq3PW42>Q`YkwcIR8W-tJAW&z^WgNX+G?O~45V(#|(&P>f; z372N^lGYzjX-EpW>$ut)5F>D$uhkTJer(wy-awS~|KZbQ7a>djL5#?1kN^l1^^)g4 zRUV-jD(rfu_1ZFTQqSvI+BOTE_4N~!W#4$C$;FqRjm)#LJt^;t%_hb9MXqMB;7tPK zOSf1Sc1b81Z|L1CY)L`1pQ6ZHjYiMrPsS_0jUW5#O!d z(P8ibj?YUM=*7)X>mr17UVtIF-<2$q#*8>-1Yt`{OHBD?u48au-se!luonj!2O)z46 z7Bz}$+|+Q_3r~?!kih|7@jd|z-f{5dR<^&^nY{>! zyzZxk&gml8cYhWXko*%e#O4g>F7k}!p{QAyl9-#J?-Y|1nXR(|HUZAuOQ@ebGrZ2N)^}-Bqrd2 z=Af>wL4e3sRLjWd4KB9M=Ra9u=E|Q)D$ll#i?7d|LKl(k`cLZP1$BR2oXhYEYyX)J z8@zWc>8-5<0>UO_O+|%vsHXftF^>G1SzsBVqe-irdm0J`V9)lbsY66(7=l8cN^WR~ zgsfep4!230u+GqPCbF_|CmOz(W<5UAV}EWFF~K61qRX{Bk?hzhr;6TiQd*d+Qg#Rthc{ zE)eSJBf6Pkl&KEp^*8Gy$J7}8@XVXH8GU%W{~vE}9uH;v{*6y$i7YKr_KH+ODrB7s z2^9%b){5*5*$u8rsDvU!mdL(KjD0Mj1!La^W8ax!j2W{&m;1gy&-3~H@p+!__w{>T z&-F*S&hxz1^SF-leZJ54aZKa(h|>Ji4X9uWW}r*lw+S%R~M=C!-fBTzxzb4s_V@PUic!bJ#GrII#dk#;&xZg z%mJJ!|EA!c)rgF`|JZoqV;X_IMks8k5NnzpxET*h%1 zVl>JRS)mBfA_tcT^5ecS(hE!fa-jj^>p#;l5IMjc=0oQB`=0JC)Xsr7-nNow&Gx4Q zn9^kI+kw8PqDtq^Yb(FP#%Ow#w3QI`cOZg=u+nz&=4>T!=y#d2ZLiB&^+|ut5`#w^ z-zEu}st~@pnllbRIyzqaHm}RoqP;=*;90wKg^TO$$0A4~6@X7{t47I)^%ZGqcNHw@}abVYpd$n}`vkq&+Xer>wU zRLbM$N1i=<_UZ`y>axM!XA{FvBep`MFFgFFeN`ZY%7rU7V{y`)nVETYe>$QR&wC=( zpH(UMhYh0P>m^U0qC0nev9ntwx0Tbwqu2CsZ4jX!<3Jh89q+*>a))lG4wMA@fY? z=N&voGwlGAczO=^r@TFDiv#ixqooa-`G&j(PKPQ1+iB$C$a2#6dknRSJQ3D;*B zJ-SvBjS~{Y)IC397m3d7HY5qa3QqjO*pdtd>C?xkMxcS7(f56`d`NtrL zoNHaPK#>FUXjVcpe`CT!Z0zj+IuUrjxx|uZ$Wk3vp?$!q%!NC_cGVBIC`zaKSNTv< z)+2B@)$qlT=T%c6<}oMEiyqc9$!c>vBKRQ89K)aa%g3^B0Vc$ald0hXE$=RZb?*30 zn)dOXnAE(&!m5w8wsI8G(haB@@e&qP2HkW^)It^#qXaUu4^YR`r1Xutm ze?wY#xdP3K)>#IuXNnS$ppr6?Wz&_NNc=EL9} z`V5Jxie_eVEeT~J`Gl2R%N77Ah?l72m{rgN-%eE>ELV_}mKOf!SxCpdhuumvsqnth zh%a9x3f+T)8+K}t!+wDW!Kj>ed0}f#W@)(K6rga>vnV6se()3l)fB?$*c0XFYF@I0 zH2pYaTmFP#4td@!F}6%;g})ILXSngajWobB0LFgEgF0Z7+wJ5w-eRV0q&HNfdpQr) zaZwu?IWAr@O-(Q_Z%-qAtcT-zIy-NB61tQ@ zjer>B`DxwgDLM%|OxfR~84lKfjeh}Ot9EUwJx^@8R zu$7t7Px45A+eZr2a^ckUR(++=mBL#7^SQ#EriN?i<6xJ+>N;d*1u+anIT{nXKD$9b%Q9(hMVt5_Tb2{HgfWg7W_6BS` zGcAwW52+8J6Mz2t)qAXo9W4G8CvAZw5D4WCXtCmbWu)VfN81S8bZ#;WK8iFM`Sef1 z6tWe`m0BG~g98~p+=l?9tvdyZY>zIL3$B48lF zB<5t-C%Ktkj^Z9J)4c6!LtTgqUs}WJDp&JofO~46#xTyx#*c4pnxuDhHhTOKq)At= z(wt>PHwqdF_AtcbaGMxunX9=002S34GS4R)5J80MU5gkPEwspxG`^iDCAFhN0t{VG1 zyrz*^GLWhW?2dxt!Ra=h(Wqu*hv;Z{pSbo&C~D2DNe-eldC7xVMmJ})=fjsM<*HixXke1c9u@biV2M}ehPrm3jSu|>l!e4cE+n3j>z z`z0(2D%SPuMbH83ArG2PAz=2K^#KCE2I|BJs;rN2c#G)S$tdB<{Zptb2R+G?h<%@? z0o-Imaf~VY1&IL7QvR4MO{N*%56%*v`KiSgtW@G|CYXKYVqv|c^k0CtT zQdNS%q(O6J#KGu&UwnDjUcjwB1T=`MdY5gKmXxqVQr^AsREKa3gilS{=EoT+<| zJFSbXBVP+#<5UHcL;1ap&0yhZ@Y`3q&}tp@QaP@kIfVW=$kDlemoZYdHD&>Qr=6)_ zJom=%BN5tr{9MQjsjhIev{7b3QAB{=!;whC#fg4Xb*AImtqOQ9i_-alw z0lv7r4tOJAnpQdQCSZq`hK(O%mhLjKwS8<&Zw2<`5L@yrpkC+QyLa}uNKg<0E({u} zM2DmKzBrMWp4FJd6U&gM$A+xzcuh7pnA`+I)0tP~;nblwW}U!wSGRf+I`DB?vDU*WuGQKb4l*;e%&DdE5dYB&49A ztgFSW7=jU58~wWIqw9rc>Z>UQiOO02Tm+KSm`~4KxVcPSfKRLhF^1O&%y5Rh9h0cR zG<@)mB)SBJi0uA8s7l&7z-rmib6Ha)g8TRL9*J$Wsj3Z_6)JPvAcn97RCQCfW`l#f zbe@;rn|>WO7W`{($ za~~D3nzBKP;F=y5l$6|D{dC-=2ysv=&-#EIaJ;86m@2~%0bP@gYZ&q`*u1b{mS*GZ zD!Xj#^`)SMTZdB@xZ?X*%_O{2(5qZvvY-{-bnsI{D6Z=w=}VuYv|yoEvBI^7Ov5if zKCItdlQa7p5_@^cpyd^-61?+Oj7*W=zaLFXN{U{ma#+%aF9?Sy8ZB3Y0-n!SJ{ewj z8L3tsXnu+MDgg362EU6T44d4awwU`o`}I4g~`$tn(hQxdEl( z!cQ5D4+2eJPx22Lp_I;ds`qxNpXrGB3UfV}mP$(7VqijvxqUc+i0EU}9v=hf2;pw= zb${zo5pd!df=Go?C>8xWEQ>2E&I1Ah4^LLh4O@D3A(I!uRovUsbh;Dz{Vo&fx7d5n z+Ap~yT~JTrJB#^6$IFqea%zuVfKX|r{qpbqllav{a|Lr#uc?-cV)UfFR5z;n%hlpK zfB3#LJbcURoA(psou!@FM=3p%XU-@@3i{ga?+w3j^3^pK$@kR+-Q|SI^YIUEPaxm+ zk-Vbs=1-nqCLwTxW`Lg0eIQJ`6Ua zQcj9FM1a0;Km8hdDK3@C_WUrBMg7fT?Vl-Yu0K z=8G$0oy?{*=GN9TP&9M-QMYn}o&UaW?P(n91)U^LfR-(av)+fn5(AV^pDq*pq;7L3 z&B4+w^xFiX^HrR*Ky^|A|X`{YUuvnB%}^K z2l=7DHsizp*5nZIAIkq<6$Ah4cK_2Y{Rk`A#D>zqRbSCP=<@PlUQXY@eIP#F$_gnw8p6=LKOUKKN z#|+wTPEE~2PzQGY!iA5L8uab{7sN963Dt^6%`9kZc2ngOEAY{8ZC4Z(bws$oMS!H3 zj{1(QoSfOyr%%hg@Z^(U)xr_ef4)eSg^<35o{?3y8bcUQ=w$Rc`5oIoq(%A$gx-wp z<2~-=8eWU3Whs`|!#1o75u(!R-4%(~hwggQq@r!E-}O?k6TwEDs8 z+DFDZ?t16fOTduw2&FPHG96k5Fgqe0Zl{Zo-nrtf=G1(zZD@H2SLZ~%Q=gnTUVHG= ztMyV2jIPmjk6&<&S=`B`G2=Pl`2L4Bv2%zmoqZa+Go<=b2Jt|NxHli6B<1qb4h{@lUCyqr zAHQYn=H^Czkl8KFnivc@t9R4b0+e#{LH_O;TXFKj{KA>J>v&n@_!HmtF#*p`O@7{) z>v)ipy6x#%o}8R)Cm+iD{D>)3l_n=Amyp#IShncyLZNbA*v}lD?jd0(x+kEplo)*smNo6so~N)J#oJm@s{^MkXi>&L+8_>Uj2G8e#1Ajs>i_knTBvIbNw4iww5hI|nl7xiw+B4kn>!qma);CGahj3yyYWg6JH zchXk+umZD@^6Mf~nk9M9saKi}4SETzidPP~;1v}YrsAI29SmZI4!ri5> zG0FM&bDf)CvZe7nisa%twL$2%fF~u|1e^L{gZ;)kpuNQ6oSZXmm@3%?H|}E>JWQ2} zP-A;5Iu_)}sGDt04JYB$d?QXwi2j65T3?pYRm^}a-QSMZ0f2`hvgUIPfR!bUo`DHw zs#O^=$frM9lCG1}|1BNm8(w2Kz!^O2fFih(MMQ7xSw|;=N0x#VRBj8V9kId|sEp)L zLUk>JDHU7RS_b4`KwgS1pxgNjg#^!BrSkm1GDE~|EL|j>`pDVSB%rQ#jWudlg<~qa zxHuNb+S&2dGY*&E?k0 z3QzIql}^kiNtlH~K?@O0B^0Gu0Jc{@^1S8wTpS)A{@S!xZnP-?Bv%vw7x7ertK-AB zth$TpGQ@%SQyqKL`!Y)k5Fz50`Qb zB6#`wrkX=PD$d!ptk{@bxfROcu=J?#3hAvu=PKZjcH;9Yt^U#Z$)}tvTu=IL$^ez) zu9H9GT!3|;gzZK9PT=?~Fy&xMF?*WrOdn4XIjy5P()Fh+{@&6)NB6tYp7bfq&P99I zrP4=K96ENpC0X$<;_UgeoDrQ0uV82DVwWf}nv}c`Pa?W7Rc`%XV>F#D!*LD;C^w8! zE>ThG^mpRVsw0OY`UfgxUstr~88aiJGSU@5gQSlPV((0302tA5Ty8Nlmv`Av)P1#3 z*)AcABy=jKuITeYA{1DE=MiOaGl~-q9A3%R*|SE^6OB|vHE5E0TqL};R^$qwnCE0D zlY~?2h*|B+(30Au0unSvVqhz-Jshednz$=*lB@!M(Kk3Kz<3T4Avec|CMQdV`ueKj zVNbLG(Bim?DUkxtynTF<+S_mD%1r5ptS0d!4(hzZnIRAe?c;0C2K)fTJ^dg);;F zGb=7l-3=%+TU$rwNj34(UtPYOy#$<1FyIUe#b7MEfFe8w_e1R0y#7?Ct_FCh6^+>J zOtD_#^BN}LN}n!byF1=!xSQ>}%w$C{vW>{AV2&u6CO7`IOV6W9aDv*wm{w4;KG4%c zT`H`qQWAN+XL?cfv=h=AR~VaTY&#I3Sxw8rB%KEG?v0f_4(%tPKx+c-o15jOq};AV z`sI~WJv<^EU(ld&^c8OG;i9*|RwcJ|(#sYRfn&V=<+iD{d5-U+(~lQ?)inh36KY|Q zrX1F&jC?h9u~-urX03=rjS<_Ts4I}WOlQsg7_X?^)m5xIGQN@3$b13&jKhYsA{Q6J zVNx~b`w|WkzlzhwfER$T6&Bn2sob`eF9=*~9vmMRX+*d42&Zg6f;|!x6#V1ux7ySk zdj9;`o)@7UQeiDl!nf-z_oe-$^euyQ=-_Dn186-9rleLW_eNnxc8}NqBfeJ-_FVc~ z<3L^C7(3eba$qUObX0B?qwsn#w3QIUYt8MY)tn2kRq^Cl6$22%a0=+I4q>7PL=Mtv z$dlg-DGV`JvRuBQyswUbJ>pgZ7WJkCY6LJX_Pm(y#>2@)^6NDN#b*OHDFl7|^~JGk zfq}IS*ewE~VQtNIR9P>1Yv0aMsIYH3jv+Q)#~UK$)cQ1|ry1yGcp+bSzXv0_)R`&O zC4M=(r2w-UBi+(6jZ{brmN_TO!=X?js@^fXIfEr25a?_uttwFt#Xd>KnTFCTX&SDi z3Hd-^%m3T716}%^1J=GlV4UWsoQ~P_-^A^@x$L$YB9;Rgbg(HI4c%)A4y-1oPIELE z+cq6V5nKMXnvJ!RUne%uHz+-ug8-?zkec$lMv;};Bn)8zBhz0#mMh#jFPd6Rvvit~It^U$$3GH?x^>_4 zg~>%)y|p2Ob(j>>Q6h>{D}}GRj^Q0Z*XN9%YEJh5#W}wi9_ZDk`DG00R|>{uQR{0$ z@QFVu3=UL4P0cj&w3{1vZCt?x1R$s}BGlE@HLYC7bO03#_B-l_1aV>;jZ}9y=%)gg zvlHjC!_2+}Iss0gX?cigO4l|*gZ2OukX^&1fNJ&A8{#<14uLcr%F{7xWn+BS#BGH) ztVl(pT!(s2@0s}C5%RPRcW$;ACGY5JcbGkf+EE7l;{eERE*A4_K+Uw9(aZ!ZipjA9uDLCy%{vz$D$y2ydi^we z7S(X5F*;whfxdn>slUx6cwNu5{*z~WyiW-Usxh&MT(rLb#H8`pdT3KaBJo|vK@y@n zO^=^|BiTFU>u17}PRuqe2eg;y`!=I~GrmZIt4bWy8XNV|V#6w3QRH=RetF=A3TX^| zJPGY@e0FZ9bU(}x?kjT?CTC$f<`Cut+8As*&p~K|)1FcHIs5x0llF!au2Ti0KO#izDYd8oobmok!cKwbl>wQ%9615R5D=mEW&;`Q0M+yky$iRm)qm zAKqG)lB0be1h>LvUgOowx*o_hAY}$z3cMO-sFu#`heFy5RKQLMUceHoiyC$NCg>ul z*5Gv(y>j2{qhHg~4@3vPE}0l7%rcX7-^IyBbZ5;^1NSFE@Vwp7LtH_J$+gb%+eUZ8 zii&lM7*%KVq}q?8Q7yF@87HR~*ZAh7kn*oaCx?I$Dn)#fuwd=^raz2h-OcKE>ifZl z#fk9mTE!jxlFM{T)%T&+4r2MPZ7l{9}fp|AQFP5WIaWln40zQXQa ztn&p#dhn0e&x_yxLh`L+wtZUSc=DzMI3q_f$noMmwRU%b;&2$ph}{SZ<*bXVVI=*i zLrJP(wK>ZFXREv0xJ>O~Xq*X?E^fG3&*6WnI_R;ypsOS98FY->NqweSGsB}6*o1zj zroicfmo6P$RoQ5bC1_NqgY#s7Bq2Ujf!pOiapJ&%CO0UzVVa4p?N@We4g@Q+JRM`5 zwzE~ZYS>m`_N|kd*KxU}@HxHKLaL5sbdV;fv2wx!K^V-~1r2%X)&41CM*)w1(%roB z@_YS&_@1>ptpEzl%@TQ@wO!<1)~vnhpXMS4yXh|@FRxr~_5w(Zj}L?Caezkvai=KQFk%a-f_mr}L`bF9l{lU{kPR<|qIBtQ49C zi%)Q_!jZ*@A<){i$YFJKXTm^=9hMoEogJvXpK=M^^glpOZpQW&{JxgE2*D&6bK2b8qp?0QB<^8T2`hl8PRHr7?=KkY(2 zkejs@2&&!{Oz0|J?Zn6~vy;&G0EB3W!Jd6#XJ%|X6TeLmKXRXCZ8p%h9-NYf4@z}t;)}Dh&xwZ^WPn%jn_=26GyxOs zbxRIuqd`8;I+@#8Qt;zGlaIIe5Pg!T-WJ`)bc__H_ZP`@>x}D*e^F7l^#1+t{Zo67 z3vSOpYD0Mc{u6Rb@4r<15C8RFZT{ao`G2AHKiB{N-udzycks}ZR16$7p)GDv^DJB0 zXl0K-<7{t<)F8B^N5PEOlBPMbwb+b<<2KheC01efdKS@a7FhE+S#Bu%B>_LDKjo8{ zmCxhb_l(!VT+HnCtckYMn4wQ)yE2vAWno( z*B5G6OZvCw|5SoRlk9`CYX*sOgX>7F`%BJ@BUa)kE9~#`F%{|`&n`4|Xe6z0OtjX^ zEFM%1EUHkuN0eHgju7WfXEu-~g~?>;`}8k}Pk!?$*N3s>{MWmNKaNW%ELf>H^!zC; zfyOUsz68w7%5KY79m|0MXcejx*6G|evgQ<;3w+9y6aec$->pYs4JMR+{ z9il~4X2AH}6MB^CD7V-wd5zD7;JWI53OyaHq!Fcl?Hu!#KmI`ftp?#&q2ThS^w3gt zq2RCZ57!_1d!FSiDULVkL1>(ftbdww+pA?5a0!%K|5W{r`P{psIC483#W#p2mHo7^ zf63Ks@K)nK*6w>S)%Q-)rTLd>0Q!>`b0kK-B#Qh6TO!B3&Ef7%|3baxO-GTqq9hv- z6Ibp$s56b-KHV=eA|hGaDA{FmRsIRDb>Q^;zWdPL+4Ln!A4u6Mh|}%U)1g#rgkuvh zVCc>Frl0}j^D4mLOAqpznjF^CA$WwMj18)AN6~lin_zYdXHa+6y-L+7y}_p%WN1RS zDXqr7EBKTbzGC&Zkv0$uSHVpW%WNoPslVV?ycTp@I+Wal?%Ob1q*?NzE(_k5gUA=7 z#Gy(-u8gN&eeShsH`p{7M2eEifWS8TLgw2yV<>p8^=KczW}^ezT2yr)`Mosj%N=|x z-)97_VHnUTgMe{i;z~!P?+#?@MA9OTC@xH=?{gU{>IG9qr^K`-E4p-o72m;Nz_w~{ zOY`E%277v}>7@D1xFs$KNmqYVrsMv++FhYz+41JHXCYQ)ak=9xQ5 zc9P46$aSt^W@P%EkCN--jr|oQuij9e#>mJ>kfF;0X(9U5?{%S6`K}Q4YJPQjd33#} z?&lrxgvPCvqhO0yh}gNJ7*KfDKQJ&CC9Et*^VwSj2WOoH1qJ8JaA9DMyd-dr;N$D7 z9}CjlCZ>St{3ye6keCjDbBOSRCo)e*@EOGR_4Ts~hwe4rD3Q}Mwhn1jRZ{~?!UPdH zRc2!$=a05)GJXi%IUyMzuXnu|0$SCEYNdM6TKRPY)@y@$eyWM2_b^~bh;dJj{=F4KPfZ0*pu#HyfB`JZ;-AonS zJ~2^-k`hht@18c_2h$2yI*3Hp zl>pRrV)mq ztvF}r=E|t4Sy&G}qFeb?(lV+IX4|7K128LDd6zQKtWN1sz*cuYU2G1ZgG6Czb@d1s z(!Bb%065<@UaloxSPEn0o$~SXVY|exMC%qe&59Wuc3FrPt<5aZUtV4=C@S(63qcIV zIBn$L5weopv!N@sw~`UgarG-5DWyMlhJl-@)5tF?7&pTlmx{D|xz3f=#%Et^n(zzp z?E!bmLFWdrG{?nDJ4TM&!AuUguc+A74=56Hta}K+-F?+O{%#Ogt*L~sILEbY65AH5 z$70 JH2WIQU(|wx;c>_HfKbSNx@?jyLV=&e#vQ0B)gs|ABkIKTg+I6~ndA^vVnY zqqvVJ9_+cqF3G3Pv6mDTzG~8T=8HSx)zmw7haYX=MF`;DX=hBxOU~=SpN|=a6G3lE zXmdKr3dIj#AzP<{R~8J|X*8(1?>kNEXpQ~moy#}t3L3~cC%!_#{e|gr+ryWbjQ2$O zMg^VGRk%qT54Gi_E5DF0}!nGFwz}p++FCO+-P~p#(k>l(TAg&Oo8}RmW#VM@N6^u=@7G>&~4h zaOJ_|{{63`F^kSSvo$XU5|5TF;+omFoW{mGmrVA)(?^VhnpL{}jq~)h8S)z*Edg67N1*&n23I3icGKe> zpWJNNNV(dWo2a^8>NXgYa+Eg-ywL7Slz8v=8fnu{L}_|~ciP>-Vi=*kaKLlsG^;Pe zP_EYe@?z>hOA!$e+MY%g+XVH$iycI}j)|jdBjL#kfyChZtA-6kFGcY>ePN%W!Ks=W0_9Qk`}8lqWo{z*ECLdzLVft-VpSGJz{%_?kdIn;-zCMG|yoeC6N z+c^!YvIqBk@}uULc(HLXzZ{r{3*2FueIk4q2o}BuV1o!<=8Zu$Yo3Y3;w4jjYzw`5 zGIAWn3@|MAkS{bVepbt(sY;tf!fnzT+&Vug=!Wdh0$r8Jx&nFnO9Fx33}F(sgtpbd<+cKXB9n#C#-bG3^ zrFT$yD?G^^QNq%CLQ1Zml;D$VS?)lNVS35XkeQybscF2bs_Mt2qtY)`;#kI2Xanog}*9surKJ}JOV&cQ&TAq zf*TkY-BX^0FBZ%iIZ82P1O#fG!OR?w$FFARrVsyFNll=SU-nz;0W0)z`RVtsSOT{U zhdT-iwj(-kOINP1nBVtI1V@4^3hTP6V|3i_yHuC;6$T>dZCwiql$L~}7|f!L&(|5S zHe(Vo7?_j~Qt*Cg-Jl2bS3Wf8JiG{o{GwgLkS(r5-m*dE(m^{U-%Tq|@lcagrWeJX zXWf(j?`Q;jJt*Ax?lUY~al@~ArF237cLJw?yoC+256yBdo~+c3adYdFie32AB`?03 zQ;A!CV|LJb74Q|m63k;&>fJdGTvqo}<$r!RwJN|o#A z%mq%3J7hN%o@UVK*#+38pNMZP?UEv(X%O;!Y4 zc6+-%`~3;RaS%BXnEiFO?9%1SgX05hIs5eZ8dD0X3vR>m1vz=u)epcl-a^XmDS)|! zg<>$p+ikLb^db2IapSs}Xb8yr%Yb55;Iez2SkUN%zBf2jxQ}jEJ?qo=CU%3%g(0v| z-rU5(EwpH0(f2OyMRPzy>qd3)sD-Mgq;JW-!V`g4)bP6; zdpLoO``9a(WvNx28Hg5ow&t5@4rZrTbxZd^F)wKv%RM2*bf#9i42P3ILwfFaZ@2^k z6(z|4O^C|xB3!7{jgZY}OGYl*vP@s;>#wlAU?5H6VnAri_4>iSXSX7FE7>RRPJw1| zIE1?eoN^r&3P~@PwWx9&E+In?%wgQW+OT@E`Ddnf)n~l~v!lshmN|NDcyKT*1_R>d zOBI(=8#r@(7Ijy)X|krE-x~l`%JHDr0v6%QhQ|b0@zmaauNi`cqU2D?rz~=HeO(R)H87^W&;k5h z*0v~u|6KVoSRt>m#^qJFqLK6pHlt?E#+Mb#cl7ybg%Xv=^{Fd809vN8$bp-ApRa!N zo`wZEof6QNSb1NxcHtEU_PF8CK!Dm{hLyB|H>~{-{jOWB%xYQM+q)Xsbd~KUn3SJAVPR+5FGtY~4tP&F+ zH`b*n=_Jq}<@&>^o>i4`zd(h_Hmw2`O{JyZnOeQ{PUBBQ$sJG)@ohi4eBtS2yq7V- zlXz~qQvOOIIO2d^N12{4%>%m+9AE<1xx4z#`DOEoT%FSE+hbLThB5bbb#=+WIwiMb zITvx}=D7Ui9=D=FepUiTn)KwQ=}7VLvh%v-E(jD1Xf+u>%fOG6}!O6T};i#T9=|3LQ+1W7F=?Z>`I zBbCC&;hL3m7W5(Y{`Ji~Xu*?AG3K&!)Nuv%dI5cdKPM+PYucRiCZ!UI**%OgaF*Ab zyI^=AVk%N}cn!TGKoZ8ZmfDP!6chyO4>q9a;1~M@j5Tew$k?`Ie>TYnrIkG_dvyH~ zv3m$qqr6)Mr1y1i-}vZ2xDoG}C*L+1-nPF+N^gLHIk0PfD_rd59z6yEjPHx9UFWI3 zCC<$JJF_TQUgvF6Au96i+uQc`IpFm2@FXw>jP~|UUw|OjlqAjmRw8Y;i@Hqq48nLV`rP85KSD*VJRE>G*kj-auEG=pd8|m8^PT+I;YSO2%OqQA zNuqo278vxXx@_C>>cAN@4UB<9N<$)qci-l-2bqW?S%b{XniZZA<1H&sx0pIlzgn2BrO@jwSN0l#anu=Mo+ z5j)PM8J#m|*fot4L=*>kbUY+uI3~~M7&Vjcl^6@m#AHDFiifB=)y1KG1Pr&vt0gR5 z8~1^TdN(k@c!mfn=PCcYIh5X$^#gU%HHCOg^2Nt5KLjGxRi2T{B-wWML*DCi?x_`H zA7p~7({b{^GWSA-axie4XHcz@%zeOoA0v+1mG@RJ*{jQj_qBrIrR(9vdMA5jn&OPU z6n1}2eXOGnf!s3wH&*#$vi#7$^pD5!f1Uj=#`oMCh{!+G@B7&QLovwz{&$-HUvCXS z{^Kq7L6wh~TI8}q9TETV~%W>~v=f{RR5>=Sv*ic1Dt1>)S;s`l~atTT`wa{)Ko zyU?{+@tunzMsP4o;mz1RZ?cQ^vr-;ip|U-MJ`DWpomgJgG=emO1nciB(m@S5z~Yu4 z_$!73`S)jgVYjJ#xAtT#ii8`AG>r>e2}u%K_^o_cnE3NySA-OvV-gesxNSro+V^8< zIGyKvg!XVpQ$hlK)h=S%f>`HP&$? zcm$8ARdT7wDKuLp-tDy#3Nac3hTKey*HoP#bWE*MR{{0_hVj{;G!?HL zW}wH(@2JK_z4rYU(4!YInk^BbA%`Va4nQ!UEyJ)%Q^bf;FpI9L?}hDBLs?nbX@OC> zms8rqB$C3DADp1@AS^~y&G$CgWUSm)SHgxhPTEkZDhI`(#xCaq1z)f|=tYt>g9FJU z3tgXypkrY_)(D)jpi3ZbwNw70Cim2O!+XCFaY7@|`^S;z;8n&@03g8!i7O9zuOVqm z*Ny=)S2;$tE)5xOlcj6_Q{j&~hDtG*m?G`=u)W6DyLziqVK0~b-fr{_TroU}rbrr;8;-_-CQGeQR5AD76*-MbQf+ByL1W^_&K7}z&uh!V9@}kE*ipY zUOXmQ6k~_amPs3WaXPdzIGt*av~1M9-@bP5-sAx~o)1|qKN5pdt&*cLY$>-|D7V-F zAJDnx^^Frud?#gzrI!kk;h>iS1#*>tr1T=qyj6?F zm4g~)HxNn~j2N)}VY!5LiqQg>$>Sdf`3V#?G~Jca4r{y!G`M!!IVjo=7EBox$%H4j{n`ADo)iaxVcJD_ zB2u#A$L4vOfHiLQTD{bAtFY490%?cqG|=ySr=~fJLVJf6t1?2f`815DGmEl%xE3q& z;jMW8NNXTKtauIMb9bfPcxT-*J|SU8Wdk@R@tU9ZMmnvh7&*C8docDW0g4}in8k8& zae0G@LGPrgtGve#+d!qIrGqZy;cHN!MEc&njJI5VC}z=Ug@ZvXubBGrO-XGd+efSq z^n?=BZWX)be%~$_W;p=RiIH1(U&XKqXp&$yv4GsUo4t1 z>}9bg80zTaqM$;2Em$3l13ahl+hH>JZ3^3w+Ys(b=*3qm-_@T60uSzWo7kLQ`29O zzu0;VS$w%rKN1q>F0GUn^$8rg# zA$B8_ceU_*=*IIKwwqwpCt)}MTmut_g<7%f>svF~NM^RLVj!7^Ef6BpZFqB@)VSq&P$obOTW+qv_ zLytCvJ)=JPbowUvn|ypZ2?+@jJ86bvlYm*8{T zUOhymTYHYSJnebh%M+ns&W5=3bnGH|x;27T7+mea!5L~Ge%#Z8YU~C0+S%K;*GKI- zFp>ZgF$n+`pvM-{cTqhH%oGwtJa3H)4`$@pikRv)dyXZYo{tfcIroguy^cwoZf^*r zHKY8DvFuY-L-Jyc9pWMI5PA$;Hp;K7KM8!hi3Z8;T6k0q>5yKA=SfJ!5r@DRI>Yi! zO9A#_Hy*>kBkjAm*n0PsH1Tp^-vnOoOtYq42dY;EmW=I=yRp@*-vs5_nTgtiQO9In z@tg{}Yt}nE?R?>7ftOOSor6O}sW><&Ttfrk0OM~B%Fj~6ruH7(&8>k+Km3EWaS!5y zl50idrR&vy%FAZmSs}xGRp^0;Hri!oCzO!>+B$Y00ZlUyT%ZA8WR2KQ)%E!UOlt9G z+lfXdeWU$N#B1s{PNlOL-MmL}YYl4Q)9w`z6SWaI{xo_;?Y_EpO^F)nf9~i2SQsX5bW5Y% z|5Cd}rV-~lP=Ty*KUv?R+B=O*=V^({m;MWfy}!cQgzn=3KvaQd-biF%X!7ruSJ=+F z{dFZ{+_AGeec@O+8%V$SOH4T#^p*T`GyR-c@^8UYY2FgF_UDgU-I*3W#JD?`Kyvzi(aQs>P^JRX z5|@tsb(lxAz|`wHKEkBD;q?M#vc`8O`H|~Q#@Ob z7g4|Wl!Yk-+|HrIZa4YmNPQ3KvAyW!ZC%Z1r|YtaGwlk}_du}t-g7+Xe&f(tBYS4; z>ZHB1voJ+OUS3#n>IVLS?PdmF@XzJrYm*IXPg-7zkseG}_$+_p7#yg-V~{v0P6|no zXC|DJODQNqJv20%Faxi_Q4N27ku40Mb4lW;x?46WWoLrcUZh)zUG$92(9BKsZ!(_<=_;z|x#;5sDdWw~aJ7u8gxMGD zWxy|Eto%>0nTP4JMt}7fYqJX5loCElU~6Nt0dp{mpXP0QDCd^`J8BCwSu>C|>#x&;Y} zpk=<@AgN%Df;{ilydefiIsMAz09-KBft7SpTdntK=-4;6&;6Uo!srOzScV(vlqh~E z@8^X+hYnKsv>fadhN2aC-n*ULJ0B?Jz5Uw-WwU-DO0Rr;yGIhO9pm?1!t5nFUA1p+ zj+fU44nARGl_I;)wU~mRd^Yer&6G0yXgJ>Z;>l`MBWj1E*zhl@6aYES*&V=kl|6yu zrr{-H$LtDdP*fZ0lKEToTi3e5*C=0aQN6LiEk`n4sw2AH&El}|HELJQ#&gO1b(H+j zP@Hb-^!KADj5=I&s!^*EI<(bousi_h z4=TZhSB)R4X{ke025?$!eA@#(H#w$TXN&D1?&?OM&5TZd2Z%_4x%2oXi0YCUMGg38 zM*W<@|9tj4ZF*IlJ+*rNHVHK|FqNBabW1b_GQQ!XF=Q}o-S0ETA7XyfSKCM&2N`F_ zDY=qLe~S^9g_RBZW@F?(dp0T>E=H?uj7#eA7;2~i8iA(%-heTU1z&1N=;Sw~>?AN) zhe{2(*}h{jLQMXlkd2Dz%n(2$#p$*sC08H)!<-GbLbDAkHRIn`R*Yhzb+1rn>hWBT z2n{e)?eHab2O(g2T+0Itt^~KHYxoz|`;V}8tgtGk@w_O#sz_e$XDeWoUA3lqQdbQC zt!-3{pL6N56=N04idg;ibxf!OuT~r4ji=KV-6t;SeVx-JSGlIDW!*uOL@c)YrE@@% zzvw5m-Q}Rzr|G1klYI;A{aCm|;gw*!B?h1CTN_S9$5HfAUJU}BMgoEmL0VG}H0*NP z8sSFYBJ@XNRWr>(>#i~#!*m)7n}E-JBEApL7p?!)n+Ly*Ucp5tW_pZcH_dabp;G_r z|Cs(c?)!2c^18==w_I5GvA~+o?2n$#srSaua&?c3?$w8Ep5#zuI4(IicfzYzt_pwW zn~S*dzubHAVAk`?SHJJR=DKmSh~N(UeLjl$jU5+sUdg?W^17T6ooY+4H=uUvK`1&zE@r`m)XC#5?o%$0r8vyS6_>be~=N zKZ~u~WjU5?vw!im{Q%G%bFa+>=Ik2{wpJP6`rY&5di2j(WM*5g`&)0f=x)}vIX@pO zowF}L60mivO!)1IlV<@Hv;17N0G!)Z>aDjqFfz=Uc=vzx_iNAWw%2AvE&N=2K>Zny zsae7|V82QJ_SJXaS_?n|^0UGu_R0NCaS-_W_V-1_AMe(leIA1-Hx{^<0|$ueb}F~6 zT4?ocKa)v_JYNYnpEU4rtHQhTyYH7>cvxQ2`&B=*b^D@?w%{VaVP8F{`bhtBX`7q> zD`~6SufLUryT#8DzsG(j-W=p+Sxd=#+;^sSS~~asKWhGW_4;Ox{mECe>EK;Di$XO7%@r>tIHu;5|&Dv%%$@UVcETkcT! zariy3)HLj8X4rUoF31DVK-ZFkRQv#Kp4HPZ`}3{+0f^7QuyF&> zg>D9hSd_q^1U0!HY&1j*kxMoqim9|>(~5{?qF??qUNdRD9I+ohq z^FKV#`+nc|-`{V~oVh2@%r*BtbKMh^LWNAGddH1VhJAli3UK*^Xdxb@T`^n@sdg_% z$-%C$#NzM+|6(p`Kn!kebwVK!kpJ=ew##Ap*+Klw;jeZ34GF=N40#2G%N|@tx{$ zCBjPAdj>>+$aRnM*>dUNwO7FpFW{rR{UQnS0Bd)NlF4n7?;DckA6g;;Hoq<3uskgP z17bD~alcs4d-A`lkM4%iz1xfLH5fJ!rzy;U9XVW38y9MU$agFvVKmd2TXeQHa3gRay#&E{7B?c z`%%cT++ka02I6@k)E%);o6L!M z2Ad3${(9NlyB~a8F?X;u{Dlc+v&-wa>xAFKUvhojH87_$Q&{`8ET96 zamwy}7m-~0W|xKBCSM(;w`Ufz{z-lMjwE%7{d)^v_s%1fhMIV#qs6WLLFb{sfD<;^ zgw^i@esAtt@U7_?y1rd+PR#!H2!&Y8XPta|zaQvM?|HoollxPSFYx=F-&@skkrKNk zW^zf`$GBOJ^+?j&ca?e>euE#UU~Stp+}Tu}Zg?qde@qw~E{PLclHerMyS3kG^>WmIQU()xRw2bS8 z1X6IoI^frrwxs7*3=@M*4!mTS0XYRDwEJwMJvt+?B?B;e6cws(G{Jt5?#fKZl29&& z|0Kea@?_@1ZfNGK|5ZGS-;~VnUT@#%dl3-H_{wch;O4yhmaLI#q_M=;YWi)Kd4GSo z{$DhsBb}>!fnN=D1e$bD@H)w#7&3~-nQ6YN1@J=Ngcr`2B8MEKO>BLfEfG<34pN>1 zA}C@OT-tMv7u(f27lo_pyu%F+&Odgp@sc(;$g84wrSsZ%tDA~YVRk67^_j$M7dDr= z>2?ayQ+%g4ZAsr5e>{5Bq9d=&vPVzC*BUll=0T*rXONG_%>VHgk^G@wW=v}Tcdym% zAAl9-gR?YlPWC8TJJGjOypMVByKWk#1?;?dvNL|XesuDJJc+B3%J!TFyzifx zqbR;&9f!+^8q2Evv-xW`B)?-OM{e|_~OY&fmHz3pK~Oe2+Y7mEje zcAaJG(UT9O_00pyvfj*iX3P(sT7SA0{FJO%&C{L5Uv+aQ8KKpi6O9fiU%AMdr;gH4 zb)4Zo8Z6a%g;X1%M8%oQba;n+H z2_W&w8`!@HQ`>d5ZS$Jg_g|y(`iN;YSG31pJS*fm4|y1V`^I1Nr;G@e7Nv#pTp*hx z@0gFyQLZ+q3QN|3-M#-2In}HLCqWWyuG+dQ64I?khJG`>ThtWkFg#jwld$NG$y49^ zZ}kNBoD!Bs9OXuR4hO`nCsoayhi#7t!>I7T&6a*DAe1!WWNA#zNe}6JII*37leC*# za6V7D`K#oO#%4~=n@R@m$oJ$Q%8USK%@W7gddB(N+^onSn)W6I$+vGb)U(mB+%i^^ zq^mL;q)X75F?cXaL1!lTP~X+r%fA;<^8H{{<9t>Z5DQKee11r@Xi| z)~wkt>Nm5=J|HnjRFEk~UzqlagRfdT+vlG8`x5C~#rGl@-%-jdb2SNDe2hlr*E2`+ z#4%Iw#wDJ0$NZgr^vO{4gHa=A3c!|%$RNX|H(KjG`?}Ka`=G$9Q#t!Zg7p0Lg8i3q zIqO#iB7K#EO78KpY6&Rn@er)da%oEHxZC@B)Lk)_P`@Qh()W;^PQ)<#J-df;5PFP~ zU|Lw^y$K2N+trx+rLMOAl!4TXCcK?)oSEH?mL1Y}zwbsE8fKCF&3x*x@7@GJW6jWn z4E!Sc?p-{=yA&oSzT|>CmFr*ZH*dN+?$~?=n(e#=HFhnzBaTg+bk@D)>j`)II7+75mT9b!TAQ79B-hz|spKL1 zl*r!Uvn)fM?n*uLcWqZOiY+4uctZH`g^-;7tL5Wu-N~cJ>{eR>JzpF7{QD9U)Crrv z+w}hZaAFwghZo+S&8DUK%?e(fNtO~qGmubM^7k=6k|lhDNAGyJ;ip(=pB<&xSE*-u zJ;^z~VxP`>;?&07W6Q&ZBRY96z7Q1axhYOPrd$w%nYL%q-Z1bGVa1B2)&bqcZ{F*^ z{p42gK}#o0-(<`)&-iV#ZJ=| z?gdQvDfSGQ z-bu|J%p&Os5h0HdA;+r`A;(9ZiEv&axz1_*ht^Wt=s_|42Yq;9n6b43-n9G_nahR+ zoV2)D{hJ=#gtiQ)`|5|~kGpT~CTS58Ffm51rpgTZ&z3TleyJnyACjAUB69fUqi9m= z6#_YcXB~yfDJr_F{VCCWCay;|=J#*ioKBTvdZe>}L#juE!>TmwseBxi0}nP^<&h5P z>nA>vVYZqX+a6oq{4#nac6`(W#+ z7B7diwTyS~IKQVVyqtMH@|}?iF3%l16Ng2dIN*)PDu{|Z8{s- zTVNWpy%bATI^>VPFy|0Ls5M0W`5g8R`-4j#v-l8&{-hvF1Y;6WyTh)E29V*GMGH_< z{NB7~H_{PKGlO=b`hH+qkswm29Q7K7PJBDE>e9JnxTjnHZ!6$Z4TW}H<-X^-yZP^s z^JZLXi6C-#yS;0A#Va|f0J*>TO^8vSScshu<7t?Fs#vZ<+tcZd z3&r8Qs2rnrRrRvnoJ~~E=cH=+&Qb(U9CU9v2svzEELK;6#bpNCkVDm@SiUH9@`S zc0qA7Tl=R&)jgF6*8TXw_C4q?w1T<1a>%(B*n7sUKO-UiHe90g0X9cX-z73(Zx zDt@3P3^5kKU`*{xR!l4x)^UhR7z#y%{U6eT=We8n|x~&Lqk5h(s)8E%d4R z{CbzUrYcrjr@#JVB9NSv^L@Qg5c#x@F4C7{{etmOYvtK7^l{CuHWo8^YXj5LYrwoU zY(aRE&5xRfW9boim4iTdx@h+Ss0s(DbCJ{`r|D-_NBbw0#{l#!s?SBHRC%OqOsPP`rF{HT+tg;C@Da5}d#)8cjL#L% z^ga2o!aa>M+3vbsc=GEp?9o=vIz0LNHs-c0Ggmh4^n!mO$&C}%ki+8ZGzpVb*V1E# z^%c0PM5oeG(W>cbZ>!hNuX9yZR6|RO^~C9?T)xX`8+pKf2;=$7C7cGrj)Q`$#PKg0 zpdYSboLHJ0xj&_k=sSOCLmJs5YtL?ip0?xwtUBM*t91!~o1lyDNk;eIL)Ei=jH9=n zUE@P$+u`us2;CvrN8&OcO>f#6DQv$=WyVSDh2i>y3DrOytSVPn3R+>J7axf`83d?B~h;%O+W19UVBxc2xofP3jl(o;mG$S zkA6RS_hX>tN6UV5xNv?tqy@i44~bNyu)$NsAN29+G9N`z%Pi#sX7LLfS%N=n4?p>2 zgrAFGs6awsx zG9oEB`bYltcIpeJEemZq5RJ>hHTsm{WG~=B*dYhWF;m7#5Vi&Sh#t0{0Xka%CmPh< zmV&kBPq}Tie8=_eHPqowu3R9@YgZ>SyKx+I{Oe%qSw|<*)+~&owO~UIUf?rSmrBj< zpAXUt9G(GTsK#+zk^%79srvjSxH75xe!#{nJD0t2on&o_ z0|raA^Mi3+g;r%&hD-n+tSEW*(50$*Ji>f+b#*c6B@^yy0DcQy`@58s3lCgM>B`SW zZGDZJX-e4XT3gMJS8aTgI?X0NShFw&(B`9MriXeT>4jwH~R|nKV zwvF?ACIjD^n#BMUavvGGtWX6JLxzwJ|R3)Lu`ooXK*3{wSES$K(! z%i1*)?^=UH>2|5{lV-hr1beZ#=szc!zdoFBzJ_!fSTQ9&4vhjNGuNL!DcLJE>FUBL zEQApbS$OSFd%tKqocs*l=J)tU>qUQ^Xf5lw=hXv>LFK3hHIr?VMR>KXewq|PtDC$o zaF~8rAZk@~R(lioV&xcb4G!vkJN91wlW%yw!y>aIFvAQe)-~c_m z+P;-H)7#{8598Uh=1Z8W?d>jy)z)sndZ7gCsAZrK>IGlv_ z+Fd*Yff+LZgi{>M;1rnX46$IK?l&}UE}TGq8k}}k^x4iHzHUc>R`)Ue1})Ct6B9Wl zB~%_B9{=cJGY*4oGw$)6!9WXzxGIJ3O(1d#emIH$4a&32vI!XAgA?SSWo%m@Pkf>7 zbM0_w{yrIe%F53EXY=~@Em{0h0W(jowzl?*8IDx(D_-EL<2JVCLc+_>J{XeXaj#S! zOhK4x6t}240S>Pp}`fm6Vp{hRSbIO5Y}oz zSdFb!)4M&Cz1h#Kn1da%Uz+?2HI)sg4yNms zzbwc!#cP2U@~@?g2k zlV6^h+ZKNi7yHn}pZ=|Li~al8v_DN|VzTT7!80A5SV~rLZ#K|4r?yx4m8InuJX1%3 z4on7Yu&qqgl`y(<*?A|ZHpoofKAqi#v)Ke zMIF|Ls{pqYE`~0H796fG(?<)-5s%x=pUb%!ByjicJzG0FZ9_wAT|K>py@hraJ-q~^ z%QpgRCgq0@2{$)4pPHCN&(E7*Atbcf1)e^oc@q+%4T&H~=<4d;Q2?0ldA2k)sDcf1 zvu5hBvx7cC)-XZXba0NfT}eu5wx@Ubj(uK)h~ z{G&m&nmR1tXc8}{!z?TZNyQXF*4(-?FJO!9pC(6U2x2@3~;+nA834fdM_-{ZDA> z`6p^>Kc}kf@D%&V0UmB{^ViOag_0$uiiq}zDfO5p*FGi}Rp$i})1MP<|A(tLx*5GMF${Em8 zWK?klM!_yk2kHC-faV*PKyqo(;)h*Q-CFRVPZE||{**{OgE?}9-R8{;4~ zuJRC-AnBg>L>;!R?u%aMgUv(f+KVO6{+*u~3i7rrtaVQ8C4m5@`s4l6rbS5xc7u!4jB9ozmz{Exw;R99CGP(7 zzqEr&??w8dCJ@CW#O5i$p2kZNlS z+lY8t*TQSLtC)m2rp0kg7Yw7&L?DQ%{CMAbOTc`zWo)p$VEUhLu^mL5#d5v&aH42M z$P33{Roij%ElnodD9~z_@t-;xFXt=qG@=;hZ_ z#XCsKd`Q3s&@CUqBLDjvyc9XsHoV1xgROpm8J+l+z^oJ~^31=ooJvqG-762!hy#@`%GmT_p7;1o-&W zA3S`Rg&BXpj?UnBt}~sw*nJfMo0K$(T-?1|<){jXuy@WG75K9m85t>!mrrO0_6*B| zzvg(lMlZ72Q7t;hc%0i~$1h)6fAR41u#~(No@letQe;`0cD8Qlu$BS*%Tv8+(=*#M z>V8~g{fj(;8b1CUF=_^fCAx3&YDQ$(yZWQKs^%gP^|RIoY?(SnjQ*f|SoNV+TkGl4cr(akq6n>y;{oddsqm@*JekIQ{Kz$eHX$d3NZ%v6xGINF0@RDBC z&f1pgp>ZkNF?o4+U_sE14}~4+=6lAd0$>ukRE`Nuh0{IA8CC7b z+blu6`FXeZ>xW;@9z5^@%>;lXJq2D~H9JsZkRcn@-$X)Aez@M=wst)sd|m{TxONv+ zKjWy|D6XhZ;_;+tUe!W?>Br|J`|KLZD0PxbV|OqwU-+Vp&t_BvSS=$cC5 zZ|Dyl%i=VQYKhMx%Bw<$qa>Pnh$z_JdcCHujGH-mMulG88fAFXM|0j|_Gf+cn;2|< zxkuXn=r@f$_|%N436Ptik(eX>i>|bqSqrDa%e;LhKEOPk1P;ojdL?mMb(k^L9uriO zMnCv71=x~irIk?M3!f`iZpha7%-r0)ef>VqGc(v$u8xNWlAqy|@wjh24yf`lOQk8QoOtf5${~ zPHzQo-E3c_OELnnAIDd|P-+k0;QY)a2wT~da2&m`urO1l1C6s{9(f!58h!xfRu4miH2B!$ zf&1zKQbc~ISmTu>4cs7cu1O$;V0wYX&gSp$JreU@fUF7en1@4W1g-t=Me&|g!`mvY zzUK?r_4M}sJS7>LuAek8htHUo{4|F6Cd!j!H<8WzVpRxlUy*(qlMISz(#>9mfTI#=YaXYukRu01{0dEUi0# zWR+4iHkvsV46{wHeqgAgE{qLhJ2VFy!7V}VE|toOA)|=b66|c zHj$02!avn{F5K;hKOL=}LOHMZVJYehOGsoSiSBon)6=Dd&!NC$wasFd8kQUt4V4GQ zbyNNqCg($E-;$ow%K09(etrD$hu_H>)4g?-BI7DrWE^|@)}IQ313$$lF@JzonnL|z zU4|#6##L%hlJ7BJz1qo(^HVi-TWML`@C(>MzWtW6*Cc6k$8-Ca|U)@sIv4oCTb!!KT7l z)x}sR-Zb!1I3g^OX?Ecadwog?+nz#lORo|^tcQ806-41caf{a0ti5#VvBouj=*@aU zo&&P~LG&5<#q1ZYvclG=tk)L`)+nwHc_FP03=(>}v&gbQNI#LBZ8iX)h_O#V>lR>U z8K(EkPae=cOm~xldnC~JUSuRB+&nlue4m;cBhhm59cdXD*qoRFLjIyhj~@pYE_^0m zb=!xWfBXvIO{0ph9T>_-Qj7&XXGB3CKG1fb4d0ZLGrMv7HurAv%SpjszkU&*+xxfN zvXght61mWAA8cWY@f>nOw!dF3^G}6CAiN9!?VMXVs_`6UU{fMV%L?dHklkf*EOpM( zt>8fh>+fqO>KbT{47oWrKIf1xY-%H0S92HIAzpbClJmaCn)T(&m&WB^BR+p-x~yz| z-Wp2dJV^}e9r}|((egvIgCf8y+MkSKKZNs^QcKQ(Q&YxU z>TK~tN}4Ybi{43gHwc&k6P=)#94T-28KPHg18skj@g1r_y&rg_P4$cR8hBLjd>BM0 zQp59Gp`;r}n{NTV^)n47sDo~=;8Q1?@ezAOmq9Z3Mder^;A}BaueNr9Ffe*CfP~H{ zwLe=NnJv0v+LS^6?xknB5bTMOpgP7={t@n$9>eAjS`oJzy~U6w#%|N4raQG{ zCo^7foE?(I;kabE#j~g_-~^b-{ieU_csQ}O{4u}>qVsN?G_iQtw~~{JY;&bpndB?fto=BY|GK40TDX|4@kr1`*I% z==a!IR%0U@-_((kk53)aWo%aLrS|jL+L^xp%STpJE8+zm9Jn^xbrcB79~u3J&D<=I zlk_R*ZIm^Ns1PHR^eG=)s7H8u!aPs%O&E-N_KpmA%^6UlIA zZRVzARY23h)ZyBYs;{r~!NI}1&z~b38)d)d=JHYEww8yUC-sHRe)+;t5;ksYiruW`IK(3Ujp&Kmykb z0@!#RYO6)(u*tHI;ZtJb^;aW&k}T}8?;e(BR#wuPROgxa+fdJQWgKitDER*hGU;lKZhhw~Z&Xej8mI05$=R}oD zflltGQacewc&a>jo8BX(P)zj5*zQRIw+}RAozaZ#Oy=|RvmxUy7D2&Kl&^&9l1II~ z2XG()-4s|tL+on839$3GP6Z-aj>SHI`V+c|}qS?xST8&?S``B#B2Uc8vPfHN?>E)E?310v$J zeipg4bhardSg`L(?pmE5cas#E6^aMF1k<(wGqbd_tZ0vEm*MJ3$t=g4)p|2Uvi~rz zw6wILjk5lyWytNHKb2Onf)E?KxVU)5yyU^9F`oQYCplRk0c?)KSS}Q*1sG8>H?yj% z86XZmFE1}>^RTpJD&(aB@H_M`Wvc(2bUFmxsfIyb>P#)Rvz+(dODRgvR|9bGklWW( zae0m4?KsTH`YdW~d`SVa&+Z$eEW{_M0F2kh1WPOB9f7Hk%Y{)1Q0r!ZXReI4aa*Dx z6UDJ>K!ab$u{H22;{aB_jQFCmMQ{l98g~-LQKODa$ZrI1g1z^y?>?$HpMz|5CDnET z_5wf+YmciP9j*v`D)wQO9)w2p1q51slJxZSIA+n;)})!x6^z)J7z!?cNWv@Mmjayu zLYAhi8va;Iix~FJFGwpzoRU?-v7-x!WfivQqWJptt9g4kJi;}us-LQ=D?3`}txA4Y(` zZf8Ck_1G{>4=SSjV3AcIs)=I%cl({QeO)?BD+?%15drDs4sDn!p?fL_K)c7-r02em z?`;4ehSa^7Abtk`!Fc=Mu3H#SI>j>Z(-4I?t(+yX*Q+>bRpz8J)?`^kYfQcYYIOskW{(wPsWz7 zUPTV1NLU=LkJNhaU$3_R^Ty|-D5!us8*|F9eAnNJOeKyj%C4l2sJy!5c5{%=;1V)k zLb+w_`p8-jEwqI!GHcLBN%{x-bKMKXcthj?tVfU;Vv!Wb0Ag*&RQ}MS5s%g9P%Z`- z8w$iaF)nOhSWJTZOZ%9_XRqX?8Ei^RBB18%Pv5D3ZK`ixpd`j(Ato^r;*EyE8%-ad$EP`+K%D|qfsw`A%Z((4|O3Iw3sc|ZGus*<4^hE zGYOrHQg*M25nx^MELd zpE6LQm?}E!*Zhc~sZY`F_W&Oq*#oPkfAYjG=v=#F(7tPP-@>viGg0W$dk|)_PF)jvN*p{cRB}qa$?01i z{sJpAb9{I^GQDY{(h$oxrnD<&Yv*4jY%O@v9dBinbuouKC`U^<*Ea`H1RG~WHZv=e zH2XaMx4vc3O-^Tfd=`Af;X^;%mC2t50KwU{E51c-24n@L`WC~}hI4KdwkSVZjlmh_ z*??h@IMqN|^}k*xbSSjUZs{<~&))NtYX3LF+$}jxxJj8?Q5-HV@7(qVFZf{VA8{D&NX7M@4`GmbTp@$ro4KE?c9vzj_}phzQ>!>*r`ZI7yDU`cKqhP;(m zG-EjDM^WDF`#Qi#0(j$d7kJZ*OgB=$_q+P!{uxu(tnlMdFY-f4hFN|Ji`~y(S1|Ci z{i4^XX@k&0_xAa$#r+JB4p^A^S!UCBd$Mxn8kD;|z)NdHgc!&e zvG=ri4xA_&0aJ({;6neI%lGkatl^Ox6ro{w>!h6G48<~`_YLl#+#x!hha!kA$)$2d z*%|uI4HcTo7`b4wsn8ObU90m1<51-nkCie`~ z$;in?$;ilRS>k@bYxA_5Kl*N)njbjVh-qZVmCz$7X2qo!&=})DbkGb(Ya!We(~8z! zqX2T)kFpYCrTDe_lLz88-XDz8Zv9P&&BVqpoo6zWOo5V~JH0ACHc)wu3`%*pA}ozpv-e$R9zNZknozpKk`I%WM;Xf*KSFk zABN+}228t9J73Rsde77J{hrT_>Q(9M`tC4)4+FOv4pKjKPf>x9fNcK;*n zBW>u|r%Gx>f?`sK>11!cu^E~JK#iO`mKTXl;J0@?XcD?xwBqNM4_0uUI_~>E;P5RK zey4CB`g(X;m%H`38`3SBmY$+Ayi5tIApi=nG&N*w-%zd-COgiXS z=We#12fu)>*@IkRc3Fe$l!*ifaxMeOq@=`oV7zOw#f1&55FaONLCylgkMsV9E0;LS zANPnF2Hs)NDOHG*Fi1&S$t79}Z&U6}AM)f0&^$^T%vkuCwt8IdD)F-+EX(A<4d0H= z7dB^io*|el@E+mQpN9T;kRKX98`SaDxO#Q_y3j3O z3UPX;a)I2VptSCS6*CqOJ;;87nu>&QNT)E8~6*?-pY;_$%))r|1@_`)P6gMEDE zQotELKYOUH9iU_*=f|JB+PF^l++mIADIw>&pC`%CP1n-EHgN zvRBjr$;rqlYNq)I)8)van?pVuzc<$^tcLJmDuPA_oBiQuhN)?>%*x@F)@hxTZUS~N zZ{6|nd;kD(oiOL^stIFcGv+`Y*4i9!kzGaI{Q~0D?l{gh%R#j5pDMeg4?axN?$*M? zl5=8WVv?R)pR1)5%rFAdv80YTmvO&X7hj#K^?Tn#>d&h)jlx@JYtr)Owpj7sPTHlN zHR`XYhopp4A|v<|6n$(+S3jv_H@Zu}<_CMc02`w)GyR>eg9F1_O*T>3ydF$@#*ZXZ zm_*;^EXxqKTCj^FATpmE<}z&Z6+^FmK6EZ}rg6LoOP+!t#Bkvz4}-Z!M|N~XUHjo? zAdcRiv5PB~WhgD+aq!uxTk9CkQWk#k^GfEzF_KNn_d zwG^-r-M?2);SSw3ApeX@O6TwVzNnGc{4`dhGv!l6b92d&J$KXn*ISxeN+0BwBv~j$U_;8Puwplxm0hzBJahr6=Yedm* z@ltG(x2V$9y3vc4z*C{#-T}RC2};(uJ;xWuHTT~y)L^Tb-xN-8)v^O`ro9wvA|Khw zFfpt2Noj9Db7FMJzt#u_;oTABzwZ!xJ^|N~Kl}RQ^#IES{#}9~lI1;CnCJG?H@;8e zP;j%|v-s7djF*bVBXBmrI_`;aP#m{C!|pPJ=R}K}PC({iG$YcCiz(0z{zGBd2CesDk(F%w@=X&OL;H-#7p(7 z9SYd4`xQ6n^~6f{tw@W`mh0IIv;cz6ODLq~6OGhAEL`_s4q;1rjGK2sz=ne!VI2DnRaf)}M*lRqp*E+J1O ztL&7<_dX!jUkCP-_31R|)V!crzkOz(H1$kC-=^2sozsJBRN)7Mv*<7E7U!@)9I4Q9MF~&!eX` z8AM$?RfT2-w2`xPxaE&U2@I>S_=hz;z2vtRn@GQ+xYvWiDdYln6v+ls)LrzCw<>rUs^AJEBx9?*&2HE4T{Af1E zw&*ioevY`qDT&21ItQGC4zy0cQ^L7QtnhVrY65S%5|&?shAJVhZZGUC@r9Sa0jm0A z`#v*bO#`M(qAK5?e(66iQ5xB$9NBr1X+j^AsdVGjG8fp{`kZiCoWcd|lL^eUD;j=& zD#F;czjU38n>rq66KPS{g4eq38J*%-Pnr>U&a-T3_}Oh~pKyPFUuiI+p!l)-Z_exW zv}eJeT2~BS6O+}^%GL%DTOMA{Pru@$h+pZ%bYTAhz}WM~Axf@C_oTFMWNg#TLJt_&S6Z%!LLN4t2#f9cI_NWeys z%=*|fR4BSMzz@5q(`wg{%G!?c_*sVV$}TCH0zL>^f7dhE3e>pxJB`YzCt2LHMRsv| zw!EG!mC-gZaLE7qwWENQnK?gTXZyIXw^zt{UJ=yCZ zuF)wMT~{-q08}#|7I7bq7o|U_p4rVWMyov*>eT zHOQZ?g>bf~;0CT!K=oZ#_l-HWR7SK@!f&PrhB3(-3Uc|GKYa1bJ*Gzn6X=iIt%4AJ z{tOq)2J=-;`XvLM6xh3#4uRe7y4-lt4$Osp&782H2VvRlaYaRN=O15X=L@FMIlR@m z3FmwsSk0zb43`Y6p@*(kfW`2WV1cMuV$D^&Va8VRd<24&Zud9K8^4%^R~*APuS$N& z6@)qES;b~G)8_GxKWq8=^}z!bl_@6zD7)`O3v_x$@5~eeVpnS7v%Y@4^8Wq%gJ;v2 zzWN|3V#vd2yy^6}RvYpdO#i2Vg8Mp6c}2zL2MF8$t-adQ)AK+1J3Bj#H<6v4QP2fC zl&6COKP*77wFxx=v6toL&+JHE!j&Q6zc=a%`C;#mmzgea+!+|;egguPz!%rg>kUz! z`;17ub#n72ltFEu^Y??V<1~Ne!xshPxS>=!z{S)ACV=V@PL`tw z`y)kQ3ANiUgn%xIa;EwP0hH*3p@A8Fv+0SSPOYYRC3YOI_Rf{gON%T-D8?VhDd(>K zbmDQETX=0?Rr6}QF(9INy4-VO&pI^B%fOg*k0KD7wk>A-kK?3IHaF^cO-!)%hvzX| zt^HY>D8G0-*sWuGwg{?^<6m;6K=~o5;Sqq~aw5x61FXjhs~PXCId4q4=~efhqlasn zM;kfhC{%tv;Kw@AwnjXVfSMPGN_Wf5B1X@jEOthB8(j-8mm{Fz;Mn=WYhr+nW*oRZ zM?gfOsHqv3h=Y#H3kwV5lJ0k=MPV>#)och8OZ%Er2U4?3hfZ@`p-Q;HEiDa9S?E=l zoJUZx_3~-OQ5jSOL zJyTzWERZ!jMs04wV9*u1_3`4A%Vvd&O=_yUvf5FlO++vfDyn}A6SvUsh{%eqUB%p7 zvZ-{K9{i_WdSFKcridICh};%aR0o>~PUE<;B;8czhQO9rvXrpMW`S{vW>#A-3R1mU zf?XtHHkbfvSPTxbz`-!&fJADlH^y%Wl-X?z87nlX09h_te2;CROCWO`7!LkMlK0Md z+=16=W{}XRmYl1S53DuU#MMQ%$c?G}(;ToaUk3FxGUIculq*Jz!!0w1*rw~rRqDfI zfSy-7Of8g~Wg!x6NFOLxODq|{*F82tZ`lb8(&pjOz-eaSwOc-#UUZ`Ao@cIg-{V&{ zPn!;&L>`=C=J-l)8_b}nK+8Qo1Jedxyrc08`KS9l=Dp+tbBy$4Pc|GP>CZN20m8J= zX&OEbiBi9a+0I;Dz2i#nycdH3qS;DgV^weF4igmHq%+Z#^)Hj2nO#YpoWca8Et$K+ zc{-x_d(WNR**TrtxmPK7hZ|mI6qIYAOl_&&$nfy-h0H}W3ckERZ|6aDO^Fd1><)IF z8x|zTq@Pt(L;<;@24)$rUJcd)xPrAbiQc;@<*v!96O^^)S^&LjB$v-gf^6tva2LJS;jt=BJ0>?9g=l0BgQahc`onw z=kt8O&vAU8pX`JXsm3i@3Edt zu7{ebH=h>sW6eyZe}#?UBy=BpfW?Tbil1aDR>yCW(p0&~6OQJgOg1vjJl_;!HsPwq zozpCV#2_;c*c9O$5Ag3lQ|qxQ3H;-CuOey zt`cj3-`Oi%`pGIRB8AK09cDz>zGo#5 zdwg5*_Opm0JQO;M<|aHZDby%`>zjGO)Uu-LhwZX$%|RL6+4jmY73rKN6x;oJXh|$Y z@ZIfC1s5u9#Xja%S$G2G&jW+COw^(?&fTp`Zg=yh%6S#2w)S1wXqZEH6$rP@t*B`rn5d8%fA8~UVwE$?zD^XQscT;xFj3OcbAc989c z%I=3%7*3YApPJv|r#zP6BGD6?y()Dr%~$>FoXW%YK?^Yq$NhTnO2{{r1?RzwSE}V8 z8~&`qD`KIC4A^fb{A49p5B~$zI{}qd-~;OSy{io;u^v>-K67+4Kqhin_}QJjc>Y5% zxB6)a? zENyZ^tZk#QoO^QR>p`}TZYwIc=Sa&Pc$8>DPH~5*D^FG<%3-Q@z)+$y>ebon=U2mC z*L|DU>ix*NRx335I5}B#>KpepS{%?HzWu8#(dV@>#oj(*GJC0J{8rSU#DLD{$R==$Px6>*cE6!P951n-nnp z@8C#S5-C6$aBgv^8 zc9cS!ao-8tyDzM<(A%OL3L)bok^7Cirl0k`ct42n&fsDFm0PB&9dp#Y=HD{v!e7%S zmgBgmX)bAKG{gL4L-ntKnCL0gFQ-UG6?D+gZ{Y3WGuFVheazI_`WbK(I;U-SbX>h| zZOywg4cgY$i5m*1txNUU>XR?{?7IM0Yrb80FO54T^hp|jkMg&gI-)Y@lA(AzbR2nu zozsXCdlXZ3A@Wh?*`*=BK{2(1A3pHT3xB}EfD@^77IEQ%)s8d`R_4_-Eoi)00f=xS z8^mk<0~Vv`eN{viWEw+tVM*82^rZ#1uFig^vASj?jTStez$br+g=~7>jSz`E-(%XI ztwr8)xP@Rj?hs-hTwIRr)}J3e(yd+?EB53__6FYh{#KWg#ioA?qCZ%11^j|Ay!ALBo6 z@{c@tBjdomlY?d~Fb{WjfBwin$Hu05VOL+V zfKeIeG^|_PX%m) zISA;}l(x#`#4TsOhN!N`XYarBkvJ@J_C8OA;G&Q&-S%#))*YNCYsENSi-rnA&oJBjui~ZSy%K$(evNVb{ zabsK31Tph#E7hCXpV>nCYN>a&{>;2n^OG6#P`#F-mg&yFNtZ85V->T)#v!4)R5kO6 zE-~FaBRh67*=G8?BSOE4IUO`uj46H^xC(zivdEh63JP3~W;M0NTiv8EtwY{W1K8?& z9-W(UJOY;4yb#=Dd_@2f2?srXLK-G6u)FgkCGWSplx%bOZxL0yTom!~vYv#E5$s#LbN3uN)|0@@XoOFBc2K>mqp*#a-Ax2d^% z)Axzh;^zmN?4CYT*iW)-<$$3oIPaVKZaf^_fNc>Qj_g%Ew$$L@FMA92@F+^C!vCkv z8TRB_CX}HYrLpruDuVU9x({owSlxLdQYWwBYLwG*3qf^LtJ}x6Ngo(qLaYO8U5xzm z=T7&7`rqD&J$mw_{yK>OkNy2yyKc97BrO)3(Jn~2_}plKzE&^`ktsjvrVV#|_%2e9O^GiJc6&$mT?Df4 z#cl&DJ0Y!vk8J8iqTA4_!o<}-OdEu`CHyQ_eM`5g%?-sk%lowXRjEI>nTY+#(L<|8U-H zaUF*Ez5=WXU;qbX(jK>8VC(+fnkD+&)rkM@FU`>)VveToXGln^TJ^}h@Gc3FBO{&; zm*Z2vtJ>)bTP8cHLJo9ap7^7sdYjA2T$NHUTvz+T3Xaa6vb+&A_!evNvLVgZ%Z84d zrQ#@=d&A;o6#`alXB>9_mxA`g&r=`UXUr@Ho0yhXH=*|zOutvN)>_H=&U`D#aNL*mne`P1LO&r-u^c&)xay0-v3NT>lGBK9)>@9^zFy1 zyF0Xidk0C)3 zB3jO^;qIrgRM(-uwhKwn7Swp4W=y<>p{c} zP-G1e)bnyEVxD{_GMp}%isbeZKqGi|Xy^u{dcs}-!%L^{C3gt>d z7(IX`JbCiRH2tEk?sW$TdD9!dPoZ(|8V;xIs;Uv*@al$rITlc1^IH@bupZmr6M}uU z1lrJbb90VlE%$MxogH5w=dUxDBMAvaR+rA=Hc9Nf(ZIk!#diV6XiC*Uq-pH|+d3h# zF>NPsamF$*mmkNjcx!{d4qHDKZs_N};O$2{!cl58ZG_9))%U zQX?aySMT31{H%lOXQ0lnQ%H{ZnB3CR(qRihwYh&pWpudJ$kR|<;SHqUCf_@DpLa;| z8N&WawIyVc4< zktUix%8}?SoYng?Iy{WhGFo^7g8KiGu55#Sa8g4Bw+OI@p%sjlM# z9)8u!0lAj7BNvBqo${>%G|${=e^w>Xo-HGNeUFlK@8kUk4qV)|hf0cV)!e#!ZtC5( zV$<)fiUQl$TOBW{+dhOnuY)>M(9fP*P<}mEc+WZ*F~^^TRH$>KCW_oA)0%&5ih`({YAczphKt6^bH85?76n2WJp_>H#(k4_0Sf0uEF z7;%rf3GfJxK+5h$_I{N74?eMqv%W!~oAK#Wy`fZ%=@2HPfi_OCc9qF-EzOefWvZiN zkoUv_RJh`3P(<2aEh$eb@o76@qx&zw-bn%77QEbiaF zlC}jmoc`;Z{QK1|7MFH$Fh}amJ;(0G1gPANnMr!s47D9J(YSp_0MqnJc-tkp$^(QxUU}GaeE7xu8I9&ED1Z7V1x6xv&PlVub5n z)ZF{lmY4-w;n)&DrS}XSuJJALoxoeR-ruRtB;z#AgD47ogMrCD?C073K3?iWAm+76 zesg#2$kqd2Kfm{3ma=KlK7JZq{guIWb8U2KzANVcv}NnMdi!=pKtV)WSy@>#bm3js z_tomL!;I_wMED=4QF9Ua{ULSa2T3M3b@vr>8UqRQNcc3{v!8|S`Mt(rn$ z&-o0DYWQLa^v!Dj{8a}$9zXO#NbylhxE@S6|Hw>)eE8ue+IXz!*;cDly{V3iU3=rN z)wy52rRj_CuGcsFgEsti4A=4>R3)NWLdv(kb0=WH;k>Uc@Pxqmu9FBZL_}dQ~ zAMJMjrK2}j&LD+ssu|7+hRt_fhL7Vp2RUL{y4$PpBl}VnW`9$k-3llDF0O52xDeNHM=_SYQZ2Q9(Y+W^O% z51`7sEeX$$pbgF`Y>Gcw%B-lk83*FHXFeqWaQkrsupp)!i`7v3>^AnKO9~m}=jVrM zvA?*-fS%v)IJ@x_ZP3nz^A`RtfR9-gtf3V8(Skhj4^qlR@dKKjI0 zkM5)N090k$@B7iFj>K2wVhN7Pn}g6&IdL1JuegMhCH@&$gQ>|;`6v66TUZ&4O_XuP zyhq7g%J!WNy5pCj*aY#eW|u-Xc{&Qe8IF<-dN8jtbTrW2-F+UBmM9!8rfx~0P|Wbf z06#f*5X7asF>l=Xw5QHdJ}`C5)7V&o;y~7TeSE2s!oL_J{rCVlKXUx58^f#j`1b+qfe8L;%h=3&#s}uQ4k{<{;ZRZ56TT- zx;qqvd!kbhy4}%W$*+s63qRkY4#Y-nA%wf>32)xKd-Q0RLGKz&V7^Lyv9ZOD6Nl+( zM4>gloIP(10}cV1lP9|&P<=kPdZ85-)iN46$+Ul@#>y2mSqNatLL5E?sxC8BM4DMWkV(x2e?1H=o98G!mq?2T>3DCp6JC z(a~zB*u(Nxzw%~vVVZZ_+S|*Vdye6`ih>-Q*DLYrsM>pjQ0+$IO2u@H4xDv!2rDcs zTnfyXU$AGaOMh4l7lpYdBqUUyp>G9$r2n3HiCqpn`Pf~(U`4~E)$C-l`}|vshCjIl zF-Sp6I%VoZOY@rD-J0YSyCO=6-)j-cP{~f0VZ6O&yRGS2YX{aaNkc?SFS46ZJ0r8E zWA~alJ<|z=YcY!pP!?j&7RzC}1$FdOTj>R-=#{vHMup)n*Jj$P>L7&?`D+?Sa5$5% z5~p;pH-8Gx+J6759>a>sgWp|trYx_f)5t?FzKe!5v@6H0Pbl{(2X(3#^u}JD78=l6 zW(%3i?2P+VUJi=JswVb-^W&KS`$KcgvN3@O5s5Rnol7$_vt;9orDU796Z$ms>#uH@ zJKA!Ys?h5?Hq6bB8-zBe1IBIz1H3=9nJ_4STBi42oIPow$AU*3wgwl%7-gKL{mOd2 zz7g#)hd4){*v$CZh090G<#)dm9T!^!?Sx@#4%csda+0+BrCz7g``sJCDnvu6t3w_y zR`IwL)>x`wql$ho;~IWo(qWk?VkEEqQrxL=tDhCv&*AcVn&qsIk_h4>j6St zXmuYg@ul!c@ZIemt*F-nC1;+LG2TgymKkc(+JV~gWSUp<$wm~eJl1NB>8w(SQy`Ov3E`i# zY44Ot3!aQ(PWZx567j<3y9CE)@j0gq`((?Mt8`p~kzzDZWUq84%Wk`ruv-!2Z2*RU zVRiq!bBc;(%a3NsElHfpS=%$$tO94S(8UI%p=%D{KyTs_g{?WoXE5P*2zS~IBI+}mNc2KJ zqR)6lnCq}TmvBSaJ)V!HSOc^M1P(Mcp zuCBe@f8^|H1D~Ce=^6-|HQlr`A3tf(*3oJ<{N@8Y@&xQYL!t8h;`u~j{xrQ8M>5Kf zyChoL3%{oM@r|o>pDru&gT6di47!G{2wpv8u0qiOCG*-PH-@_N*Z#!$7D*Y1>6t5^ zQ0;SJ)S@>|f(ZA@pdg0U(z4w5uS{(d46Lj?r>snw{JQJGUz&y2dFgy96^J-jM zR5se$(0O20ueV?Gj8y5l5sK^l%|YzcnqKe4hLUBci>~uck-Zz3g2g#$>R{;<6+BpA zvS2YcU}lw*^P@7g@nUCfk*VOJ7yMDh%=p%)mIN+*gyYwpiW#u^wZ1!D246PY?kVtu zF<*{Zz*L|RtW7%D7rV#y?roB-x1;Re+T8AmJ0Q-A>Ym0?R#xI&)#%sKVrf-~D|}Jh zuMr_wcwE2lrWn{ASF}^NYpc=sHrIZL+fo&#K2%5NAGAVzRYd}Vv~qEmG0GpPTU3kB z9CWp`PI?v}e8qwEVuOteypf9suL>MKY}lI);dpN$;e$g%QRNflLZvkgbK>ZMhVQ)k zA`j>Eg%8ebaKu?lR*vv~$I;MHpI&Ls$x^s_<3`WuPXuo5DO^ZQiXA0BkBz{v=M)wq zeXhUye5#ap?7QVj=2qI8<@K~s++K(E7m(2*(c`VHd&HCj z#26nx>0bHuvxCGb17nzIfEsJ4j-E}XtA@yz9{3E*uZobvr{81UGM+AEY$F*Df#Bve z%`C86D=IupV?9fa?{bvfDq)WEGU!Gb`Bt|5STtrE35{+!khZr1DrvOngfwzhD1x;X zf?zQ%CJSgq?CaV&xw$DGO$w$En;fO!o4*|)l3+$skz^`()$+X<=hm=h0P=SqtLPa% zV!K1%NoJoqMOb63^4zW=5!B%M@yMovI&m!xiwna-t|-({(e0-G3CyLYzAN(-Rz6P+ zGwgn!lg7Ccvt)`V<=3gt`DL;pnxzNE%!7lgtog+(o#qs3OUfp!AjXdYJN8eEu=KL+e-*>QuiTKIv9u;WpOE>nuN$O+{6<^v{ro&YdQwgxpw1 z3j!RYw^BL&Gx*Z7o^EWbzf}42oo+VxnD80GhkHfn$yLZ1!8FR)U!L)q<#208(5~Rr zYY)FFzLuT6Tbeg0d}Ocsx!*COvE>{r;-}aS1s3FxR<(6Gfm%6E*^;-dsUItv<*-8= zWf{&X%Vax;#SG<{&(LgZ$t6?48;N_@+l+|Ua-&N4>%;GG6eXCMe~iop@|{)4(z_D2 zyxiROnm38U_ESr+2KUW@52h!V?ubMVY2ts9Z5H|J-8aS7lT1fcr%D|s#tuFl-XBuL zaTWqeEn`1l;X|&8|G7HOi(PXdJLkmdMHX!9l2@8j+wW(4L?mtD(LWSb=x>8LJVh|o z`|3Ulg(Bl#T|8RBS1%Qz>xpDPzXq?;>YsJsjVR=Z=uk=a7h)Tw^;`@@kKGGp?Pc4M zzCnTx-MNF5Uxg%6`#rXa!I4bo(U1-tw7zTl9KDRPm-mY6)fN4+@^XKqg}A<)CIX8F z3830q4GkwsheO#&xrI4x9Il#&LNy+pW%cg8YU%&X(6D8PC2|WVSs;g&LgfEA%f7H> zEub_85JG}br0BOaWLl1M?u!(U+P|DACijc57rkoB+FYKOxBXll6!EfP-Q|MNvWJFj za+5!UzIG_aUnUfj=I<(!Iu8oHbM7!UMTj)%*YmNg;=@9_jaDu?tq1>Q@C;-1G{V<&C-ZVwC+>)x}QOY$v$V zHDoC4(?Zzv1TocVy|$auhJP&AG`;^`OqXS8{LrAbY{|i=3e9V%5;G)HaLp&iHhSgU z6ZlE6h3yD3s$jH|>k>in|y1(hOA zO4)X;n%D#We2wQ8o9=E7{#$oT+~zRR!o#2ARvp(HwpZXs92u8R4}x*J46XWh74thf z+JS+r##N{jZblUs7eMF2#~qSWPi5HsBBHGyRDZIP?5%}5@`ADz`5jvWL14-@lVfa{(kRV zHf<14a)asM^O{?o4YURKwPFJdG3L7m#FSSIor8?4(RoijhymZJAp|76zVfexivZ#N|RWSlkb5%yKj1NpI~oj%Gas1^~ZE44AJ zNZl*)h(=`tYFgUX_A$s$wR)J=_$*HC=oOU>AQ^K&deykf!^lKAB6Sytuc z%Oet4^vjP3{Myy-(X?;6?mOli?O*M}@h)|LW(r+L%iR;TLaXXn;SiG8pt!v^qT=Rd z--0iNg+po2p4~;>j$O55W`Frn$Nsrbe94duqpnYTeSy8x7lC6QZd%MAs)v5ar+^lE`nPe7P2%WZ5C3it>JA+EuZyAoP5J+;V(7nr zMKi-Z5sR$WX_dgtCH85W=!^6W@;xK`sxsnUd@%I)0o<598cXDzPfkF+w)^d*TjeOe}f)Am$Nd>R3 z4p@8592h=(?&Nbkj5BOtAg+1c9@ch%^p|;F&=e7}&`j{ZYCDW|u=ZLzz?dWHD$_Mj zuZk<^M5IS-rDnUI9VvE<`fQxkOsCp1J;wdx6B5*Ot5G;$r|`Eclelr*a!uYqY6khZ zrN(tTHw-bc&yu0YTaTNZ5jF@WB`ze^+)t8R(EF^=t#h*?P$vyVL)u%b-d$`7raRg> z2ty-l2wXiT|>-Q|M2c>O|nj z!91&vfEcn%OK*Tn$4&nP3gZ|ugIlbwC5MSZjyv)iwy&4rL$7jX-pk1y%T%?;H1=Dp z^h&>l+Jj&?JHObi2^0JNrC~Tf97<9|f8H9I(>korxKQGhc>Uv*jcgqGmsjxgjC6;C zOn^)Fw0NqOUu-2w1nWYW2%szuR*_e83u#|21QuN=lF)b?Mg&uSYo&@<@Pin(zE;lx zd-wJ0xh+H64m|T-2!TX{7pb|5-K!Fp zUOZh}b)b&W>YLRkev;AK%gTwYHJ9LNQotAb)UnHZzjOD2tdLR$=AVrf;?`SiJ~`Zw zBn}#(V{5CY?eG)$_@$)>uhY^BBO|#Oqc(l(;q3v=P0uVjg){(ZB=N~wmla;7{c-D) zv^a%8IHmed&WCVveO~Siea-cpmZL|i zGx$E8l@m<5R$De@VO|@MRj{2Tug01{GgT2vvMXpq&WP!z7Q?o}v#}GQeL@3>WzBlT z?935^#1Bf)z~G?svtF7gtWmJWRuR~(#*1dd$t}Ny1b16Pe_rgpnl|EA9-(`C=#C~Z zl*#igZ(*m1a9p)6YYoTBL0|&((x!F#3(?femod972pea+S2a_sk>S+9)Z#KnFJ@+D zX57UL>eqYijc}EHSZs9x4zLnCpHAheSU|)Ory1dEZnvzgEaj(T>_Tyi`17hW&)aF` z9{28LigCXvJ0Tt zyjsrjx3YTw_O#UbMDVB3_%#5#Qucb}=?Qt0y4efZmD#+ziRr=v#Nx(|Ko|{{| z`OB=8f&%U4`bfeB&LEnzd;WdWShkU@%o}iH5cPhZ4=0#L5-R)y-R?xxSxx`>HW0+C+VW!o-W0r6{&0z4~Sb|8x z06IWs1e#gHZDsVW#vaBPndwXg=2wui6?32w_P}DZri{6|#ctj&rwq-D%}l69DX-)M zEAKz+Rl4i~ObdKah|B0-_oCZ;nQU*AW%|I?E3GnjgwEsi?}h`?9yQtt5M84)F}1KA zfl1Z!n&u3PhHAQ490!|;=4pwjw-aaGl5?REBh)+Pm7N0dcW1RutdU?=h(8pUwwq9` zVd1C<|Lt&7>dN!QpR5?ct-tQ_U_PvMf~u0L4L3cJaEUG)K+l_ymIcR(g@Rwda=TaRD1*5&^2|9Ly;U#tS|& z>Hl*5c*;O*8L+_#T;dUzqQ?lP9uf}!dQO!9y_(9EER=q+@rdW4$-Rhx`lA(3Z5b;f zBGMlQtZReIly+Yvlk7-BkQ60y0;94IX@+Nrx-M9G$r^}>iCvGazRNL}lOv<7r1T{x z$1p)7G1ExAllN2ICr?cXrt&htCGbk(S0C?EJ+qN7rvaJvdlgxr4_WV7QDc)6cer!z z+&M`DF>afgOqlt|m+p!He_vMSNH93*YRD^QD4b77M3`q_&G1 zrnQIc(3UCIwILOj@^Crx;OeUj%c0Fp0uZ0g(8g+>+PFYWJsnoN6}u0I9P^rcOJYt+ z+gO4#=&i&>a#$mZcvY9&H?r&A)GyA@{foT_UHs?tQ}>?>M|HD%<7N3^V5cjNcH zFNpaP80D|J)6ev>i;DEi%8sx9C>S5{%QGFC=*<>b<2RB&qhw8gmLzU(?QC5aa5J8$ zHy@EEkaN1s5*u&4xR7~eJ12>9TslJcu$=v^I>?(5r5wssnEA}Qj+3)apH?Og{KQ14 z#bADJZMG2Ua2xN;`|{^Me_tTRuV>&2?Sh-~8l6(dYfxv2a<#VyE1Xv33N@L7_?=!V z3x=5m%+Pe;51_rZm-btNq`M_AaHf>$Q(c%JcZVH;(qfOvcZU#Ivp(U z&0@}JmNnLDFxLC7A?tx-4ozL@EXPK}5zOvF48725!yie>6ddUHHT|eZg+2`T`*sK5 z8k~S_%o>FINrqC?ar2O(9RJ^E&aXb9Fs#+`ZJf8y=j8^3oX>r{Qt?kgO&%Mp#{lrE zeh?36EnsS0hZWSW{y8{7&qWAP1Rp>qa^;Vo?!z7T*x2FTwp{gDG(S78ZcI-(#;aDU zRYV@~s`RdbGt>PiTtR*h@fAW~p&T|e{|fuuxAmiyCX|a3@f$Yr9vB|ZPQLD5wfsw1 z^H0{X&`upj|5Uc?1Lqq6M)=kw_oZa5r}@11Rw?gJwX%wmj4EPChtl0ftQIU?6cnh{ zSpy=2lmSTD*AEiWCHIT{=y62I z6XfI+DB$npl=a~J^0R!LUd9^qWl~PR3hV7f^LFT ze3G)cP3hR_0OocotHv@Yx8rbU|E~meqZ5RhBWTS#fyf)a6U--Gn{#EZtrH& zCzMw8b+gFS;W8T-%B`C-?r>XYc&uMjB5ZxLGczL{>#S3eHkRlYtl^mI5!kiN+Yy+; zBA(+X7Rrgrxr8Y#L*53X7xE8{khryP2xMPS6O7q{jR^F`af-;Iu>IV(%KERU3> z@?}U37g=pop)5*YGwGC2G^QOIzZcq$SFP5ltuq>oUg=mdiZ(v~rt5U*FP`XU-T$^F@0Izw{+korcD1 zZ$)9QD;NW>Iv~_;K*WG(^WG~uxdKh_8g&=eCJzWopw`gHs4q);r8|^3mVb%b8@2Gc z6D6xyX^N~HJz>zckYjFS`1C%#QWqxZcOloEINCkD!V29a-_BCzzB3ZL*e4*+c2%zb z=X7fv@`Fi@L%<&>@UZwIv_(5}N~-E>+ZU~DUH9>_VDFry?$$ym-QNa3)AfX?GeB~y zeA`mQyqZ<^ae>b^d~5pn4g`m#4LC^c>a0x({peRe>Kr> zWV>Hwrw%Wwm1oz&>lgoMYYqFg-+Dacyl(U|@-dzg*r}#m?vRlLbNX_+Y%mD6dY+{U z?=o%LKB06%-QEZMaG{%;eaSUGk_hN?oV>-oqez3jJ_2c5XjO6rFxTF;c!q<3Nh$3W zkb5Cn*{0A<>cxOo+z18)eNSoDGh`?2`pabNO};UB$@a#^+)Z%lD#9(GZdIC`Vfjnz zJSMyXae+z8K?YM26RxgmU&6VQ!abxt0g3QIyKe*hgaRMVWB^3v00n*$$MbvC!%A5I(UvMhsx! zlmOd{V0xuiPmWfhb#hm15;C(2M>9ahjxhV-!$koBft;Ki-n;O15L#gYQtT4nzIn4l zV5trJ|Fd46&I_FeI8uxs^ zbH%7xH`?Jpd}-9`Mblz4%JIJWb$X$iYmH#qHb{kgX7IC%$zp5xkaJ(DbeSBg*gj;% zq-t?~lC==!P}2p1Qwh|V)@^g;pQCB|y^45`3F_}{^QP&PDjGEmfW*qd@CP#m2Hghp zgvjNW@=?^$y47Y8KVm*MQrDAZKQA}TfQH;R-I4Xx_F<@|<*-H&(nGzUW~h%*p}=cM zxjA2cicmJ5J*y2S*A=Se;=K9}*EP;!YZh0(}$;uHkBt=5(}zp!tC!_ z1I!E;dNkHNU(95%z%ExXb$dA-&&u9iC)f1Te2h4oHH$dT@s3|}h zx~e$eVnahiUkG%pv<{oV{C#D@A#)Tiu3Cq+TGM-H4A%M5&2o*=yA4vhebSClj^J^e%TCI-CAtByZ%ZJ(+7vS zbcWKysw&UK#HMajj%V2s6ld23^MKl*v?Je@L9fQYCggLE-Z{+FToMp6aIKmv87X&9 zN)4J7lCC{%SJe-KH0(a&DDb#L`jaBYgI}($#mhq$z~b7szR*Wu!0G7pX*|8fpUKWL zbR25%(HNwnX$x7=rtTVyuP!`^K zeg67XzG-42zw39Ww>bsg3ATd?7q{I^lF!?x-8_Fr^pU)ut&apgud3yzIA*(z-{QuS z#fKHfGS-i1sR)LYY}Yu&l@B`sNWMw7R~pvG3OAi_z@uSw4WLT(kj#mHTet%tm0Pn}Hp5QJoOzC5ya{@~r8 z!h&~dcWLl*RxN7u8d!b`YN`mBE{~X#EkNr2r z5ZnK+=KsfAL;u@XG<@pEQGcO*?Zu1LJL6Z_vDbBawX{g;IhD7`tP_lx}E!qi$T<^ef5by!3@WKFTeLIabNLtW|jgVru*5gy}Nvr)~1 zRjjO}#+K31i|kK`5_H*ArxQlOCT729s2n^Kzw+yt7QL#E3Q2_`zqgDs$U)$PnZ$;O zZYC{NTIk>dhH3qSZ5}v3;0sR#*&d+01u&z~!y$Ox=d7&U+FCnc$0);A^E`62BM@3Z zcujn2s<_tR#6-dRy6^H>rQ%CcShjhVuuUH!T#O^33=Yw~6odZU?M%L)81eu}i^0I{ zvum%zbUx;#<~K*i%~&Xp$UO{Z0iUSc{z62x0KfO4v9a+87UdveQva)Xry2Ag?KB2s zDVr@-|7+*}R9ICf=_l&4ESUH?`iF4b6#Dng3h}6hf&gpT`Yb$dVl$isXSEY@gGpVU zn|5IEQdym_=-mBdaEu@@lcF$JWW*5`X{@=lD2}a#wL(>$JgziR$V;d+Fxx@PVnjR~ z7#+Lka4vl()&`R=1k3)3j27Xr+A|?de=CXaTQcPlzsl&&2{5Q_SOflmUAY8v{H4JJ zN%yfY!yL?9#e|d;caRsK_MrN96B6QC#u09D0dFjcq|3|r`d8&IT8g{{*H>N*Kvy?d z=DE*sDFS{20nkg?9`=34K=S8>>Og4s5&r{daA9U+V}p~ z=U~Jp1>$jWaAB=1jUGu#TB;dzm{V~L@vglBm5VTBH2o0)1}WIh0?qxoD!(q8&7En} z&qm&!(3vaaUDL{4e{}KGhsW{jh z71xBgwb8}5)%S; zm^$VRzVoy=f^rr2+u(Ap1+ZXa=<-k@p0$Qg8HirDzZL%r$3&}s`;0lgXxO`S!RJF% zp3kg)*4EG=r|<8`yyWytHd{XIbih3?cNC3+p3eYr%D^4ts9G@XG4lE7ih%Zpf3wc`+Ypc^nbfEkz!Qb{{5GD zn48nF#Mva2za5v?vn_b=12$QM9pNU7gImdOv0u9pV2C<8I>^Q8jdNj(MrI)6v7ynp zCesS|te;9Q)Q53|+CS!T-M7>4cnQ$Yf^D((tHBaeg*c2oNT2=hj=h`_c2()!p$rkZ z_+Hc$G#{OvFAy~2X^M1J5E{njoq~eVo>zTsmuxZjZF>HP=iE;rS$vzd>mM` zBR}h@jeF&nsAGQ^RD!DRsojX4n-zzwNDo>VZ?M{{g-j2WTQ37^ zH!l6MoQj_A#NJOaIG*Lo9D})+rvZoy3ex)XmCh)ZKF>8OgIB*@j|P7A#JTsze}xs6 zftA?FA3^R~9A(ouw`sqEdrfqA4q@MvA>0;uTs^|yjH9WI9F|}X{E$OBjM84&4grAW z*Yt+(mXbXij2KI#_xAmFfTxR-*-NssPd%xfn=Z%f*Zfw6@$xDbQulv=o2Eb%N=`w6 zzZP@V+JTpWm=6~D1bAGcvwXcl!wVhI4kS@o2&l=-lq%Zc=3%qAj~{hMv8aF%-JqaK z10$p7!6IvTx*}_ZsL1MolsXV=Y4dBb-@HfIE5_Zn1z}?gFdVi9D5_YsrINHQA4I8H z?^TgU5Uqe)Dq`aVB+V9eP#PV6c?eZMA9O$d;%(F?>}pdC`ww6os#W^CUta(H(ZHg8iYiSy|x!Ypy2JOd>A3P3-kWKQ-R2E3z zORfPw*mhxW1BelGwYEXCXi}CY{_j|I0Er!aDEPpN_vt05VwA0(@_P9-<+cI~ygZO( zKO_X!gAeNMeh*2;nDf^gwH3~a&g6_R zWe}qJr?2mFko|HtIDYQ^J8r_Okm&>ej_!Eq({hT$ZePZ*z{4Mn=IcqiUzkGpx*1WR zi4@K4n5bQzjVQ^yRL_7)lz{(l_kuI3%|3O#3}4FnC6LE|=Xj`ZkmWO%vs@Sqo)>or z!_iR)ZTYmD{J|%0(Gn2YF~M&KF^n~BuFd>MfUV>Q|T?k6#OEokqdzfZxRE~%`t zU84WGdg#N+4*e?<=l>H};QsYZKX3g#Gto!dxG-G zbd$C*TJ75^72caBxv-24FbM9o^=@@QOXrdd@4~1tNq1(;mGt8*Go9w&Gc3a7GHnx) zciv**Zx0D`Buv9QI}g^9!OsKQ-`?eLMc4#Hz)X;?#=0=lTW)PsEO|1FxA{52y1aon z43;cNsRxew%0{5R9e#afZ(9Cy@k$fE=ux0eQ}+cQDe<1cUd4D+_9ALELQa3JBkm8G zX+ymyj5FSS&bt3Nw$t6Edm|R>#z?HGzevsulDa>kylufugBC)YZ>>V(xmd!)%w2lE zjr@8?EWzdj-o#!^%b$dwU7WC)=x?KrM-^f1=lM4IL@tFIRF$0W2QfDjj{f^>H*Vv{ z9gO07(af0X2D^r2){@uo3Ac5gd-wUwZHU*)RK)fuJ&aDEVRSamzM~B9`e#TbtNQrs zajbyjP)ExgbTw|Bxq+257`1VgGH?euGFK{F>^5onsL=MiD@;|s8!TCz#xIRdD=>Z! z*tDqAEs_SgsT#s{;{|Q@@#0nZ;mBV`Ylc@#3uO)3S;6nhvHdv|sB7qQ>{wR*C{|qz zsGfnB;@06L`5p|a>`%vmP**e5kri*LuTVasChMZp8w!1?N*na@#N zK_|Rxj&l|t2)Vs=^Ywe>(;>C_lrQ$f_Hbu5JJZC2b@s^N1103)NV3`4qZPP1+{XJs z>3?Y(Pgg#%Z`MwKK60wGcNkuGW!gdL3}4r?2h{^laQ=723`YEyJU7>7mZP{Kcbfwu z+S{Gg_i>WhJMUcX7}YdY+OL`}o+mKH6hG!>Y|_aSMX-T~<`HmW9Tp4i(&!WISeI*V zNY-{ z3u$wM^lo$V|5BtNwo5*}Y-8{`=Fx?DW9jWj3F7dLH-~t$xsS79(RLMGz~!L^kfC1{geEiyhohZ>PJ~vJW-`A~(O9d*3o5=Wv?|P=r}|E!leb7m8CmW*J_6o~2(IRGV8bLd8~`78nekfA{rDY&ZChG7>&Y z2{m=87MFi(L^*Ggdv-A$}ElS7-Zz>TJHT-l0nQf3f3hN7)jtY3l!v zm3~#5@Nc~|*W&i?_g*Ay{oMKLckJ6mH#A=f@38;Xp;G?Wq|~F@-|+VBApPF=`<;(P zT3!+SHDSpX5l!8#|7)%KJY|`4x*x4-H#vVd>vizQdUJ{Q*_UlEC*GOAKRz$6@7n&L zdcl2mK(}q(`i_6eHv1P}+YbQUG3VM`TfN&i8f=X+zV*9@l}*V%=XmK>iOcVQH6HI* z2YwdwdsF-`aAHviu2iR!G+FNMHU}Z3aV|+V20~f8Un+eYfo4mzd|j z8>XlB8JHz}TmS8w{OzmHzV#NIHgccAUBCQ!+j{qX5&|x@zbjKX{{7o_?DD$v(7l=p z7gdk$Vq|#Uw&tR8NVw!*f5ul@(M)%n4!7OY3ysi*TGaw{F!y`bcV3atI3Cx3uJ`@_>b1h5 z_ZeHIzHeUv%-}|w+cNL`yjdI80jZf9fEQ29S$6aBre2lYTjeJ{*T38KuC%!O@c+oI zTjhA)v%jl%KK1t4w}o{lcu! zRd^mHIgLyY<~-!D-yc1@&&3wHA2ovI0mC^fCoV+)8;k@|rc{#f!~Uc_)!WSQ_BB_5DJ NJzf1=);T3K0RUIDtnmN< diff --git a/icons/mob/clothing/head_muzzled.dmi b/icons/mob/clothing/head_muzzled.dmi index 62c1ebea0ac989fea96b4764840769557650e66c..0c72221833495e272ddd02f7931a9e6c36bcc869 100644 GIT binary patch delta 30842 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 RSONrI4^%Xj%M>kw{~G`%R8s%| diff --git a/icons/mob/clothing/taur_canine.dmi b/icons/mob/clothing/taur_canine.dmi index 24cf51d2e5da02ac0965a0cc5743e6fa15621146..6155a274f2f2579c2e5d121a0fc6bd066097f14b 100644 GIT binary patch literal 138694 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

1l^%4)!mQakX0f8`o3|In{79P#<9} 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

CW#n9>1cxFLrb! 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%0A63buDZU`I;Dh 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%0DN6R7 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 delta 66515 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 z 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 mFtamhkYMjc1o9j2~%zW From 1afcc2cd4c9e6120520cbe0d090ed8e108ce04a3 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:46:25 +0800 Subject: [PATCH 137/165] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index d61d842ece..40ad6dddd1 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -875,7 +875,7 @@ desc = "A helmet designed with both form and function in mind, it protects the user against physical trauma and hazardous conditions while also having polychromic light strips." icon_state = "hardsuit0-knight_cydonia" item_state = "knight_yellow" - hardsuit_type = knight_cydonia + hardsuit_type = "knight_cydonia" max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | LAVA_PROOF heat_protection = HEAD From 365abe1c5a6f1c21b251261d471bb05f7388d1b5 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 27 Dec 2020 17:15:59 -0500 Subject: [PATCH 138/165] Allows Energy Bola to be catchable Allows Energy Bola to be catchable --- code/game/objects/items/handcuffs.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 4c9ea06620..296b46bf85 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -377,10 +377,3 @@ hitsound = 'sound/weapons/taserhit.ogg' w_class = WEIGHT_CLASS_SMALL breakouttime = 60 - -/obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum) - if(iscarbon(hit_atom)) - var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) - B.Crossed(hit_atom) - qdel(src) - ..() From 33358776ec2b0d4d61362d847db089ddc7d7743f Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 27 Dec 2020 17:49:15 -0800 Subject: [PATCH 139/165] Makes regen coma properly work at 25% when sleeping --- code/datums/diseases/advance/symptoms/heal.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index 2fc853500d..cd7b1eb67c 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -265,12 +265,12 @@ var/mob/living/M = A.affected_mob if(HAS_TRAIT(M, TRAIT_DEATHCOMA)) return power - else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) - return power * 0.9 else if(M.stat == SOFT_CRIT) return power * 0.5 else if(M.IsSleeping()) return power * 0.25 + else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) + return power * 0.9 else if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) to_chat(M, "You feel yourself slip into a regenerative coma...") active_coma = TRUE From fd8f5c4afd06f58a2204fec3d03f77c5bf064b98 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 27 Dec 2020 17:54:53 -0800 Subject: [PATCH 140/165] Makes coma more precedent. --- code/datums/diseases/advance/symptoms/heal.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index cd7b1eb67c..c19f23ed2a 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -263,6 +263,10 @@ /datum/symptom/heal/coma/CanHeal(datum/disease/advance/A) var/mob/living/M = A.affected_mob + if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) + to_chat(M, "You feel yourself slip into a regenerative coma...") + active_coma = TRUE + addtimer(CALLBACK(src, .proc/coma, M), 60) if(HAS_TRAIT(M, TRAIT_DEATHCOMA)) return power else if(M.stat == SOFT_CRIT) @@ -271,10 +275,6 @@ return power * 0.25 else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) return power * 0.9 - else if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) - to_chat(M, "You feel yourself slip into a regenerative coma...") - active_coma = TRUE - addtimer(CALLBACK(src, .proc/coma, M), 60) /datum/symptom/heal/coma/proc/coma(mob/living/M) if(deathgasp) From 121b1bb7fdbee1d6802b3c2bf813bb7db82b50dd Mon Sep 17 00:00:00 2001 From: Xantholne Date: Sun, 27 Dec 2020 22:51:18 -0700 Subject: [PATCH 141/165] Ports parrots from RP --- .../mob/living/simple_animal/parrot.dm | 128 ++++++++++++++++++ icons/mob/animal.dmi | Bin 290169 -> 423752 bytes 2 files changed, 128 insertions(+) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index 1ff7e2f799..deb18de42c 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -1034,3 +1034,131 @@ /mob/living/simple_animal/parrot/clock_hawk/ratvar_act() return + +// Different Parrot Breeds + +/mob/living/simple_animal/parrot/kea + name = "Kea" + icon_state = "kea-flap" + icon_living = "kea-flap" + icon_dead = "kea-dead" + +/mob/living/simple_animal/parrot/eclectus + name = "Eclectus" + icon_state = "eclectus-flap" + icon_living = "eclectus-flap" + icon_dead = "eclectus-dead" + +/mob/living/simple_animal/parrot/eclectusf + name = "Eclectus" + icon_state = "eclectusf-flap" + icon_living = "eclectusf-flap" + icon_dead = "eclectusf-dead" + +/mob/living/simple_animal/parrot/greybird + name = "Grey Bird" + icon_state = "agrey-flap" + icon_living = "agrey-flap" + icon_dead = "agrey-dead" + +/mob/living/simple_animal/parrot/blue_caique + name = "Blue Caique " + icon_state = "bcaique-flap" + icon_living = "bcaique-flap" + icon_dead = "bcaique-dead" + +/mob/living/simple_animal/parrot/white_caique + name = "White caique" + icon_state = "wcaique-flap" + icon_living = "wcaique-flap" + icon_dead = "wcaique-dead" + +/mob/living/simple_animal/parrot/green_budgerigar + name = "Green Budgerigar" + icon_state = "gbudge-flap" + icon_living = "gbudge-flap" + icon_dead = "gbudge-dead" + +/mob/living/simple_animal/parrot/blue_Budgerigar + name = "Blue Budgerigar" + icon_state = "bbudge-flap" + icon_living = "bbudge-flap" + icon_dead = "bbudge-dead" + +/mob/living/simple_animal/parrot/bluegreen_Budgerigar + name = "Bluegreen Budgerigar" + icon_state = "bgbudge-flap" + icon_living = "bgbudge-flap" + icon_dead = "bgbudge-dead" + +/mob/living/simple_animal/parrot/commonblackbird + name = "Black Bird" + icon_state = "commonblackbird" + icon_living = "commonblackbird" + icon_dead = "commonblackbird-dead" + +/mob/living/simple_animal/parrot/azuretit + name = "Azure Tit" + icon_state = "azuretit" + icon_living = "azuretit" + icon_dead = "azuretit-dead" + +/mob/living/simple_animal/parrot/europeanrobin + name = "European Robin" + icon_state = "europeanrobin" + icon_living = "europeanrobin" + icon_dead = "europeanrobin-dead" + +/mob/living/simple_animal/parrot/goldcrest + name = "Goldcrest" + icon_state = "goldcrest" + icon_living = "goldcrest" + icon_dead = "goldcrest-dead" + +/mob/living/simple_animal/parrot/ringneckdove + name = "Ringneck Dove" + icon_state = "ringneckdove" + icon_living = "ringneckdove" + icon_dead = "ringneckdove-dead" + +/mob/living/simple_animal/parrot/cockatiel + name = "Cockatiel" + icon_state = "tiel-flap" + icon_living = "tiel-flap" + icon_dead = "tiel-dead" + +/mob/living/simple_animal/parrot/white_cockatiel + name = "White Cockatiel" + icon_state = "wtiel-flap" + icon_living = "wtiel-flap" + icon_dead = "wtiel-dead" + +/mob/living/simple_animal/parrot/yellowish_cockatiel + name = "Yellowish Cockatiel" + icon_state = "luttiel-flap" + icon_living = "luttiel-flap" + icon_dead = "luttiel-dead" + +/mob/living/simple_animal/parrot/grey_cockatiel + name = "Grey Cockatiel" + icon_state = "blutiel-flap" + icon_living = "blutiel-flap" + icon_dead = "blutiel-dead" + +/mob/living/simple_animal/parrot/too + name = "Too" + icon_state = "too-flap" + icon_living = "too-flap" + icon_dead = "too-dead" + +/mob/living/simple_animal/parrot/hooded_too + name = "Utoo" + icon_state = "utoo-flap" + icon_living = "utoo-flap" + icon_dead = "utoo-dead" + +/mob/living/simple_animal/parrot/pink_too + name = "Mtoo" + icon_state = "mtoo-flap" + icon_living = "mtoo-flap" + icon_dead = "mtoo-dead" \ No newline at end of file diff --git a/icons/mob/animal.dmi b/icons/mob/animal.dmi index 50bf65b27f034574fce6745aa9e9198b6c2520fc..cdb57e0e1dd41ddca093719a02c7f33e78a6a260 100644 GIT binary patch literal 423752 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�K&*}{Q zuxLnT`bTs9r)R*A-;B!IiPGsr_92r{ z0<2Q0Av-1SY&mMR7Sez;)ss#|j74GtBML3YO-c`1wA$~x69W|f^Ze{N@gH8v4w2WT zLeBg4My4*iLBb#FK9Mr92dN97C7Qyh$p4rvYf@#av90&KtTq1s-CuzjvFxTZdF#kY z%XFDjk-Qz-i&p!&4FvLRYWT1XhaH)>^l^QiU=RqRh2i|uG#1Np3sX>YorhYkUAe3E z+qcnO{OyHILX-~3*xtf4F0+KMbLkB8Zqt`x)9Qx>HDCC?s|K-u()8N($z znQ7!qz>law2OYVFTOO~*aO}8$`e0}c3p?0zO+}pJIzRwN-}Ga!foKh&o90{8CL6)w z5rx0-tFHffUS7v*80_u5G$Ohktunaf<3vWI4ut})wqUe^hKe8JAf7Csdjr8Z?2&c& zLbhRP!Dh;l5!SbT@MAL_o)@eO)ZN;B3{)42NY2YIsk(7s*TOa!TqvrzpwI&nrJjJ0 z{zGF3)exlaVSI8JOsi$A>eo|sjN7$M3ys3aeaXG!zOpSb4xvvtQyu9PaB}3c3@!7( zOjPUMpqTrVO!R{$eLB@ z4y00xR2I#zXSilZud%o*6+kDazB8JCQ%Fo%8Yn27vTvgW7{fPndzN=6o=K83tm2T8^%E~&vn_EeFagRY9>yWoTT70_qyne3Kq0F3SXp*64o`n!SHkqA9 zv~`f}Ljj89`WqNuR$i#*Cmi-TSZrN|!6(=MJa&o})EMTaW+&MGTEH$?3*_)-C4fkn z?&A7Zj{G2*r?HqlMg?Nge$L}JBj(L*7X(=@lnpvk%tqPG3> z<7?)&w#g?Z8_6O5P0Cvsugh~d`=T0V(ACsPKt#NZnj)BdCzHUwT%gwLnr;VpWI{ix z#2e1z{WUEFv)YZ55i}JUg68JeK>f*kUg2$;c#>=hjnJv?MwJD`kpX z?yF-uyEai{M%wP9Z48=Kz@4eBF>dA>@L1TV#sAw&Wd(PwqFCCuxX zL9rDor6#3g$8*4;CUvsOQQH_U?R!FGhX+ZM{JcLWnMIWy%u|bj&OO`fMX!;A)wLIl zh)+J@8l?Yu)7OIwPMAJwOX<=GTHHyob)TAyDh8sdaH(dmxJPY!HPU%s<_SEUw#s^I z8^9NZj`pv<lOCi;yh%)8ZK(oz zFdC@*UL4G{YG zZzTsHv(mX83OsY9%_JG&W4J1wlrjq?2y9qLtelv!OFFkx%HrRL?2udhyV_E(mEeIv zCnjJ|OyU-TjdFP^)A`Npmc@ihK; zf=&=yUKD8A`HjH_Pq%Yhc(JHB&|kE!fpYUeeP{xnrVVH+yAaExsCs&)+LxZYXnZM9 zs_h|jQtAVU&UKf}v(m0iaEk>HOMmvNWpNl28_T^@>if4bLO>+>w{m%ETL=q? zOOe`M<^%!M)9pWWuKPZKp1P<xYs`bh&7n z?iccj(usLSOp?8515(#V(x^BPQ~pg}4J1Bsc1MB*_5}P)5V?e2%1W_})1?pHcY0n( zeaXD!&Bf$f>G44pQp#h7V*0JzUos7InvO6;@?SLWu=HN&6_ROF=^Y?s28O0k65lu zW1R>*CLZWqclAJ;niX)$D{QEd+44fKjY`adxE9{X7e7M=y*U; zUYp*oHo`v|2=36Ki_oO@8!nbA`?zZU`%18S`v+;UJ8co)|Gc2`OoxoqeiF;gz4RpL z)B^ek!rJF_f%YkpaDL4K=79H}#U`JhY|`*O0dL}Ymku>k)^u3YmdYRJt9o0lLMCms z^HirLBU&&mp~M#MK7ja-m0Zq%_cj?$x(09nXAo!U&FW0uQ3@yWX&tX-Idw!H|3vt&zemTT=$TK{)objm zN0lAxR>H4gD8onVW*Bs~9$kpRAk&)2XYuH4Ua0?OQ)c;OtPvk{{&4yC&mBNJeMkjY~#?inA=z9)EFQ}Jith57t;EbKRYP*=L9EyUN1%PZwJ68xsq0HeU?Db z>m%`&6zH2krv1RdV1K@uiX$E2PrqR-G-p(O8)p$36YzWUS=j`^o=H5m~Vyg}Cv2s9Oni#Z80K72X@D9Wa?!`1}6 zXU+P?RtlV}|A)3;GX;PT%JUqDU}e{iJMtpmI5hmH~A`(gnTzi!zC1I z6jSy(#YQk#DibfTQ1TxJjNw}}+O2!-ZMxawTp_7fWp4L;x)6bVnR>cU1Mv@U-SZua z`Kx=jBsQ{IBuy_UfkEuUP1$b}McnoS>Z>^COka>n@!fZL*o>lK@co}505|e>Vz^Fg z))D=))#zqT8}5F#JHBk5t0L}XD4ONSd=LF+q{}89+yWFiL-0C3G}f2-ea_B%-$_2+w6`C5Mt=@zFXWNd%ozX` zSkF(nEKYV#sCAsB!dZDRmf~Fu2-qBMCac^Q^}bT3+J$ zq03t7z;@nQQ5(u4bK~Kd1Q_A!taDYas~=S{&3%vQ=wmYo&|Rl96K-n+ZE8?>iCUZU zv2KQQI)j%RF{6Ppxxu#>v=B%s)P5ZH{f+X}MX=8ry*L+LPyuCQ#N~oJFm?{>x_a^P zy>0#ezR331jwIi3KCgtl{i(frtK>0K9+f{}){R0O*nR#&OEIT>_}7T=Acpo<*O#cO zAoO?-pG(}n*VTR=G$P9p^F-vX_056;QOH%^Hara2W@87B+OU4a^DBPII*NzR=33Fy z_Pv2=VCKDRkQ~@+|NASV_=+PX@rv?Ouy60-@rT;pysQ$?JxAg8X;mfimky-8k}G!Y z2r7@Hj63(=KMAc_#MsA=dx!xRz>=H&ym{)Qu-|vK!nMrX1xPnC2DFj=I}+%adG<7B z@4HeE9pzH$2g1cK9|4T3!`&K-TO&{xWW+d0rr=2A1)AB3{zETTQ8TA~Ojyw52w}(f4zDc5?QK8|rg|idK??bmP!4_; z#^Wl<=fA19zrm6L+b+zpEis zepf}MwR^zo(-O<+Uh3MPFnkP#AAPHw!khX2yJ z;Q~m)k$Mh}%ee0=lZea1nZF$KSxu z3MTj5x>X09eP23If4YoC zy|_=h+qk__^#u##itdleR5pPGB~U@)kg|Y!G?!h7LEYTy?N$%>%{2K1LQ;#}gwm_5 zH|91GYHaqcXALcPyOxs9il2bZd9p2WgS~6`2-NLf^pH9+%scSHmGJT8K1nEG0t6s_%!2%(@^61<~mLhrb5>4Ej>wZ-? zu7eA%Wa3tNNSf^0b2y8EMQ>Xylb;i@&RO(Bs=<|&pQ>o8wG^nPv%oze%2H?PWe8nNc{&$=*-BcnOp%RLJ+c&uAFSyNyZ8ZIUVnhaqN*umGA;&$3wr}j=uqvqg0mn z!x=n6p5N`lx6D9)-;##%T8`JtJJ8OG?eq1jb#*6HpfPFwxnerf4{B2jF~Gmc^*Ype z{elYq(HpCo;`IIrl|wTD;~wE??e84q^oKTsdw7UEnYj27Z;*oc^W-KaT|C7%lkoIm zL?r`bcjm&^03kmEz^cjX1)D@HLn68`dHHC{^gNJpQi=->j^Kp`BZD#c#FDJW&!Q^9 z7VA^0ItqR+B&Evtr8Y51R5*k$Q3> z&yQbGw1Ane1{-b*K}W(R*+qYRYP{BBfgITeE+U2Ec;WG4 zIw32-<~Wtoq&MsMRGzC@KTzcx#(dCrp~UHf8JtSZz#zc4JFUviLBzT(12_8xy2gy^ zAp;kpsLxhP5GADTZxH9B#K@m+B_%dbsR2yLSKd17t5T?)o7PWdusoRqfgp zqQ*Tp{?-*fVn_9(BlHR3GcOBqy))wp)7qg#Jk>mEV{I4P@ zHbPja@n2&jp0G8P!C{N;Qb1Qq6Bc{_HLa?*`)m&3HG`ykxD=8PBU)|+6R9@7<<)xs zSSHhF&rvGke3$X`^3FsmdIVGh_1Y6>h7oex98AjmDkZ)CKXjD`(Qw$RuRYjY4X_e_ zOO$)lnebaCT#8|&0%@6E?@E!PH_Ovlon`l5{?r;am)qv8iZ@Ghnm_Z*BN5tek>|&z z*M3%fxRdq?yNON4o2-Dx^%j%*T(cMDn+VDetX{CiO_Z$svC`{$cye@j%xOe`sDF`OAJ{5Rm}6Qg6r)ZTq;m#{HGJca6QhbptYlN?XV8 zZ9zTV-A4|%st8%FBlT2U$P8F+@TQ?sC@CIvlYmh@Va#YE6 zkd+S&UziLg-#M7)vY^mX z-_Ff?uvx?$a>YFxh28qBv85MLs^s>-dX^jQF_<~ZS$gt)a7H1YIsPtORgLb{h7A_0 z6G=O|aZDZ_1i0Eh_EF)Blur`2cE#vvA|FPha(cZ!Zl%S&gS_Q?av#M%7&uq`M|h~o zU4nOGdFHnZDa;wk*Wy3awCfZFZ?EO!xYFU0{#h&iD-+ODUZea{%bOm8Q zBQV&?Q)hYnfLq}kKdPMF6!e#E7{Mmc~cx3aww$4CpVTbaM;8UUiHh_lZu2J-zqK}V8+ zSZk?LqUs!{3h+fu+?cn&^XUQ0kq-AUl zFHFi-T2#q17c`dedsC<8I}pLZkO66TsE@+MxpeG$mpk38WWEDb& zgPbyXHss<4lzJrzF_mj1>(I05r_d`TyNc&hXtSQzLDm60039v=C(N*fa{|@r|@n}+;4Z~>F2Xj`$_=#l#SiIoWz;hh7_0%-JUz41F!VsQbxy@pK)B(1EG|`vN`!YkUeR61 zSLG7BB|mhl==B&~#Z+t{5eLepv8@qEbr)6pHi)FE9uD54;tC`b?E-P$5s! zd@aI>iGTbyHOW0wGZ>*yo5AIO+demJlT|!6M6U|dz8#7-ZTcVJ#56OUc93gu+4VIW z`xh(OR6Xh;_bp$44OgB!Yd+;xNEpVQ>+pB`kU=n;$yU(sV!3^LQws$OY8%JJ#WzU9 zejk;-0u#C=!akEP5--PjTwOh0xijxT1I$xO+F?D)yAZj=3uZ- z5MnX8xXL5#awf}iq^7x-NZ#N(oI*>Uyg$0O*?5L`^>K{a$i}oF`cAlV5~@QCkmY#z zm8bOo3$CJZr1JOd0I;ST{=0z0zq_xXoteTDnLbFu29f?BXiH9E;nrT7uGnX}fxj(Y z+t7xM)gpzc*NkZ_K9m0wH){STp9R>Wqxwr*edS_Z<;zK%fXcb8pA4t?*?bz(@#YO$ zAnk*v((s)m3F}IlVW6=S`nf*rdd_FUcV+p8vWebn$mlR7C<`JvlVu#a5JZBt96@3G zX{SfUNZX^>!@WGz0rmDgg(`R>_=F5JSLfN*K^zNkTmL-;*0T;bZ`{f^OAcgYKX;Aw zEX_SDt1tV$6-O&hlongc`gr+QplQs1oBd)0iCS4Ro+zMYF3YEG8|Be@DVaMZ7cHi`c%L-Td>1AIW=~&{&H3=b&>kQ`70X~0r^CRw<#)TWcEKYeXxC~6F^lOJAI3PDS4QL^7{p3h)B6`t(z za*O=>An=(e(5d*X@%$hXbcA6uGo-%WO{`_(Eof^z7h(Q<443eLOiweTXqp=gW8B*K z2=SDd>?8hazf0i~Gh?1Jhpg?C_b{!X{Mn(aiINEzB@{Uj=Q$8GeZ3~mEK7(@)`KZ(0uO1vmwoUpl z84Z=4GE+E6D2cLl<>xXxE9Lxac>RyGdl+cAfw>3$Y$bYW1Kn6HPX%!C!3Oml?@qP} zyP`;sE92}P6HJZO96$>D`*I+_K_H0gbsn8$+CNTM_1lZevb@y;dSq_?7=4G)zXpQa zPK8~RRb;>J3Uk}D6$Y(MuA90tGr{)VYRHf30=~7e%vK5AJEA%R0x9F7s{KzKG1=Zp zZXmasAlSa=!5)*}blf9EFwna{N~3^lqB1nyE2b@LKBMZ!$0x51l;9qw5+^bXFTFGh&2=CQ_t4{2t@UYp8$ z`Mj*~34(gAN=WvQPa^+nuje!B>H8os`+~xyC>`PAX`we>o6u3yW2)e_$sx$D5jjxo z6R0~ouCKOTm=u4&XBGGOL~t~Za6C9FxY3q5PY(!5V>pHW4mgK$2Z2|eAj`}%bTYg9 zsDr-YUY7$SWnHC=)Z6i-$Nl%md&DMqeOp&9JVL7cxMS-$3Lp8E2v(_KAKtkNU(0-5 zKseh+w_i&UlyQj(>XtguOOCK>$+u#h%hT2%BVlYfzxTCh42n7fTLqfk^$} zW(mtvYS9Y9+$KfAvbWQ>Q%xQDlF&cjF~5dHl5QLB#HAV_4vu@UnY7@R2S-{$lbgNq zl#I7uNo($@K%oC*;S`ke=z6u@9(07YU%P)*tu-7Cu5_sr|3BSoAv81qxTeqJ3cm$IuTTf<^KDVjYeR56 zhK!Tfd{C9gW8U_yhfli5zMTKuL4;(B(gwtBw4=K4$_Q*B_23(|0rW7Bl1^E5b&0-o zpE=OyCT@7SlK@UTKt476){UYxakgWTGqE8|amUHs&pvvM`>r1NPR1i8h-&2A5L7&e z!oyUG(FA<%c3BaypY~UpL1Q7?KDs1Li_Flz?ig?yYrpR%d_EcoUSyg>U916Z3_i`j zxXya^)7r*UP)94f`IYhQa2ET1(5KqrJHQxnP4-FQJJ^_ur76-LyH-Ub{q{@bjbj5q zrug=eEqBy?L)2oAHYzo%zIb++vHz)8lvXb{7ibGDvTBeTiu{(2lvWR_-*O?erhy0AQteId4@Mv5N2S z)koOWSU2I9w>V|Ao7(qc)2UzAwb(*`CXZd>JAx`)A_1*WgW#HsCVeLfsabbtm`vHo zyii~196*Ag1HDB$nxu&QMLiTNm&i~t2K?{<6-nZQv(&=>jN*VkI@ev{NcuZDPxS;y zjA4Dgr!Yqoa6#?_<@GI}VgP-Fn4aCWW$){K!7o4vo zTvBi$i42IEGw`YRyxrH)UGfhz(o&BY;vR;}6X>MAv2Dz*9Yn+VR3?GT9?f0$NQVF! z74$NeKTfkK;u|c^Je#2RZTNf(TkvjQT)%3Ya@)U!thanjkYQ`8LT{bwh=0wd$!~|q z2>+pa>BQj#CVq{_&r4w=-fsQ4ydTF~GZe(kVam2%cQ<|SUEEIvkA|E|B(!8*En}?r z6HhoN2PoR!_-HS83FaH8+W~n}2#A_0Y>Sj{~?lS(ebn5oJ&wWN=x8}G^nIeRw4~k-dkehu* zPJC&--x5g)&N|gLP6TGHv^QC4y1lEqCt=dr6a^~;r{p12WEx#PpT&p-6i~z7aXQ@p z^?+xSAJOd_M9Msuayofjz@GV;IL*g<_vElUo1=WE?+9FWHx zKZj)9dafDHI0sYG$iEMU<*YPV+upz2w}$7z3rPNhKC^zLVqK3S?~sEUF&Ds#6-wMG10NACa8>qOvt5>u7yVhTz7i!_~Ru8P@kw! zGCTH+LE~9TR$Ep!kXUNoXGO936ofPB9O$0((uct;5B!;59>7R?i&GA$!2(G+*K%aY zQg%gWIy|#fuAvNy_hSWvj=*aw`ry|Pp|}|XMBQ;eFperi8U#(XB1+d^WleE~&GcA? zvETc07-g>UDHj&^9GCB{0F6Lbl*&DS)U4ut1gR?0*S#r#>YL8oyn_UHkI{K3?Po9 zfbOwx>HFj^zl*5D{wUr923^Ajes$)8OLQU@P?mt&89P7>o!AtihxQQj>Stp;I}+op z;J5)e2X;b|OZzm53djwZF)w{1Gm~LtEI;3Vnvm3PWr{h?0Z9n{Lp29v`v4g|Fo5Z0 z2va`oN1k?&J zL=#B3Gaw^X+abJ37qB&&RhDCZfRZk2PR1$rbXEQ%8)gX9Fw|#q*nfj;dOU9FPsa2n z9#TR8HA?{V?OQid0*w190RaPOG_fw^xaI&qOh@8xu%q;b!L9c-{KJR8HajdOYmMxrXxnG4bxT3rhx!e7|(EVu&9|EJr~I5Ttep!k#DUBTD# zQcDHm<}W!Q1wc!px~3#bD@%GknQM_N@_|PILC?QHC2946Nh@^-pC?Z_~ zN=o-GB_*wNgP?+RH%N$-AiZ?gvgER`^$efy{keb7bKn2}UN457oteF6=DN4w%~ya^-y`x} zlXd!jUc_w^v%{!<{e$ZD{IUaa;7`k-qHo+$3$0S$D86AM5TdEUdzH-Qz|8Cg^p|qOghN$A}XzsaOFlNf#;!#hUsjgd#5# z-EByz{D=-_ArU!{Mv!WiKgWFEC=uh7);qo!dl=@pH?4k!-{l}lqJ{F3!q3(=pC~~_ zdJrw8Qq0O7Plx@feJ%GsJk`;MQ3T|VX%R;f@pn3#=5_cNVC?Bf*((TZT*eC_xxj%* zCsmqXURM8^)5iZ}O}oxE5?p6Xvn|KZhSizM=Y20;aqIlYEa9(c&V|1EAKJZ(bp3WA zdG4_7W09aMiqaFbFb-!ZkYHB!UGb0U9(iZi1Z2s;u*c7zKc`4IT))0&8xCi^P!zyv zjuQCY{X)x_1Z3(zYf74BmjeFg@&Gw*>fDU2r+M@CXNPN#*}R#Y1?0gv2wLFo%E6X& zl&HVYu?Mrbry{=YB~BaE{nAfJjQKgcQc*wbOo{0;VSk1??U>mse2A4~83*jL4k#}j z)XL%wD#30T7q))N()|{vx_CmT(bkH8AuJcT`)4@9oom|z=eR)701XrX#1n7}KhA$B z5K_$*T`Ld%dGC3U$T2mWE&Q)y2%x5Qf+vjEdQO4L^2+w4uXgDTLTc$k#8Gyxihd27 zkI#@r_o4zAQUk!EgxbgzUmfj$Ql$AMV+&3gL?gi00zoLroeLle7DdH(sKV|9N>pIG zo0IWc2h_1EouQ59LIa*Nr1zGsKl=s$1s8m`G*hov+OqZMik!U7`&k7|ihGy~#ZPi) z1HKEk=G#^iR{6CT)Nj9c%k>xs+yuAG@20iQc<$s62Pg>Xr8a^Ocn>BP_*FK$5MyG&xqmqjL!fY>0|{{j0Y`@x z4&3CH@&!ix1WR1t?~~7Q-P*Woh~m z+2=OjOg2obwZdX<`?rhw5-T-R!4}>=yLdEqFQ4S;Nys^eo|a;`bM#*kEq4ZPobidP z7i4qL<%l4z0d1CvD1dn56erIEfGy9ce^i72myJLG7He~##0Ya^s|c5UY(v0j-z|W6 zoH4xct>zo%38E1DajWnnc;Y7+(^bR)L|(UNv*0u}o3Q z?m4PuH@g9|v9HgKP0~G8K$dM1s9UPZ`C#a}HwkT$EA@dHemPtc?sU(}` zX8^$Ms!F|23rn{B`@plu2m6feY<91T6&US^J8u_2+qOlKVNWK@6C@TJ%xl0|$HM15yZ1R%#G=a?c>Xsk z@#ERhj`q&D_oN|dxJ|38E`7LhaIf&$>t=)f8;(jY^{i(jY7fvSnGl_p)9!KTb0%_i z_ipoi{Skr>coSg-50I)saSfVDAh4zZ(wx%2d;B1}5cNT)lKe%9&nB=n%!JDm;;d0o zS5b$0Y)ev&W*eR-N-PGJrmoH^LP1aZOQhz+@n0cgQe``tY}c(9z_ZV(OWZpz%Jp(En8mT9pDB& z4?m8(08$Z<4_5zcNj|nI3gB#^Hly7dHo;jdp1W#7f0H*$#Lc_*aSD;X2BAi)4iaN# zJyNT`H(|fMHfjQ;e8{nb6pj`ESYcz5Sj4*Bu0ja{rcPajh_5ugCsqo%Fy}L7b z4tBr|MvWomy^Yu|-@UBGNaSr({xjr$6JapuI1z6&UWVhQdqVrw?UsRVr#*I{EW-^r zQ(jEQ4wNv)FoAdd$27jcSvkOe7jx~kiW9JFF6JG43fO}EI8tNnQAN;uad}qjfs{a2 zaqBLlz@*9J*Hxl9zhM_qg^yc29b2QOkv;+-B1j5^A_HDuDoDbyYvyOl=A`1X1;EyJ zS8=y%T=YxM<&Wk|j}=VG>o zVDUgf<-idJQ6ju#Y#!nr*n`JZR4+KdAAMILO@n0D0nm;9tm!l)m z$QVJxaP1Rx9P{M+eyz*_?2Pnl{EWvt z-5Wh^sf{(8C&6BmaZ{4kJ>wTl@gD*?+W3b={~4AFdFviNka%Y$z;n}IO=bJcr2enu zo_{kwRtjGH@1x=9|DE(f&lH!uN#ns(FG(d1e*(V#YdH76$%_9p)@kh42VqpsESW^jy^j|dJ`F5D|YI(^2O$SjH8s#II zAIAQER|;wfQ)4DkAV9sGW>;F%=Ki+a=j85jmK-ez+h5h4`}MoIp@c(ymSSeyUjyWK z{!5+g^><9-I7ov@W4k_WJjNs2M#TiqJTCh`R8AqKTnFzbh_^I(88TQFM!NXZ_qW!Z zoib#n@gs|Gb^5c2$H}7$EHH=f^(2!?IBxs3ScNx?C zy@7Xq!djW0p2|wHEF>Ot_t-iq?&3(!DXa8`}F55UD29mCO|93OG8`u2eFW1t{agNy{XuDH&2e zg*o3Y>7x7Kw|~v+`J!~BdQnX;4Z2sDY)1C-pZR#OV2x?qLSPWqLvA8fZHUGzmclmn zSg~B5n!mS8_)I&%{@_k__Malzn7Zm&Znkhpgx7sKTL{VunL%dOhpdk-zBsj1_`3#_2vvc!DT=;660UMK3KFx_a^oKc9` z=%?>xupue-i3Wm3cnGT(*7!6@vq%{I;jBPUS!OukrRzlJ&WS}I)Hu?NR~XSMWf>rU zv*r~~ijRaOv7VBOhcy*x>4QA%!@uzLYA3X(E=2?2tJIf1)8>W`lY5Tbv;;+@z z*yXY=T|Shhr}YIW&Ejo!zV(uRLVL9-Io?L}6 z97w1vh9+7P1BRsr^;U-`{!VrdC{Bj>XU|BhYwH$mZ~k1||F)?o0rbX9{a$_1HaK;yq?}7EnUSxzMVnp>zZE|9 zX*$&i8>XrCZciaKRiLLP8}ay*OLyM+O8*0@Hs4l0;6{fTDFOfd*TIp*zrtg$D{+&? zLWB0{t&~`UAbu>hn2cDiSF7M4Ei`wY;$cm7JR_s5U=XX4A6Mv`Qf8nwqevkRfhw3e+qgDE}FV zbbhk^!BR&OE#s>B(|r0^@R;o78>5nNqmn;D%G>#% zCjJ?FtHPfcCt8s)|LGt{6_rhQ9ro54&r5^R?zT=2D!c>FbQU|R`=8EjCSxhfWUDg> z!Rc)NXI$v!+^0XNO(M94dDxm2oQm{rrME)rYrd{e&lT1PwE0+Ec3Vem*mqDW=nTut1da zCYqrBwoKvI&JDqyRhAps{6YGbd6WDE(X!vi3?k;kxmEN-k9I~xX3|*FS}F55Asi|# zM}NEuC>b|!+l%FbM!|eUeAn*mp5cu+0HT*10T@wB zv&&-v5)fI3Og@sK1%4eB8U^y0`^BndrVbI-SvR-3m?6o@6gg;R&N6!TKB{sN`gbG- zv_W-6RsLqwmp=IKD|g;LcF!Sb1V10me>Fqy$9qGSkVwALp6olqG@usZ{e1JSuGmty z!jePipNZzA;NMn3sUWWh^koxF+gQh%a$9MNXk=*Qo02X6P7s186JsmIKFmx=d}4pA zxL+@K+l1riTM{3$%{y;AiS^^2lw3+Ac+13=PN+}5x(?Fi1^4B>D2*T^?Gz0 zF-}3IG6%R7@UVfO&t|A>&)4m$!;acn;x;Jnr0!c}@7F5X+L@GVq&`vqqP@J7jP)*_ zlpkyPA|0a8(m(Pehr$Djr{uju*ByFOY6{FIKauKmXeOdwYl)11EQr1!57%M&R{`aE z?CYLF(4u}%T*x5f6j<9YU)!D>em_9>@djx=d>Qh%3$;}v2w%3doSGy26RA?q)`+iy zv`VN7nGn8Fqc0rF}-Ih048Q& z&Kukn&DwJE+M%bLMeDH<1K+;1$p5k=lggc>WbqgkY1VDINzvxmu0i4pTT`RAkA@M2 zmy2{F7-DWZ^{^J9ni({%?^8cNYWecl4{4l6*TWr`67s>4t6JG_bB~65U|?KknS$kZ z&#TAfZunu%Dxi`z>nYZ`z?F~)uJ8;~?>B$>nzc-lPUm52Goj`|kb4jE(#D;rEIsXb z{tS)={A7Ib#ODecXls*i|6{`Yb~OH#T=#;*Xe{%MNAsd`XWNYI084{T0OI4B3oCoi z;Ay8A08p_%lDeUD5>bRE^)jSOSGWZ%+Tfoptz0F?sixHH zG+eVn6mQJTxF~yr9ayk_b#uN>atilT^}l@iaw$~lSAT!h*(1y2nGt*J+F>`;(lY`5pIvIBYZMzNLdbyB#t*I>wI^1FH*u!!s|jzSPpvYJ}jckt8rTD3*0@ z0t{hhMS6-uon>yCmI->GAfR|tTp&2&@kKijkc^4DVGB}fr8aWT_Pdf7r2xPnh&P_i zy%!miAcz{lND%EFrOLW+$4bs(ZhMrN2KK1fxJP_3{;1mz1|v*Wd9$UXVU2DowVT?? z+_)`ASzRq#(2Y(f|Lt1Gvn!4bCztTp4aeL1)sgx9 zxvAy9J+P$qDn3qDczJg)odUJar?mRj4})ytNZZ`mW$%*f_NWklZ73OKE(p$={N z+*>iAJvTXXeZQ<%_|=RFclG#6;3&UTfZ`@&?04;g9&N7A0aT+S{)N#Iid<15SI;9y zuG=fWJ=Ib6>m3nnBNaqEtgaIe@iT{sDg&gC9Kw}h&+07|#U8e{D4MM57T8GAu|&b# z8y8!eHu9JBDY#4iqCazAsIZ!zS4KfS*;umeU3SQj*gc&MJo7>Oj`^jq6h8_OA~O0& z;5hou&7sM&W_8!)DvH=nx+Dd=B(gY|NKdV@7s0R+y|Dh2DV5e|P|)*5H9|zG^{2k;cmnjsY)uwYQBja$25mGHQ(T z>-3wetF&;|1SINY^9BXx{@HmXG8WVs#9fZ{Kp$QnxpJ8RMa?THL>|r(2m=ah-bVms zocc2j5&DOuSIPzXa)OxP7Izdz|8mIBOc>A>jiJ6=o4#6O>LCBJ)j?i9z%;9NjOk90 z!yU4Fq?Y$M4_SxHaBml)EPZEr&Ci)6)&5nAY{I z0l)Q`oe#Z(i!~zq3w+1E=N&A6Hkvc8e9x@(e#7v)Lrh$p2w3Tf{+S`|`Y9cj3b(1` z(_E!|ch*ffSn1_yBwCdy(n|jTmVULevNG#S;8T#;7)T|lgGW;_3jx5)%#2&p*8Q2* zB;kr(XnevUgT$NPSM|xa1E>2DX{j&eNHiOWK8lby&Q!kzR@uy;n7em`&HpOgbK3A| za_>JEn`xa}?W2NP$@^E5t$9K58rBk&8&haX5qtYZmjOj_@Zg{ZIT@0Q8fV_h&(4 z5$2agLy9Jn|HRvZ)hIS>=I$p`?dx{ zofS{7lBJMFsRVf{ep$_Ptw*sY@{6t^uJX&(=obW1inLUsQ{`yqho~Z{CDw?Vy@haT0kJBC7y_hS71wA6k1hIFTJ zt^V3Nx{IjGX=$UeP73$3XSk z3!6F^7Ylj2h_3qb6F!-XX8u~zKic-D+`-hAZVNgJ?uz6X9#vVao9%8ecQDRqQEtT< z-3-8l)ZIx@Xb7MZN)>F$Z#GGsT&eXa$9GZH&^1Kj9ENADj~ji7l3>b)cX{>AD$>j} z%?^jH7eo8k0;lai^diXH%_QLGBKwMOq$Ug}!~y*slY5^B?4!Q+O5hO_nb4%`cjKObDOk)YybNM!c=)160-d*hM>uz2GY zcu8^bPf))anV*mGK3ab}lOgsdQm9rn&;JU~xhe0|z+)aUv;5B|PSv>hRjO`C>x%XU z0WC{l^T(MVpCpfwa zhTZ6Xcc=L8i07Gi=IfoS4qx-+TtXPNlP~gE-{ZzEEWGfWu5;pOtuecdq71Oh9oNf; zm+eL6^(9`-O|3g?(Pbvu{p)w>%45tUt}#@b=QelJWx8i*8<6@*aXTM-6x^7 zv$TnQq=_0qy@;1xo>vkz+R_;F{L7d{(!r?t?k`$}4=Z&1)ak$bXCs>41s+F;)Meeg zP2jQ_JsiECHBt2#;jRr6gHvcGt8WXSbDq6vv+KZg{dFf=F99#jzB$UTo_)zJW85*n zeXqOBo-lkuX1ckx7uK{u?9?_nhJ4C83>IfNm6KZE`_6b%nB8xmS?#n9esqMC!0mei zi)JzB>+WSgv$8HtWlDLp-neroqJDNw^)b1b$Lo=aIkMuu$o|rP*eV&zqin|UT=x$G ztC7Tem4*y!jhhLi>n9e|f)Tbm2M+1HL>o~zG|pbelov(awx<1%ZF*dReA7HOplGT| z(#vt=ubwkBL#O;@HLehcg$Lg|HwY{k5ixBo_>@hQqLbF+dX}K$JI9z)O{f*_d%d3< zzOPA0>R3#wS|D-g#dNLg!lYlLUe58WU#B@X(P`z;*as^&uhyqF9M0|g=q{d!B=)Wh zlAeo|N!wazMYn7so_xm~bFD@#Z0)`05*;B=nfvNg95`tG5Sq(N0WHM?BA0<$54~jakU(nIr6Ucbeot^+AFZivx#9EkWh+ zZ%uu$rJiUu{<7Q2P`&*5wv-28Q(*~*3E^U9;^N|>phnqUm?Uqe7#AdG zmxObw_Rq&G*kTM?yJYZg_*mo-==$IQj0q8#`+0=?h*dM%>}$RzHw10*t*l14|eFT5| z>uC!!$GmJu@6cD%j~1b!p;K+PgqP!ZK8~@G4@+^b0e?PF|G=J&>HaGR$S-C?C?5X)~7bCJL1`gEKT^`t4y)S;3?4_|f% zc%93ms|SPKbcYqS-m#qEHghPlbU_u*JVb`M9C!y_wU-S{)QFMd+Kip`9o>Klx^; zAp8AmnIL6y+Du$pR`}Qx^0IFnHWH_t($m~j6(mfI3=ZgNr{Q`0M@;J6!w}`A^;g@e zq_6i8mM(>u&HMLUT*|t;KWP6M<%5uEh&A~2S8j?d*?`>09&mO=xX$S^J?n>#N|B{c zZK>x+Q3LN>?(sR8RRyOC#Jxx?Z)^!pY{dth*!`?^-O3i+&8*9+J;4rLan_soR3=^G z8L;+x(s{Y5QM-%MlB;hmuz<)^-X5)xiq;eEZ;~L}3;57K$1Wu-ZWaAh$>tSDi8W<{ zmD1zJYwX$_?}i)CA^svGyE8w*7qMg;Ns_3JGy1o*U`Qr`J#4sW(bxmd1E$= zM=eJ2SbLbQJl?KvL1#r|xl+KA6MJabN$wLp+4y8I>u6vwwtMeu3w(c7=s%&XMv55{_T zPx>Y`fbs@?{I$Wu-)jt~uj$}Cxj3dMN}J-jse=YPK0ux0We}YI@&4mMeG*MI@*;tblKUJViZ zh$9Ax%63Qc48b_SE9AbX&|&OV-nZ>V{n5W=sE~|_td5?G3aKvs>ygT_*G$$`69jL5 z)6grw%3Nq7N%EIDfSg(8-N=+5(Hp{SShXnAz@5IwtxJVnbc6->VTe?&h&Mc_$zEGR z!bs_{4>3cc)_x8h^AL*b!8q|PBKA4~rlJCU=lvJM6uFVe?b=(KLPn?==WoRv)6|jZ zEPI!}=`9jE+hh8L&$wotvZ>^p$hI!w{AOq0=1APLZ=Y_AjuFl!o-iz;loaSO!u>N9 z^v%w(ZL&z;=^C2Aszqco@(uIs%oiJM?hR<^Q}a2+Z1r0rNV9Boe?VP3DY>LTl9m1s zN0BJDhWuVjy^)j6ZHGr{o)kl4e$<9(tc;fvN~GTidDM5^9T#|G$$z7+d}zpVia|gG z&g-@K@RX04f#Jy^X}gKEb*-|vkUL)%i4j+glkp@MYM{Lv0<5X7%q-so7f8_&!j}oo z2WsC%qWUh6GS);F7T$Uz?;I5i)tThdODn_`58WHYt8Wo(8rfLE<$U#-9HPqZy(%3$ zAuqQ#NxeTyQ=SBU73Cju1veZTLY72ke<3SvhS@KK-mLqiG4KJ^yHnOy>i4RQdTL~Vzq z6V!ss9j`S^NoAnX>q}9O*H58H>4@<*Ke(Eohe#N2WZbeuouD^hikUZP_D1J%cj8xz zge@=3CD3fTi;TLZt&?OKT8cf@T5T^f!z>L!+Q6TjJaM?6gurIm6nCpP;AqHE+e8w^|(BwjuUX}8j? zF%`e-lqlIrx5}c)tl%!%9F!5as!c4B{$1J|C5k;#X5g<;fBIgaz}5nzR(!16+2#U( zUjvnQmSurv@0DJi$U&0zgXQHf{R;3_Q1HSx1K{17_!o-x;W z-&gA3u%phR}xpg|ixf%xf4zj20Q%J)) zt*4(TuU=*N=OltHE=9o4AaLv|RZPZ~JZ_JI<|t^V;^AGsu+^Kt(Ce&|eYcnsv?}B7 zwr;#$@=@S?4nGx{rkI~JDf3+%W~=bW%STbFt3Odyvf$=DTKp*}9GvjnF<~`@;wZ-) zo;<7btkZ`ctUoYqoud#xz`(%37$28XG8RZT#{bR#?Iz-&bESpaRS7a6A$(mZQ|*lw znb0YUTb_^PZ_yJqr!b1AMa&xCC~spmg-KwwO#BRq0_u-z+TR^b4k`buE*^W^-z33jUovgJXH z{TmIn02kX*kdT_CxO4JSU))4@-cZbQace@W5p7n0i~mE|X{5a~{R-wsa(lte;uj64 zDF=-*+cuk74RojR!;q`{ml=*bIKmT89?a}V$lZPe;y=GX-y4~jC`?Dck|=w!j4^C* z`BDhUqmz-%Gxlr-0Xh9GWuj#+5QdA2Due19h+-VN95zua|x zE^L5OQzED_auAsmD@W;(A2?{Tw{M%aMuWV>hRkgIDsXfvcjURy>i>B9n!>|dYFFpS zQ``OEpwb8P$DndSF?1CKB`&_6J~i$Fe~CEC5-xs@X$O1Zv4N4*cl{f+>9vNjwS@$~z#yG>N(}1fm|o~*!1@v*EKSd1szEk& zn{%HG6(nYJFh%r(vrgFB=l(Aj=d3EN@+y}}XC0{=Ghar5KmYS5fc$2eAIG4U@bb{9 zXL&cqquj8L@L>=S=a@zi?5)zHB&(kJv1%YTuudI+Mrmw@_;XQ~?b9}Y`#;`#>)R%5 z?C~XU_)T!%eSP0qp%XA9q5#d5>v3W@vh(E67wi*G40~+Gx2(97uTi+_mW5=WOiE`I zygenPVD&yPUs0fUi*pl&ier=tQ!BPh~Aotwwm8sMc^RK#nGhCWK` zMRlg@#dGRU4!Ae2vo$tlN`Y}oH+?-9>7dY?ZQdB@()OEjUiHl#*Ofx)w=9whOGExm z@H(3qv7hh6c|`j{sNDV4TkSuLTLg{YT{7|)mS}^ors(2rm664h_y?$t=#U5>z7dXr7}rnI#wUwU+mht?B}%%pg0Hs4hNgQo4bJMc`*5Vr4^xc81d-^ z<*i~$reeyuACCH&us(qfE21=+^Y^>vQDf+O&yry2&a{+HiwbmevVKdYKqNiz?B&aA zF%ht@r*~#P>Eq}Lr4ks`6N0)Iph#y{T0$XWH&HUuLJm%@5=wyhf3eIzR*@>I%>~bj zhVoRLU%A&Fsc@aEUG*o(QrU63(Rh^F)%1yvlYU7=D`kW+g@d(_jJTqi>+ex&j|pl~ zIbw^l=`){Bo$S5srV!()^T5@S_aLH|_C@l>0N49?1Hos9y9Z13{*3-HpKNQh>(U7a z4zCD@4j_Yk)UgPS`lGE-as2}1`zqtEdL`F;p{o*C3_YvW9&|NfvbLT6EUJ&|uk)W7 zCZL5mmm9#c*!#(p_*6v4Kx+GJ zgKxVC>n&HIA^+LX8STXVRb3{PV+ZeMK7lJ!wwQOOrA>P>U-o=JK16}1#sbnpTsb^D ztcJ*bS`B12QHa|Rr%tnfZ0e!*_2B@KKdX<8;hqaPp#NU7CiomWBCQ__P;_eF@|hBj zseM`rU%pbcd+R!eR4sgH4PZN;WAZY8DOPO!v}m~2Ux@9naF&G;!xYtu`ilxM-FEHs z*k#R+|6~!?zoujFZLZP=4+4Lcfy*6Fq5DL}@eU<>I_{KRZ>0XX;%AoVb$?vo&Qjf} zo8+-H#!OV>SHq`ZSJ?sds+FYbhHrfQ=a8-u|N8YAYO4){c*rzykDQ31oHI()=&P&D z!nDuZ>3M|1V8V37BaZ4^Y#l;M*YnJ6TFs#iv*o04_WM{qR)Y>&S$KcSLU@$QKtYA4tFSWUKf^?aq#|glV*Yu`Z$q2<7{7S z#@B&a+fV+X%z+c7&R=Mus#}1Y#I?>j4@q7;q}e{3Ft z{-W!b`?I890JGsfWgAz%-RW*FwhL1QkiiB7=;}~78i;f|MWYqnBwmr%80Sb_AIGb3 z2qXYG@0YAS{s!HVa?d3Lu9}~D7sYOl& zi0)v=$QsBoKRoBc43P|Cqo)~N8~pvOi;2C_#D4-SnvyZcuFZ9(t3$HLu7F(%;QlA} zUZJo@@8WLQ>MVn^khs0^j6A0?K{CS}?Xw z{bHNMEz3*uQ*(Zo)JN}9cFY=Le8Z{{k8PoxDB=0x_1z2}92wEZi!mCF1ZS;-7k&n> zb4!kV)_&FxzX|PkV61Jr@^K3T9nSVojObX2cdN;+J;mruVzVngmIwgtTfcQd0I}Ib zI?-rWXw08Oz?gf`pw9oRD_11)o#|QS6#p~{qh-VS4JC^+waB#e5yKy^+~=wLk{J=kD#Vn#x#39eJZ+2Yg6TCKJEVPpJJy-*@_CC;N-7yO zJFf=Qln{UZ$uo|)y$_$Pl*+!*X&lPgl^Z;=2Xwsv*wvjsWYQ-Bn

    ZSIrwRdxsiWv+GSC3`*kZ*RCh1kYv6h_N6Gi^O3$A^ zFSz9&rxMq3c)3RoCOXvm{6fh52#+$lL2Vg6KgWa61b+>)@GRX#H&S!68=oydVQgLHft$r>LCLE@(+X6eppoGZd;lC#Lt~ zZw!d;suBVYJ>GEQ*CnA{-#O$8{XDRLFzDT7r!)IuvR+V)yHQ!z;JUHgLBa7Nw7=u0f$n^3|ZN^b(`{0G=)hQv^}Opb-SymtBd892~)CeWdioj zr`k%VjFKAvg#!Lo=%!TXN&Prxi@~GBx0&v&via&`yd+zWD$UbX{?yw?nW>*0yRx9tY zO_V<6fKH9D+BVrvx2;Jsp++VtLha-cM+qWY4u?1Bd}{gAe$jEkG6t-G_F7@mEc7+N z#dOR3HHuU{fzn#sEa6F<8F@Qr>cGAaYokyTXDSSDLMJ9BV7sMNsz9(s7Hrn4sUT9gwrNSb%)%GcS^F7 z;LTJvEptD;tg!H%J_q-~BSF~N4kjol*MbKM9NO!lkBC_R0h*(0o!kgu0Rj;PJdjEF z=UbG*pA%E8F+n9Uht$jLSqOH}Y4yo!85Bn(%~t=729@z7+X0zc*Is6OnL09#8{g$Q zw80BvFhIj z**CdD)SGJ|EL;jK63kB4e#AP@kJtEK9+zLS!z_Dt`$yKQURFJYR#!l36H^@|yo`i6 z%zZ(KRrLAdNu6=^uAv_ObAxFc|6NoA0BwAVA5X|aMBGC4dWZq_=FJ&_av1;};Pk}n zpj&uo*gJ2b+e{+eTs*ylm%PgAL$atkLwgFZw%A?KYWKALox1OpHwJP|f0O}!>!%Xr zQDn|dVVCyv+IO75(Ve`y=w8X8O)Lk@qS^Ren~18cg8J;qNrE*JRwIll0$y-x0Ew`E z|MqD$EzzCWlcbX;1DAB#m?yh`ColOmrd=>J&k}i@WBV2nHKlU}@?V7T!r{iTiRFN9 zK-GW@krAMbTkY8u2{p?dY%v(^xSc9LLj-eJ;p;!Q}c6A^%2ntPo(iF?Hzw;4R#R$`oBE|UKd`d zvxv-JnIu%SV=)uY2){fR5q_I#k;rU^Mi`;*W;kK&?++U%ug4HYO_TPpu#m7ct3NL9 zKs@ca2mP9I%5&OynmJ_!h41$X>T{HFzAre z%Rm#FUn!f?zoKv>aV+`ACqZ@it+0w($Uu>6WU zn$Tcy6+M7-7_hHt{|jjb*atjb1^L$ibRYe$WJMtry+A7Y==&us`geKz3V90X>|2dI z@6+hB-EsCE3NRdP`z7*_K7>Ox0Z=A3+Wn8C<{4H4#&?PPyrizg#*dc4uE(w(bjn^V zQ$T+5L`v(fW5@el>_Q*qOuB* znZlZkMZS`GnXN|c8~IUmGA~qWaKT78 zk5>3AOd(4ClfN`?SSW|3Gz4jGok(fzYSCL1tI0~+XAUBLYLdPGz0wNlg!@g4C%@S$ z@gSB7$fXvxZ6QNd;gVM#QG*#GxF=HdaR7j(GJ<0>Uk|=+2 zuV5@2wn`!WvU6uvN|63^F0Gnf68JfDr}r0e!6)|BnUZq9J3&({tc;C z{wg=u7{Rytf&@5+a|AwEc>utg5RPMGFYYitgu3LBPR{Fp(0=-a}Z2#r&-@ zyEqT!n){Z5KIcb)QMsy95}lUXlKc^aR?RT|AJl!vGt*0Y?G^D}XY&5@glJ9|N1*Wu%E!`s1-4THqid@t9xY@C`|k*L%gmtlhy-9@I&ux&*0SH zZGA+pzu01NKW3?nT%ydE=2uOv=Ui>n+aFYAsks%K!75-xPPzZ6Lbk!|JLuSg;eN36 zXcqHn)q!jEsc%gkgyAcWr|5qaP}}SU_0EUizOB;J<0LuTl zZV~AfGIiL$1M=_P!fz`Q|2N70+l|UZ4F7AHB<{;`z<=jg{M+5nVgJ8ABA2WGgobs2 z0}sOPiWXGWz!1SoL4$xsLLRb2jjSx(hU3GF4j>Fe1l4Jjnp}4_r!5x4;IxvxjMV(9 z5dWXYSN>&mh+?tE80}o`Q^&kRcPGoQ+?nPdnU2JH=~Z_h*36=<9n8{sO{v@@cO&u8x+Dt!OI1$;)2K1B@b zW3YYo9kR^lGi`R$OxAYNM3Z0Hh=5wbeyoZ8VN{vsJiA-%@F*^?y2?K(BoJki?Jl+$ zS_WQA4$Ph^2B>w~>Ryg}AE%Pv(xG^8ij<_sq2c1R*Jbd+-o9qB%LmMlu|x}OA}#)v zHaDy;aibJ>m!UP;1W!<3NJ~$T&&;F&^z~c!BUuPd8whKl-JfpNlh+8b0gZ&3m78cE<>>dF4Ek;ZaI zJ_p}{_mh-<=TGr?ikzyhj%VxP2o?Q^;5C1T^>)nQIb8UCxk^+r@$DCS2!q%&r zr`m7L>+BM`k8V5FS~O6x(|Nd2Nh;%F@^aqjO9YMj9*F~@Vx-4_@@`$fOQ`MKX z`E38068;o+bubOy?OOdNUSX@pWz=6Q(rc2_QU)OW$((m@4m5rwyXa-`w5WtIhvm_s zsQ300V?t6v5Gs^k7P%C)k_U>1z&8SV+M~_I71YR>#XfKNb zz`<1l2?Z@sU%5Q&Kf!}HSb_ds)w16(X7W1@b+b=vzO%kT&`Ol7h;5CF$@F~fR>$!h zT>F57psL`LtT81aXmD14NRl%Dh9L&Zvrxt{!a`u9lBgUV)hRKk`9GAsWk6Hm|295K zQji=-j0R~035kI;N+~5$f&$VlNNkkEC<9Pw5CH+{?k*_Le9$H25?d*OQ?*PS6IcI zA8$C~ap#uxu4&)SQh=Qe!0LhRAsAx#(a8L_rG~mXCbL#NIWlz5U?DC0Mq0 zQt!aepF)Yk=);y;UrGXBy7|BN6RK}`EKVY9oDi_ zG5@}tAlP!a@N3G_qQ#<-x+kD0i6diUT0lDhF)22Y@b|A1rxhE=*x1<6*qB+mpPyeq zeP>l@zW;I;(c0g?k)6KkZa6Gjb^d4_a7yecA1429nDPktQvigpPCce7M||GnDA2(3 z_BPYDBlprO6wrH!O5kgqC#L_eC(nYyRL}Mo5eW%YZRe{m-=hhC5lD3{tr*%0nq*+- z_gtvm;~XfgyVbF2^f&Dnj=;{1P;Nl>m zVQcThG4|2Fy?MZ=L}4q{4D&bi*lwOm-|#|9ii;;%{eLauDoq8lF7(u#(gcr8d@|1Y z5MK~4QDo>VW;`!4-)!*mvTe~il$p$~pDqnF5Hkfav%a_0a^7;qU*o?Rx~0RM5$X<9 z`fy%WUwXM8Hz&6p;j7SP9gaRbH=NxbojrUR<#hr)=s`PiZ6dY6K)J6!2T}1PF+l~F zET+XN7Tf%T#Pt<>^Nl;6KyL=3vS4}CgxcPkHM?=X@DiKbIFEAd&7}h|b*Cb#-b};I zAtXT135x5S#&*s@x-`u-=E$gVj2GH9k$ zm|i{^CT5n=aC}2HDr4Ae1JZxY)PCP&*2<7(7{{5JK{rz)o_NU6r-w7suX7EmK~>sk%)MQIbv`JM^$qECvG-G)IF+ zdqGiya1&H6;|{r0^-Y3x;!S9{^7i(2XpLI`_eslV-A9R!s{8H*1~wp%ZoHXXSWxCa zmY25}_g)W=%e^BjyU82m*6qkW2bi?kTsshN2DI*-Rx+Q|(ZN?C&S;Ai0x(sAFr7Wu z-FFDUd|RCJFEwnquCXd#JCV?0bjK-Hhl3c)uzu1tpFfiVvmB{D?s9PQ78^-Dd<$9l zw%I!nnba~@SyFO1j3a;Ma|xu2f4AKLjAgVT^%4)F(R>0Jr^QIYzl81c#`4OIOl6NG z4+~JWPlcY^0HQ~bJ)r9NT(9hR`Cv>NV&$tl6XmU-)O*e*!B=#Jj{{$7H~xfZ1JXQz zJt&42>}5=CKnnN#HgS~(<-7A%hM?w}$+3P;TjI!0=(KS~@i5%G6&C>)8xdT7pTiiL zuK4+p0BvA-_trbgvT%@hd3StuaGV~*`%Th3=`-{b@eUxEhz~v(9M(JM&*GEDQ%T2l zn#25Z9hhO&NMJPj`|r-2D9L14fO(UPjCmY7V<#tfaQ5;2fJ|>zwIMY5jYV=PRmSoj zFI=HCJ~K0uc_j^@)J94Qv$L=$jxEhw4*X3=dh*Ge3A7Il=&XBjBxr77vGI;ll&TA4 z3>y{-rnVA0aoIq%*b=_#O8@K#r2VF_lq{%{LuYMeGs=LowI zFyTCrfIa-g%I;2yng^X3pRf*%7k(yI?tRGy9HAJ}Y3)yl_&Fvz|f<#}#umn|PZN~g#Kxk@nx8QSI zw83Th0X_u+O`aIT^65K=eWtkKYIjr-BFl4v(V zm-Ytza7n5JK!utI=tfb%GLU~$lPLwjzXZ5Jk113e+^G?-L1ftUP*x`R3g7D;!;cy@ zX$qE(?d}=Q#0cW7tmjt3ZFVfo7Hf$>XVBU;SS3p#Gt{36Nz{BYs+&ys=drKZpZ@$= zB7*OlBsX>_eQVjDJ5TyLq01zmKmj2r3j%<{AtOiC7)LbZ@ZQo_-G-Q$^?PLUf1TEt z8or>4G?auiQ3x3hm9i`crI+TgZCJ&zHLr%$vyNR&J_;pY`ypv@4|l4`39~N&iKmOi zo8g)b>`N#(lCUW!=n1>?=)$R+1hvosnAR9osrw5yMy;S^VbTn7amT44fZW}64#@Vq z^D2Y)u}ST{e^4!+(f2EvWzO?)q|uj6>!Pf@_aVoFE0|Q^XL(yr}#NVZYElX0~*f3#>O@@lACb7KpihjK|s0yNwyPStiF_rOlZ=MadUInFe z#?k-tzn|x@H4YfO@{nc3`PJNpgN&4aPq$0g4&vDTr{i_QT_8c%WY2qlUA>{tBFVX6 z={z-0{uBv3>Oewa9^o9K74-;9m|a&wDw-qFRX@_gO5 zZ?xpJ99?I7^FG+ar(%z5H2;`;O+C?Ez`PZ>?+xs7M|N-mM;PCZ2&O48dv~QD*SQpj z-gs_b$JGU@MnJ)i&30`#gSJ7~<=LJICjrd`6Q7d#@3YZ&a3l?@HJ6OmB1cC?syr9( zE`%Jk&sIGp0YJ`I_p-)Kao+t9z?uH-+Hc3$mOp7U946h6jx#qn3rc}Xl6*b|U87LJ z_c{UWU&}X*T{fUlL4amh4vaP7bffSiU;CxD-~@_1@G5>}bTl?j5|X}1yvzb2eEz0U zF6;3{BC31ntTLc7ZS{}p4J%x;7a*p)##v*Zm`6_5)NH&-n{v*86NcTFYX~YR6|)8=uEKS ztCF%ZggzTh0`z^n_|En=6Rb(HI*|ah*?V%ewy`!kVf@8CG(=PM*wRKwY0i7i%u`xopDQwwm4iji%ew$Ee4588 zmNFCwag^)Ex6jSXEh7NlNjUc)Jmj!Azrbq&<6O%d!u!JiGS_pl?}JD9!W^AE{=vvk zalAIBQ=s^jv8B^#)w6vy*d?FOQ|K)AiHvO&KxGNY{p<6VGuvSx1pSjIKEkaZrvNy zU#*A#C2CRi1`;h#xvB)`;SH_ZyOiR_KghZJ=#e)l9I5qjoA_!D|#bs~{XMwYD61z}teRzV3V^ng7* zzt{PnZ%w7sha2N=;h6~7B*KZu&!X#O?6Y6Z%4EqVTo9AM;lmP+&+T?Ur5Y~)x`%;(7w+Kw=%DSJ{ytRbB&@f+C`GoP!*k-NK_ia#tZpV8eGY7!XESo}GS*3#8CS7z6r< zs&D?1qBin&tChg?+q|JtEkI8jT|(#IR|&8O(j(-BTEc)NmI+pI%0!sGhn64s_tcP< zRa3_Fb1s*lemggneyIQJ?C8@!<(EathLU0*m6o?E&26LTA=520`fuVu+Xo1_H?>jI^bnm>k#@~rmNXtD#P**So#77ack|G#LM5sS2t8T zBk3}M88i2VVD>mc2;8?&(n&yD={VV0)AbM2mFw4!afFb)sFn-+{}`ScI>i}ycF>$X z5;P|P$fV!@n8rnCZS(9UKmM!qKO`i;T0W((`~Q=Znujz`B47W{gh~HPcuw;Czp|xG z_kwPr6nh zu{I8UJX9|TQ&$>#?S`6HigwfN5)$j5i$S1IcVB@(ZWrN9W+9;jNdeWt{SPWc1O;Qn zoiOOzU!(XAaOtAGhmNboTG}u0?Db$a1sf!nFRnk})$JdvmGy>|tZ|o=1K-j+-xP37 zbobeXec#j*LqSF?XOw8WIbP;tb^nVL|3}*Lps;CCL~xWe`J#0n58z#|S0U_8sRN2O zNPrFDktAt$d=%Q?;j)W9&+>xAgNnyjnfi+s7R2l>uUBaF8R4_N_xvFLF7SGiN=bS9 z=Uu3f3fUhvJz$#@v>cf+X9Rjm`P2%zvB%)SY{Z)M_smu{;6!+y3D{n!zC};%{bnE+ zrc>$2orOI<&~gBx_OS={_6^(J-wo&CAjKu+hEPQ-GlEBTfMWdD`u3hf9n{DXFcWOHzU2yg4 zZegi&&RCxEia{7(tyYPBa^e%qy_)DXENSJCg|eV^`Xoa16Yl(D#^w%~C>pTL zj(n^Rb9h8RO9$uUTa+$)KE#tONRaT3;Y_0_a^;e8WAy=(V)OFJ!&N``fPLr5^pN0^ zs|B(0@%C#4x{H&uj8ief;5N1Jz&e59t}9>ARE7Y=nHE^nR+?oQS} zj}=uT%csv)o&Ab4?4zy%2JCv7qcxwnzA^C#X*!5@vvZHae)XIOo_INTr-BIahv^Ot zwD{Y=V~Z~N0avW^D!OMz=ZB{c!D{C!?284>uP_h|7qTGRg<>V*tdz^m6?sxMhM8HI zV>-ct8#i`N4}0U#6Bv2xwo_KWeC)~uxmqXIuPz)d=ktTVbN)e=Eamz6`BOX0c@zNx z1N<;>aJ9cFzk~wh-STy01J;(aD$`ihP|;9qTbu#0y5tz|fWmqNeqsGiSk|NBVI>}4 zXo6M~dgEwJJs%x`rkyC=S?qUYSK?!*^>MY))PiuLhdj$2*(+OZn{i%z;v_R@QF0kx z7W7S6y^%Htd3AF0oSYh3{zCaih2t{djF!XSm1SkmxL>+cjnMuU%|-8;SI}76OWjZR z8tsH^_kXy1`5xhI^`|m{j^uHbgPaJszjs*eG{Z)WstMK5$~gH`92&PuTtT`H(L=cX3z875&jpx%p%zsRheYc1CC_eE;ve2J8ir+Y^QV@FHVOIBT^uI3GKz zSq*uuM9Yx^bgaKDu~C_1Kt^=ae1AQ_l?w%C&ep$%1L6Y^vH3phu{8(rJNe>KYT~{> z9z6@WUNHwtQW?_Ai1`;JnjFta1!QD7`f6x#1)mW14k72F;DJx`A!&QSpRn7-Q65kv z-2r(AWItuDVb*TJ{86lzxo1g9zs1y&H<}z?qj5UKnOP9ZC1Sv-^6%G7r){Z}@XE9+ z5A@meaOW4sjuZ4LL_T)aaZpJmzjFO02xPRN-F_9;(xFm5i$FmauzraNgfwM*^QM2> zUk(tBXa~Sgn$uDpA%Jxf7wdKP(ndEz3!mn{&rXYa|BF(Cv}h%CsBRYehCz(<& zU&Ytp@6RY##(9Cf0oz>xwxRrv83?ERS+k!%mJ%az4qB#eFTBi2Jv+X8G}Or#HrMN& zKgj;bAz~d$`Ya-iIy5v}xWj4APqu&7+x^RD!+)pmn5r@+=0yC^w=l>!+ESDvZPAbJ#z?F-{1hugB7Y zY&c5mK3)B+$1_L(ylED;tnq#!yj7xlgYKRtu0I!Zzv{}6?XZuzTX$G3yWXC>_KOgT z2t!^K@NxN$w5~1uIWaVRKHhUUQR2XAaqs3Iyz|cekLxy+ zq5|E;q$JBvzTC5^`P|$N29lBb?vG0uit-4LTwZPAzRsa%R1ZHY7|JkFLBoUViBpT5l{F!p7tY|ovw{{ARc&Lw7Sn&%g041yKA9Oz7h64c_xcm z5s!CZL!c|q)HSU)B=K;uxZ@@uB6rY%h=65lCcJBx?exMT41kpBJds5NhZBn}XOdm# zUZufiFyuNqG@So47m99PhqF7#vy^w0CXa;uYk@@>RHetqTGZw=<_Y4aPEE7pWk zOnw7>qMiJMkC6hg8LxrGF%FA>h?^FWKadMiT1n4ct7g39d5=Ag<&C(=Aq6sQH~MST z%6wOemRyjKw5~)Rbb{KP+EVC~y{ByVd)IqEYumj)oPbFQsQI+-jz$`z&BvQwTYWvF zgZ32}%eY9e5{#N--!K2sZ4xzq&7i1xLRqn`{gS7ovSa%ubSFlZsA@X1%N@Rz7=5t+ zN~DF?Jqrk&qv29_|MD`y*!V7Z%m;}iRd}W)r$?e$Y8{AZN-^au%S~$FO@{~KZ5L(E z-y7*o5MHYdKt$uAt}5V!t;=af+_%~JgXI6%`{(ajz2G^MqItlJI5mYVVYUR&gqFV# z)FCkz(P=4~1-ak-o|nE~2Nvllh2D5PvJ$uQYQRpCNYxy@QN6L+I!(gL?TtIf^keDd z&+6xBuqlpJC_Ay=47&=68)!)?7~D(lmXxr>i?lq@a;*&ziH>}Ied@Mdba~$khnC*= zmhzGTlAG@B6wJ9{Wif5LO?K*oKO=YXi^eg+;^=J2vMGj*Lh-Jz9;GJEtFQTbz-wT~ zS5yAKgGNPw-0nRT(P?k`m4Hl14}1_U!bc1 zERL`ct~>xa6jx!02Z`?UWij|WC<4NGT2o>z@kn`Vm%gk&jjsiI5Oko|ZnbwWZT9Xr zHT26N9%J&c%!cRP@$Uq0{UNNV!ihpt^6gWIq%U(Dm9nrTy%|KjL^(|bQX(V)zatwz z027ULRU9#PCfksk1RQa6?A%T2bY6(29xQu$u&Z4$LtQ)=^+ovn>9cDRjqSvj-1S7? zfx-L?)-P<8I~SQxckQNPgOdI`o_t%U>xVX6-9Vt=&Yi@*=M*{3R5VUq7n#xYtW4X# ziLL+SU*v78m+eUS^@(BaW$b@{JjS*5Qa-iD5$Co$%#L;u}(oR`=m#JqV~ym@?Ts z0UnM{;U~G9j<%Qyll=H`qc+8Uuruz$l1e+8{2Hn}90cCS(lv0sDnW0sO5?TWBSLAO z<48J)chg@k0s7?Ek`R|a5zvgvLCeSRyK>IYcFK`(PYUs9*-oi42cHW;2$ zWuTLl;LX*AZm=Cj5%d$FQvUZ0s>^96l&2Zgh_JsRHl7!!j6=;Xeu+u~fJ);;)+le|uTNur>D`gJvYfdG$+dqFusor6G@#VB-njgPZ-|3Ly z^@(cXF4^J%M9bpbCrF~9fLoEiRWO`(JWNOWt~h=6nJKp-Te}orY_LDZvFYr%yS&k+ zeh)mtxN_^QN601XQZU%0zG7WNc_5du3}w&Xw~z}3sFrMUhhUDiWCN2v`5dAU4clv0 zAz4An&JDb>FYrkQ-6+M{sX0{N)f%l+B+JOV-r zuDQWaA}eAlm|-BEe!}ZE8fE_p)7&sJ1}Y*&{C4@0H)_IBlFJAfl@3=$(>ZeyOLPq0 z#Sea!IR6zasbre+^K_3V2?qLvrn|;f_$8TZZ1=!>ptA|uJ_v2}=)+=k0Mxvb?1%OM zTKzoE6KvHQ8){@d*xv}$yhXrEz;-Z1p-x}**_>b1>Q8~UP31u8nYVf2AaI|F^*fW< zj2_(=!P}UR^Nc2qd`hA^)njgQ$H1t_W!qdf2j2D9RhDF$QNA zs$4@dLQ0|;VBs|9qU^i{$(^i9)du-}c49O1?keu>CL6mT!%QmKXPaH>>Ag#R@1z4%0kM0)Q`$f-0{EtL{vF83n!eoXkY(q7Lq2Rkb2cN*emq0}&}{*9 zD>HxhyT4QhJLAO#d^96~xie=ZG(Lc7tpF9uH%DkA(QWJvDdpVUi)n0Sw7FC7A|E_u z8bWUXWNY8xNw4bF+hV%Er&8?apkuE6L5%)jLY;eOU>(Inx!(P?%mP=XR5}0&gZKka zUNghmfz@Bc&&KZjF89LwpGV>KX-Qt?7Z)huXr z0*oJJ=j9N_75CexOD327W{B}^8KY7Hern~eR_bN!sjR;1u8RxnE0aHylL>EcD&e21 zTnGBaX68^F59RJrOQgPtM_6-EYvy^}V@CdRF;FfI{ab7#G6;N#G~ZvYnRH5_RA>Q}^{;BjYT zz1$qFWc8f8PL)weay|MjS;dlJ)~|=+{&yPXZZ#bH`ldm5-VX__)ESnZ{1M`Ad^Acf zZdX6YFyy2jUY+ux1>l381a4>u4@uIB;`5c^CWCfa-_sdAalP~_T0~fVL?;%+Yl=1l zF4_?1Hg4fCs^lfi8`?y-%o|Tw6mq)1x;7jNlf{$p8Me*M|Bio6odi^&B=DMDx@sH+ z7znra&G4J?so#aX*6(yjWz(1~7%tk1cR#i^9R1z{RF)|8@3OQ`Z+eUmKv5)gRW@u* zNKRplg(8^&K@0%XI7Xt&+s@j#&`=n@jko8LkDmyCQT|SP*q@(*9>!KOGd(TJR`M4o zZ8EI3HwsB=$QiBrGQYehRoLhRy|6MY#QYd+3N59#@z~ou{WM9!D4`JvOdd8v5+oqA zAhpBW!}cef&jVpOZbLInuCg@>;WWpcGTA$Fl8-hc4ujS!13O_%Up|vEC69F3Nq+8; z9ibg|iV*jby)Cn=t9xJLCW)XvEz5PDr6I?|((f6TfKgWBvHzksu&{~qhvQ64;r!M; zAbi*1J;4`vysBW*ME86#>jm_i#uKNzu8fRR-+J@GW#M2UTNNARw>X9C0DtHT%V73j z-GJO#MzkueKcu)`fnD_swt3ub|0OydGI&XkckAA(LHsmBgRSQSBmA_6_{p%c2T7VAs&{XQDxE53#FR9da|@-#Y;Nlmfx zc*vKYGsTCmP%%`zM&iIDY4lb}PGDJ@JDq10NiBqT1yFu2#RrUYUO2PkFTk6;vTLH< z*$-XvJ{9-blq7n^YRAIBD6JA0Kxa2Wsu zI0%<>WosOf2T?;uDG^+(?^tXWsQVs>HZ5(W%<%4SeKXUyh~q8)pw3Pq!4m(m*cy)7 zsq0hjFkH~SYWKdc4vOM+zaJt4ur&qSSz;my0uXpNo*4f4KqaLu%epP~hV{Ibt!{~y zt)YZdyZi^OQOuZ!&m~ZongD)<_Ga`W3wW3z9RHIU$hd|hE5Aiph36{fiEPCVFs^1p4gIRSh?a}SS%dvG<@zi zl^MO&y5C0Pw!IUu;fZYid3w+(yii$MIcW28DZlnPOT^Oj4~JXtpLDwr4Tuuj=+2Xd zHoQlmv44mY9f>;HR>he=gz$#SU43-(Ao@I0?EY&;gji)`uKz`n8Ua>$*>IPGt7lD# zGY)@p=KnRuHp!ZbVmRy%xCDLW36;&9)Pc z?4(@Dkv0ge5E1{?_ov~RID(iXl_@fdqAKtOdzNMx!-e)kEo*w^E6Q^{ zUcg%Y6Jc^AitYPXZdIP=yuHdNp59n2*+R&MZ~2oBik+oS?U#u&h|s#DkBu>`@ow)i zi;@JjhtbzDi7$-ql|MGmFH)%9CUIhS^_@jaN^}LS zSw2KlW7k|_1$$m~^En?M4o}f?sD`VfAaJJ?EcmjkWgX%D)eK2aVU9c2qEqVxF)|Sh zHG{@8rif`cU*5&vvgr8DKkJSo>AJYkvaHE7ote&paR=av5wJqE1EkCql zZFLxxUaT>6yFU_O5UB)uL}+uz3;SvYUL77d5oxd4MT7D2A(F(qI-Z_tZX0X{eF7aX zs-sjNWnwBBQQrTf1)w`CN+RI9ABQJ}=3P{lKZ%_lmr4GCXN_R72f=WJmS#PrzfMHS z7jXKlBS}?76tgzUW|zbqMd*Uzhhzxk_+y<0l-)`HkaO{JrkAg*`&@MLS)dKSfA1HA zpw0Y=<@{LHsMiLW{%V>12M=pXkQVhv-KEw)8lCp;W#!|@8ags4||`}Pd%YhEc&i^dgZJ%d(O&=rm$mC zIpP-3?(4aH3yV=Z7L^UxJMyl(57R+$v8^HQm#-a(!u_$paMw3D#|gtYkEI{wa$YaY z?QG9$=GuxBJqkR6`=7XOEYBr+fP@{mrN4+j_)OAvJ-dz%{gyU&L9B~(7@DGX5RA3e zp)a{2Tz*sIo$Q_RX@hVM{tDuF6omr(L%Ys{HAAv&Gikk`7#bPTO|fb$70*#({05Xq zEG#^v?x`*z0-lF9xLXiL-$?7wH>v0@Uv+lyRZ)aWUl3N?XYMBB&HN(iAK1lgaQkb-Fx!c8 zsN_I0fq1G`=*Ib;;>oFvHf)D1@d3zYs8`rmN;OT*&^qSRJ9j^Mxyx9gL;C~67)?KW z^H4rxswn&lrLvh~WU+|Or2i_zCqwHWsz1;Dzr6tsdH~&2Cokb){9lE8PLmS1NM}3V zNS`F}lR-Nkm#|h}T4OEJr?w2awJTM@cr$&Qp+Ny^efoX2pEwk8xh13)+83Y8eO`S0 zg8p^i0(r@UdQW`cKSuqRqB2Iu}_k-`^XHoke_wGJlg&n~z6h3>TSe>3??J7@oP_Z739 z*3`R)_LIaku@?Ajv923UldgRgf6j5W@9Kn{mc!o9{c(wi!WPGcBp4cz6ZlUa5m2h$ zxkDC(Ewd3iotG;}m+Ic@1ky?zNv+YiHP=3-4y5z^u-fa_k~u0DLn+VwZEv7+>L+bD z*k1R6Kz{w!5d9+B?Pb_K@Ot}~4z8K~i|Bn0dRtP<@3BWIUoy17)vSNO&%qA$C`XA&X9;ihDvaCSQkYK zXZ6kFRV)!KW)Kz`iCuNfAo~i#nhGruX6&rAmpfvgG4ml+sJmdK9VRCP;2eSyje&*7 z3nd;WUh0pfR{0J{JpX0OhzmFvf8{-~lk)<9tnFB$fQ(&%K(u#f=Sy(EkSpsAl!-Lj zlfPAx-)@omj%cuI(fWdfbrZ&Aj8os`B5+4<)#kW#6DGn3I&)n@twPZ<_$!H?XN7dY zG9iNnt#w(wq!Jxd*h<6-cRlNio0Ro+Kg1%BsOy>1^OfvG=89uC||>4A9-;18fek-_QLqUhJosrK$doPC1DR zyxfO7R3?6J&vdG{rLmCUt<5Wj@p`^^*Er{eL>C@NLPC*y3F0#z{BE)2lK7k&(FSWF z{MEnxT?uEU;o*H2YLKh%D;cmzW^!$uACL-y{N`Euc%)kMrKDOxd<{?@8{mfUgJAon zTx*4fD6?OR%Q-MtHy`@GWb&h4-MYYDD9l%TZIJRii+#{dj%^^t<%W8XLjP2;6S6`& zgf~vP)OdxiJe-)+mBXLV(JEhP>>Wqwz~a#J5B-WrC?3F>ulz1Kug;p|Bf;|O0@a+l z(~_o-$wn*;w>*I~<&B->$-c2v`wB$&5@r(IbctvPgOBe#R>@<;(?RZjj^DGfv5BL( z?f_&u3N!N;9tH(%n~j;9FV!YKTHs5Q;D0)v^{2f1r4jhtGR#?USt&j4Q=@EIXKT|9 zJM4JM)Wvq=b+V@nc0~3QIVvD{p-#%`a(7hvDsUZ%OVy6CPMGyH$+Df4{Q)7{kh?b` zkO-q@yAC>ykOSI<@Z)r+Q{ZTYS0}a|4dX z4wP#t2A0~(EIh*@dqqUz#F*3STN9_n4FvNCQw6ZfcG<|$470Vb-W*qUdHl*VxtAt| z<4vnT!X*6Rl#piVfa-q*$Ck|k(*;gP7IWGD46R-)C_q|H?%09l><=}=S8Y7 zPPC~dh0n=#6zGb7BNa%Th1KCNGMCbqbT}awqI5GXFge$*;_qNf8xC71{_xJ_Nn_qG zhK2OUuAE0{nhG+62>t`JqL{lxcZBihn3cmkmZu&pWLnhZPPq8zRsbJgWs4OXOwbS*MUtQYbUw8noC>0?A?0dBndAKomEs+r3o4X_DS>zXC zN;ED(H7ydWXhhlT*LUn zH`6HqSn7j8(^KJP`1#9Eum5G)kyB#ZFHLIPU#^z#xwK%59ZiMyslko?*FCZ$QwZEx zp(Z^IeqSv>SOHzeZLx=UG=VgFlX)_9 z49nMy?!}6f)g9xp4U z5m?$t*peLSn-CphTuzwIZwpVZ0h{^UzLZY1z%L|03Y3?xPKcunQw7W(&>hFBgq+y} zYXZ#HI@5WEuR9r;{IO14YVs)*+zs^iU!J8lLIJPB!ouE+u7mz!PNl&A9Npx@7q~kM z0K-hX=Eo}@gFE64it$SomEr9F{1V-Yp#J%T#gN5bfw1th5_e4Dua)FRUvdzrQ!SD2 zN?*cfTqTju3qH3Zb$y}EQy~4@g6YU#?DeoFhX_*%XjNCc#gL@r9aj zw>{I-*Lb)r-n=_dxju06fCFtwBP~F_l4adXvC!QViFyASl#U2p6EFNBj2&WkQi z)1w*3vJ?cID zRRA*__PO?>y<~zXzh-khMRfuPv!C{H+@tXCZd6oUdZT>4{aNGMRr_1_&PPMVF*L-P9u!js3fTdX4;rMRVpMFX9{LyF%YlhUs zg8b$i19sLy1q8hh45R++lpcb+=sG%U_kh;(BF0NxJjnCsQ1TP>Z;1;wiey+VkoeBY zPmEMi8gM(HJn?k)wyW z__uo?+IZ>Mwm+91R3V4CP84R`$5|A? zFcd$K;eB!PqEgTrb+Ywy7O?WOV8Hex=8In)%r_b_)@jKCC6eCBw@$)S9G2a#=bz(< z%F{VcbQDI!ADUB3ZLQ@Nq`*u~;SyR?T6rvd;76b@ApSg;Rrb_GHO|aWeeq~Ln8}cq z$N-}ryA0X+kOdQyniewys~QJMTw$$3GzKx6$IC_}G7xI0S*$|s9hQ*Lmc^0C#KfJy zwz&;`{n;-1Q4A%Gb-coLUSg!!Mdy7Jv|UUW{B0tQp_)3!a0^)U>-bsB8O4q4vuAcE zC><@bZ&=Kj%8EYZu%{EUAF+!jAXW%POyaiitVreeYFasWqdrje|mLb(!#$ z@<+6?78#YVl!@|28WjO~L{G|VtHdr4ruU&8u9#J0r>5`KOH@}{uJ(Xz@ zhtA^AWN6-Oe(M)@O@!A%ZjRH~^n?l2uFtDTJ9?CAksf;#6C?cnkq?h@e9jbMefEv} zp-};AO7uGKTvWRf^T?w6d)3#;^)@$OfB13DTe9n;*4fQ?TkFJ{1k*t3T2rvH$fsTL zZ^F}kDvk6*yyd)A6V@M??={moO&taX2+{wJdqi7_V?-)nr4F^z|RpBZ3j&+fw% zP^n^(o;PEReC;uj7jKpc{)Ghg4JTLr2+-MN`_R}M{bnZC-3OA$i_4Cy{B@S40Td5i zP=fyhcS7DdX0-hs8RZl?-=($M*+^%T@Kfh`3d5frhZE|DMjJ=JWVNTz3*?2W_HrE+ zb9UD7d`HitY9%%(;8^NF=OR8QF7eZs+)`kviPJI*N8a0C5uV?GH=56wW-4tflsw;e z^clj*PNpVsm?T7%GH=$Bl3wGg94I#WIsS4UsE8=XOj$6o^LaaqU-G1D#HTZoe@~mb zA*i$)vem5NM7ZOL(IByw`yYYx?2~mxc}1=wUFfx~;XWMfI+0RF;x#@fZE=Pcpv=+d zl}<6IyZ1qG9vCeQOrG46%&BAyBlHG2pJr5d`ciKnz!VOJ{bk~|p2DAnd9`eP>3TGk zr5biu;0Olzn^nj^Zxj0dPO77*nfUU|{p1^tLh1=zPoBUOmX({4av-eOM5rM2R51)f z+RpDkaJY8=<-VGxUS8maodea+CZ`QM;<%?P8=Y}pqKd|h!xW~K+(e#&Q1YKc>bB~% z`b_p9A0|Gq)=+<}Ag`qgeRt97ZQ&2hp9cnkbjQ@gZB_BtDML@lCG%lof3B%4@_kr33N~sec9cE|+wv(fmO91~q7>jt;fD;s zfomJ5AGPp3cdK)|JLQ^lQk>idCH~#NL^NYOg@E|rs?Fb_Isk?;O4h3Cx zq+c^Vka+$|FTWCvoB^xgy*w%^c>^X2V`U%vOTjM}El)u)HblgvdXXa)I=gI@i}=cM`>h zX|w>q=OrH7I6n-vv8M-)J4*WO)*p7;b(Z;P=i@?6jv- zxa*U6S1O(Qkr#hY3%&iA`;+r${DBvz$oT8EWURF)4xq$V+a}JMK~Fp#P>I-(Xnc~2 zCN4&>1UlO7lGy&d3W|B-A)1`MKyr6(K47(#BEdy4B8|6jOCgoXA-J!OU4c1S&-BhK zwkv#yo)XFI20u7#jkhUiLA1|J3yu5^rWHDsdjemfh=eh$D9z1REKnxG3UBxKCo0!c ze^=ubr7Y*~N$A1lsD%8>8OlNUZZ$l&YS=|x`fBw2--FCgpWO8+X`eNgmQudQgaQ)< z&$jrM-89XHC=>E(VC&&&?#3$YH*az$ERuE_aeM&Q9Pl(hbN^Gg9<PSFfnTwdyi={!4o)yKg5maHHpzVqGVVR zhIwLWc>vIS%830~N_s@~HqwI2ls`|cd-rcFJRt`4vm`RIGjwx;-W+9|8=~!2xEEh+ zJrBLxc0ZVBW7PFq0rx?(bDpr;o(3#gMA%Y6HA!Jr_+E|#=1xZIF@jo(K3ltbM=23B zO}=nQC=zu;*ft9pLxek&_dXFiI^rbvBhJU5;^A1JFafK7L8*DFM{J;xHr88ZgfTFF zudnezm)is8|L5u%Ltr)M6?d*fD#)%oKjqeK{sDv9nLQwN1jmPdq8!6SqM& z2K}8Y_uaoo1=D@&$D3oQOC}J*Q@ux2y7eHs7%b)o`QO`FzcQos7=8pri*hPKeiuhB zBae^!FuYlsVj*LHJV%hsW<-SS%MT9;RQv!r=|d{jn1L?(A}u5mlcbFP0& zMGdDSs19_Ws65Zl4j)ZQo{z7b$OyC9tC~&xEpqX(cN8h*Svkws|s_&rvW}@;NCBoYIh4pk>0)wY+uAwTD{v38A$5ao65D z_&<8|&M;bNGNkssuzEysD1E;(!`hXng6L}ZF`Y=;V#H%~?$Ysfub&?ignr`QfyhB$ zzdA6e=?<&YbmlvybnabG5dC9W};`|MB3$i zzmXD{U_qAU-KLi_YpaHMgw(1o zf3|5-X)RX$-Xw+kKHl&r*gCpF1Tix|@l%q+Q`4=idLvy&@`V?LcGx84_fY?Nx-m^# z8T#LwO_r}0-&Gp+Su`%cxSyrn{Z3Lld{%3Koo911q*$(GKk#fUNO~Kf=^90JG+VIb z<+;(`0$qOUX^3im3O|#xFPWZHJs2j|^?NUmY*No|9dYU|diw)IJtK7T9zA)>DG`Jy z2uVe7@!lSTQhL`51Y>o>X~W5VOx3&LpSncuBojJ5GhC;>U(H2kSu`MBB3MO1rTS$p z|C*w(m?(`Voc)`y=Dy}bV^Q-6R`}OYdmpja{nf1L2Ab$_9}0lwAWDr@@XZq}thAZy z5Iq>(j{HBIeRn)u(c124(Sj&J^pGe?5K%)IB3ks2AZmyZy_W=|MQ;fr(L{x5zVCO>J>R*1+`IFe$+l`j+-{*N(YDs<~`<<5NF}lM< zmU{v{3dLGa+30xn#6k&mSB$;CtV$tpJebqliTXKL;&2$U{37_#1#Be7dFEDAhb|Fg ziXw7F2o?9EB1w2 z9A8pRm>Y6m(f|69wTpgu*^4E=xQ844P322d1sbwz^b0?0cnFVI!b!w^`|=x8E9woV zz#!&Mb-&EAOFGm*lC0!cFWPQB2=P}~)`p2j96#YB7kH~m|$JYG_cO2Q28zP{|`O+vX zw&8?{(&w*5&G~y=SR0jeFaq7H=d|OP-l`tE+x}xcqboua#LyLm>#u!#hnSR?ea0m=hprDDc*2Dhus$@Q@?&Sa0JA> zB`VA`!n{4dBVag04XM%cr52a6kU~&(sDHsrZOdM71y5d>EQ0QOM{V;$RG_(nf{?$fma}hD#PE-m zcL=Se5@WQy??P^MjMN(RWSlqLuLMM0olD_N>FI3%o=cubu*OmJm zEqAPmt@cO22?FokB_X`<)XD7~s7TB7PO-i4Zv%-Ie@FaMRIY|NBm`dZr;kn}Jx?H0 zQmg;OcdpnSjMC^9!4=+t7tm97#qp};W;3Qgb4Q1`Lez|UPGtx<7)VzhcYIiiXeQL> z`pJJ*ASscvT^@v z)C2CwUOX?&AnIOp#LGqwsu%Xqa28%I?G_j5c$9~B7=B)zkzrhDS>3gHJI}p|g5Ht> zv>yIS>H)0OOYUVY@hzO}8&pQ&GW6wHV4aIO-E$(cm)wn!y`NyDms_|QQtq0-?Z3*z zR%PtJeT|A(ENz_C9zR|RA_Cb*RD zB`FScQry38HPed*{>1*$=P?CfzN5Q=TbM0VtWwypn;|ZnIC1R{wd3T)`+N=Dvv-w| z&-8RygH~`hHVjfm>h2UzgNciaJxW`Be&hxJ>qgiz&i(TZ2envOS?a>&c)!lxKu?tp z)AByR1oa{}W1=Duv)re*bxug9=$nN5&yCs^5}2$L>~A5($rMseqHCsut2xl{=~^Bm zd*4huyZQ$bs~J^=MaDnxo1WGE>rVv}w&)Qy1h@MrxetumXfE}5-%M5c{`e3Izxi($ z8uu%RZsGQ=|Fn(x%RU=Y{?FUSO(L&SSQp)$>m47}P7YcZi2IC8Nb{O!K;mUzo1Z;y8a#iy309df!AZ^ZYj# zpz88M+cBN0m2j=>Y{%`G#6(2M;0NeU7;Fvi7Ve1o5_#bq9OADM<98n+E~s=2lYO zC#P*NEtxOq1X67O^u(UN7R!N4!`V_-(?_ai%wopQRHZ%l9-f1ps+^332)#%_eV)f% zkFK&0wR?zh|JvzJ*YT1A zkr)DN^BJLN$>0Jc&?k>{#`4J_Ugi%PSuS@!QDFUwIgGI?*l7DfOKec^3St&(v`OIF z!$3+Z?sTh}+1&}L&rKXaJF|I4O&?1=;+`$qW`rTQN9)@hzMF~havt_`S5V-yQFWze zi_CWQx>`xzr&V6jdw|)SmkSnDlACDodn=-a_esW4|3!?|;OSyv^*tg8=D5e?QIkvf zfJq$w#>smd>OJPRmOs?$X0tEh5Mo2H2g7{^z8-9%%fP))5&KqHNDdesyp)OARk=*tWb9pK7*Xq@ zcT5m1DC(AgdiA2(jzMt!`}@>4I)Ixd8zlHpSBfE&5%*KYJYdh_!~3GpS_W9i_V zJP7`NYHSOo#Di>H7$xIo(Cb8>aJp%DU(PYED5T1v<4L6-s$Yl~(;rJTx?o5UsK3Y@uA@EPmd7f{qpKDC;C9+#XcESOkM=vNa zUD8xz4L|#ENM&IzN7RG~Wxj7*O*ZOYc(4kc^$#byj(Us^tvph$`D+Way}-v{(x_SN zSmkzG9~gTxe@-NTaJyb-*-IYdbg^al{OVk~k|dGN92C@)iQCmuxmktKDO6wyeM;tB zV@nfX8!*{H&ji*mt_KUcAYIZ+3BFC7BXf| zd!hSMCcC33#7nsB@`BlR7(Z^43HJsQk20zMb#>MXeqoBw$i&t@Qotla{~Md@@j-AS z2Dv{%;o$oAIYnJ7gByassGw!&z$|yRwm@!oYT8?IxxO@0o1gEF>f2?tzj(u)LkApB zBYH*PPfSO52gfOev3UNc0d`TarSur09w-B%bq>TTr;}~Q#>Y3?#UYpQ={uar1X!sQ z9f$Y>jzV2s-O#VMI!}LnHXLdQnRi7}K>mzPa2X%%TSYL9i`q^sO(Mlh-|W7G49!b@ zO(J?_in%u++yjLyG@X??c0s$0mNPQ;C-#ynZJqbm`t<=X!WKJ<$AfXrXgpg1o>65f z9L84+o##?MOuSQ*2V9VXH$Rf|$WsP31Xs6e(N^Sv%c@;w^rJ%=9Pe;#`HD1@S~xAfL`ucx81 zAB$BVlePL+a($^DZjIdnYR6$33aAqR44OTY!ZsY`Hcv%Y{zo_&Qb>eyXo_= zfV3>Q+sjVuc4xat69C1NP78@Y8T%bS-$*@R`v)?l*lxt$)J?rt?fM{KLh$w|EY5Ld z`?Z6?)2|vI?Xh_D#}uzqVM~$^geV|<7`WeCU0X*pF$%Jle*{?DJ#k}Ed#(WA(d-{_ z-R%|JWAA?8hm~d%rdOH#e(6nU)DUP@#bicttf^4|Vpy^7_U(Cz#+ShQhfMkE;v|$$6vmzblL(a71<j2)o5l^{8s^0_fxdTlft#i~S0U*~z!vb}%n?6v?(E}qSOhM$7Aa5C7x%GC8 zO6IE=7L9X2pGsk)FC$6*);bNucr6E1-@#zkdx!N@_7_G~`8)GxKI{DWi9fn|Zf-FE z_FGr@e4Dlhq}jgMUT=p7}0#IK($R#&+3Ao8Vr!B5FV z7rU;041Ws%lz;CY1oG2RcSZ6##nfJ^8stmApnBl!hg71F34YC}4MKSu5aL<&I&9gg z*HZb$U2}x%;jY9>W4<#m5v-k8Rn%L0)IwrHG-P)$xGPA?_tI^jI2tB6>w5miatdu0 zOhto}i-tA%FXUj~Ao@d*nvbazyc9dR7&D^G754Cd4ywi!>Lsq!V5Ubzt+zH?ethMX zT;}5CyCa`}>wCDIT%;D@kCyr7mo^Nr`G90dz%L!NrWUjQeR7j*> zwOJvD>>6?KvD6(0O>5Z^EWy9kF~P=Xt~93tiA;$cd8r2{OlxT!bbG8g|E9El6!Ahm zRhW6e0pW>Z?7A5xty!&*mT=GFLpH#5Bxx3$pfcrq0 z8UZauO~HcaGSsnY?WkmI%*xG~eZoNUB`hi{yK(M_OWBP8KeN&TEJ}QMc<8i)N&y|= zNF%5}t+%)LbpJchSf>QZwH^J$BRJzShK|fO668%kzC>M&nC;y@RVw zKb>*7F+wS1m_b{##R-g>)5mG?qyUq~XxV*WWnPZc?>`RR#tzQN);CEY%KCp_`}*Zi zc$)bPGn(T}g&J+1wiBn0?ZJjvu7duR7mR^EX6R~LK`H%2_sT=|6%=$*GH^mL+PtmI zW#TyR^vD?#f1qo`_;`0@b%S-MGkM#A5b|^IZrhaQb?f}%&WX>(Et(Du6c8s5gAd%l zOKSHN`CsZr{qYFu3{*U>A4iO4`FU?8vKCSM0KNrC%; z3mFnlg?M4U3!sMrFlK@P#@#M)3zVOuwp8=z4A_L0U?6G&v2$Qc;x8ilCyDU?Fb-rgpYI3|9+lk0ELTE^K8{?6~VptF2U20Bassp~xD`HmdVeO9|JTJx_mZJ1oR z;5!q|lD9Me8hx(SbfyIJA66eIn13bfDKHn@C_~nr;g8BZ+^?Fi_-2N?ep4lB08cNN zC=pf8C8Ac4;|Y5m05hwiigT*F^&Pc@GutKsGcAKI3^{6O!p$5Yo<$w@PFv5*f;&1)}D>z+?9ri=;{$j zH{Z32{q{ZoYNcvY_HLu6bk5_DtX=-lEZ)#-mOXuU3`*O*CLr(D5ZI;$xnLTaOX z5;05Eoai2>;gQbUgrqY?~gH0=a=GT)rA z%mszc^zmLoo-~6T230q3W3Y67*!(Er!PMdUIDmEj&-@Y8Z#vwgG%Dy?2oBkkUt)xj zZwunnGyz2ZT<$~36R%5DF9gFNlh10@x^RONxW~sXR0qOX?+ouMjQ25exXUQ^0^JK` z=;e(jym{joEwM$M(GF8&A2#+hovN4<~ZuncAV|>^Un=(YKp&33b{EA4YlVz<^bd$4(-L6jW@{45t7V)ZXyj@f&o z6dQgxFeaJ=CWE88nvJ^)Q$YVNL9-!kyb9aioo2VWJ4PS@+U=V}+jp(ReQv{k`?%Y} z6cpaRK;_lN?+)|?J7RnC?2ww~l`|xEHlb=qRNt*Iqxey2_A=O@1-R>jZ|H^Z6l>=w zo+wSlO6zA4e!kfv0pd?-y+llcm6jE1{G6Zpzt6Q1VvA<@CPdT8oYQl@dx^iE@~(;m zQj_Km?x!t}H@5dD8cA*|SibDNQhGISQo7P`3cRRwB<=W&LeeIFwoeAqMDg>sd~UUT ziT(>!$d1uebjSZ?$X)|c8UCpYb8uB%e9)h9SrQbf^T?v3b0E|&^FG`W3d4viwqDl8 zs({{hJq4+G(M3+|X1s4!t)a&AJsuWlip4{{4Ett#akx*Ec>Os^Vz3i9O&z2 zW}Xw=@55czwse8sqzk$)?8bgHa^)x*MuT7$vw!TI&vMCVAk7!SNzlHhPs*Kfd> zU8a~8v0?O7VH!+~A}H>%NMUm|?C940mbf$h{b-f_01@)zW!R42Zch>?E03&N%w0nlT$ra8S6{<()MwCEdK7vDQSrg&#g5|fyqc`p3V{8@32 zP%&HEp)d}$OM7zF%*D?no(4ec;nU^`%JMtRD~E>>A+R z6Dq?FMlPW0dwoXI)WeZE*n%md-9;U;J3t_hjz=eu-9?2uF82wB5?jQ>D-Hu-x%~`j zPrl=yg=zZnEBH%>HxtKk{&{Kt$a`YRNNpm=;VLNv=JTB#_Iblq*Yhx7;NsN)4aO^8 zXb^3@?(`G7XDzP=d3hGm?e*IkgdSj)uka%J$jVxwN>!-pa{eIC7pi`qBiOn;A0Z3DRxaZaB3FK8E}&bX|jepi(5G`oX0e~<{gPV(2#3o9ejJyc)h0wK^t`81<)%Az5p1scS}`s zR|!AjUJ@#BnZhN$qwygbyJ{LV(a)@EN}1_!s`P@2GqqxRwfVPk@6HvK8F1$F&RCN} znER2YrZhVMfy1&w^5F3LYNU9!RX%y?*A>jq`;PntcekCs;k0_ux&xO|G--8vQL2?A zHW^s9HzTR0IhzelChr5i)JOoCk%s+wDqmyI)OH1$${G^o*4ahG9)6tK^)jG0fE={C z4&oii;AWa!c_5iZmCtEE_K0(_KY@~l!s`39FQU)<*|D3#`ve{sT0OwzvAkB+0yn$} zsFveKuSW{XA@@Vxm+l2~pa$1axXjCG_FG29<|8P6yY-u1soQK^!FLLsz-)W6$u;lf zkj$jBF-3g)#b}hzeHzo~trfyYWP!N2mkOS)$TZVFE{+|Ji2XOr#gcftjOwvO5AA^& z1Lti*)KzKp!5b=NYJ2{CiVN&mT+MHM6VBa)*PMiNBCshjxIFZdDWvF_yyDSpb#YN! zk?l5!*_Zt$R+oXOEXItOdMVU6UIkvX@ph5w+U|#S?};lJpt)0ZU+4@Rv8(=jlP%*a zi-=9`s94G!E#+U2Y9wL9JVYh9jP0Hd6a_B_kH+ zb^zO+mYg|R2LjKdk~>%^$uj$p<0I5GGFuX<+9%9XprE5k1<;TTsg%+!lpfd!+!=^)J!ECNG~a-z7_)0g-Snh%w>8 zy5q|a7k!T7F3(+2Q!FDJ(`VPWf5Fg2D2#fcn*zzou2ReV4;*AY@jkqq0(3YGVWX>>`=>YoRX{tj6k49RD-@K=8ZUP4p6 z<^xQ4cfNyzIsJlyD-<%Vn9OqP&JBBfm98g?;cKxDYyN!DGffy_!iVo0#1bO>`$QNzwLmodg@$WA9^-~dS$Cx%D6jSfbd7Bke zuaFCz^4(YL#9tA8dYoG`dLHG3z#%6V=o!ou)g~{N3OLu|bTwW=bj31&K~$8Vfm@o)qquj{tnat-O1OMVsT@s(f3jxN(Ovq%!#@kSol=_fihTfX zlW*5LeIb9*u@8T?-!9+hC6>6@e-gaR%ofq)^zrTkp=dBNuZB}!e&6~8&$H=JLRs;J z39a*IQ*>|DWSGJoX03QqWDmP%_U2of(LB`iF|dI|>V`wj-8g=1qg~)rWpUgR3P_LU z8iPJB3(jHskozo4o!PgtbnXP_rn99chcDGet|Mo`0urLM0DG|>tl^#zH~duEFy>7B zGhMn{O~{5(!8HvVPL`Wtbk|ruB1vQDk!|`AJ2OdQ~3iyc9WcU7FdBl#6 zRa4^ngP=ewK&YL4M*sMZ2(idG%=Z0FjS9ELlckk6q1DDen-AN= zJ~IF(qVQjpzf(Wdmw0_1GV$WzFoeCt@F$i~Z|Ctb9)SdcmP1qEL;i^TvVtI_9p+o< zcnN}#X3<0Jt{h-zx?V)MdtLTGMeV59bR~DVc=i3F_l^r5WQCi6S@J(V z;v9>FD7CUeidbkSYf!nBDIBfNGjje(ql}~$)?U{T(!LrDc=r^W1q>P(!Q5pbKy%-j zzg7BRQ`*LLoLs-mt8~u`{7fCm%6_^`=(j~VW3p={?(}FLFo?fj%ZQve$;$jO;9rV* z`fCZHNmsT(e!mZ@;1Bgg`aF$!$03c;0f_r1f=EfMw~5E&I&_{ZN>nZu zmz$nWhb@1IeTY++mXgBQ&CZ7k8Dz9qTz7Gh;M}bC`BcS;XwmoxnV#am((` z_`-W{v5p<^8>er4d#{4A^f^HsW_vLKm)QxwfjQW}a`Y8f8}-AUcnrL*c9o2K(zw#b za4wK0B!yqO)tFbo)ogd`1ZZbN--|nTzKRQNoe11w^f;Zph|??Xr}z&(m^nEs4VXJq_omc?%6?|OVm6q zh?hhL6>&+>p78^0zU9-!-Wvvh&%e7EJAf;HlJWWR@)K2tfndMOQj>m~MFUF1d0@OB znx!6(LAv&DX<*ZCC~LfKV>rJI)rsSPgOlH~6L^UjBh=rLOPkLS{1|SPLuw+Bes5OV zd{#3$ZzFN%r*rfqI8oI?5o~3XmOLj1X9nmjPPCQ^QM z8B)&VloOq)N+#o-V}ofm3iatpQ`ejPSs64o?Bbybk#&9@l5q%!4lA~cfun%)Rm3jm zRcG!)#MtO^GK{0r^kKktTn^VVsDKeG;ZbCFp&pc^JYBIVv;?7QuQ>zCC z(0k$}v7SZ}0pQT3+aC)&{h@W!tHtO%H1&lhI#~g4J387IbpRa$mgRN(qN2;)h3M!W z1S-7Sy4U^h*Iv;S;+MPMI=CK22aEYdW%LnA@VGYfaC_dp^?g{hf{!<+>p&9cN(McG zPP@IJTb#GYSt+66(a(zURVd#&fVMO2-e6Sj@r%~1@o?}aT6`_TjlGQGdyH=$h8cta z1@y-HydTUS|Gap}jZ3mE!WogcwJb$-mKP%74u7u6s@RMA3T@N?u!ZjCn) zdf#IKIcuz|7lWL6=d>`)Zj(U;w1rWK&+me$UBe9mpnh*wON=SsN!5f0W(Z=SlE36{ zYNtMV07>>Le`QeXfjL&qmiWWoRf?6M^i*GRn)rV5wY^T5AU>I70y|@(?#~>depC0E zb@C^<-*_6-xw8z-`oYUxs9MaIc)DA+TD5P05K?g0lEkE>)#vH(|K5K zS3l<(jhC1*jr-(Tc(i6%XPDCNF^^($Pbf~KH|8a){V4o$d~@0GxcJkdq>tPh)Z=X$Tp@cTY>h#Q0Ar_7@Zsb$0!Cg z15j{+v7y6L_%aZEi*S5gpi8wny}dtZrg9%(Feb@CIvk(|@~JhRx1yeUfeB!bhCpSE zv!Ni$+I*QghqOUEdFY8YU|1S2lIy>Go~^L|E}(|-K=JKk+B&k&ra=Ii&j|G)F9{{W zzpySlN>xn>VXL^!o)JFqr^EYve(-dMW}a95d)PqwU4dpnoE*@xjb+SEXW0TD?r1Mf zEey=%mK#B1Dk`DIoe$c#f%<`kr7vrVb)9j;oC0tM{zbhW8)9G*9;2H5lOouR^l<8f zn*!Lk?W0b~=RMk?{12{DP-T73|9#msfD=d%IE3v!($_aZB;orDM z9PhPGKKF8EQ_6IsQxy7TY{0u|XM4+H*qBV3l%LGOJoxAHEow@hO}d{0-@M~!sRyk0 zCjN{p*@85hnCqyoIBgMu)0xOCvYa-?#xAs|^}eQJ7p&$!Y$gE)S(tT2{viWe9)B2? z6vW%ZEI!5h)-imE#(`l#;|8wT4&hveETG-(62xf)-CyUzX~gw!99<4FQhG1Uy?AS> z{%lol$8-9$nYi1`;2n47)PiOGelY%-pwA`w`&E{Enj^R|D_kSC;FSq zTK&!Zv|^8itm@0BGz}~Mwi8wR0$oKk>x46B9{ia-$zJwrC)$R-T`o>a{nF& zKKm-fo05{DU2g06vbeFUF~?mx zTNbZl&#%fZXULo{vMc9aodRKXp628n4(C?s@tGLd9Ga3y-^}l5aF9F@2h1)|5cE1W zN@Z_71uu2R9+KFe&^F`v4HmZ1J!5u4EISw(!S64E7Hxrq|1+-M2E1Ei!G<&*HE~iR zkHX@U1{Pu+u>`x*&?YpM)8WXCT^~OR=o;ahw^|Y=&lN9We~wXn%c625eY44cApBg+z~GR2AP5ZSM}Zl6UvKXHD2Ygkb-9Vz%b=@S!-4mWU|4p) zmddp?-%QV6Qn%eB^#I!)^X?8vcfhiw@6if-{U~edw2br~S}vuQ2A8m$zFuF=gp)f2 z3pS-EWz5INR(KaB`8jfb0lFLlGFvn>8{RI)rRA_;_Z!#l+f(CP*0=qNNa`cq&=Gtg_A^il z7x*||CKzb6fxN-MuC0Lp?E3OB*_-8zGkj>*09&JH)&)rWv2c%MRQX(}j`(*aQgaPMck*1n zriLk=c6o!;b8%;rR(5ngO7UEW*=J2NT}_o)&0Z?g?{e3cd1eYs)M9joz7+ii{wj8N z+Ck5hz$XB>Y4MieG9zU6LqF$rAC5JY+P;0b;vHM+pS0cYlpKr>Mfd~lp=>5 z>~k3rXn1snkz2^v+RUYjL%loPDW#)Mh%^V*KI-W<0ctkfaLA*W!hU`Fpq93J;cgKX z(5)K%U1a_xNxeW~w8D9C3W|c5z_lB(8=SM7sUYx{7^!1ocB|F5X}vsxw^du36u5e) zJ#XRHsmtO0R%`$v3IsA;LoES?^)}DC`s-yo)qJ1 zsYe@pQpQ9`+Z6jD3d%|Nn&V?Nvk`?5CncHP~>1e?8!_x$-5}CG&fy$ZgZ6h=G&O zQIY!)Ehn@wDC&^*}?g&~up)9(GV;j10yR6|zW5eA->>(_ItPBs*VtJ|S1R5-e5)gKQbzA)jVncsTi80N%HMSu5Jc(;2U zx_XON(H-Q5V5Ma+!vOyZl)v>WT0n->LL?n;A0zdF^>k&>Xf4C%*EWIdv+t7LCttW1 zoROrEJ9i7Tp6Q0n>C`8F?Gfc=zc2>Fe>R}4tY*U_!I8@-1Rt0(SSlQz>eB_xk~qy` z*Wb$&(kAkrrO0Y;7~NYwUgAucNMP}J*j_s+CUc`>IXiZ9z}I!bk#&Y{(AVd$kiGm% zfo7(bB2?$aI)q5OD z?dy0wxMO!pZ1(z>{%w>`{Gd|w+M#$gz{R=YR_1J*JUq^Zfw1otKtkV`sP}|AO@Qm;vw~;LQ}IQ*cPX;hPVq{vDq633ro8<|_2iNpPIb$|?3rn>@iK@+VQ1Z%p|tF6RQ`enke2 z;1DAlldRvq$%=`2VRUhwuR>v#C*be5R>o__26~xw??O+&}kQ!Y= zsJTu}T(;)TZ+*3DKRAlREErtqt-YHR@cuj{T;F8)O?X#8D_l@YXoSMVsKT^}zrSNC z@KKt5Hp!NjvkV9m=bGR2^{_EiBjEhZ+{B_D{`5-RQX42T_Ia(&#A{)x$rRi1z`NEw z1!$`Vf>IP1xv-UWOp{qMX0MZEq)P9m-<^K2lrAXZT(b&9xTJxwY=t{gllY^3yi%w-8LhPIrb`|=#e3|;iX=^(M-*7 zK1&|{&#zy&$(-M`O2yHow~J6XEUftmkVJ4+C6U-^hpkykhI6d1PPW`>O=<#xZJq@_ z-Kg|Hr#5KXAlkDYLJLS@tBk&b7u2!C>z}e77_mXOCf8Px*?bo&M!IFok>`7aKrPwO zkcq0^wl#mpP>PdWHDx&hX~Xz_4v4-?5N5*pTz#)1*Kr}vgwtS{+1Z*Ko_FADqO~qo z^8SWKg4|`Q$i#t^u&CUXl(qXQdD23)hBr1~tOOS&1otVMv-WobfBoF*UUb7!F%I@^ z*64*zB=-vkeZfg>68HhHP>0OI6Oq3lub&}B^Cl+4tld5CpFrjTsS4_mjyb@rfX5Rt z*8B2BO-t#VWzd?E1ibZEf1g+m#l3Gh`|}XeY}JGg*~94}B=cxZN7KkJE@8U$gmF9^ zq^x*#^f_wPH!sXdKvol24;uUp)CwIr`T0h{gFZ(Tyb*!t4u+dQ`2R6;t+&5Tr_chv z?aG}y4Bzr==yb>($Ltl~<8})l#DC^i$E;7KnQ;@Qq}d)%kvAl$3=_Ues@mwZt_)Of zt@R@C12c_+c;W<1RX3QZACci(6yv$6$juT1O6|7bM6d;dk}USN;{W9BZF%xauJ`x_VyZ>GHcPYFuJJrCl{5on8u00fECgZZ*|;FkC+)_= zG|v6I;o4H8&RoSKE%0&Yy%a<2!^gKj@M-b_bl&MwVeclyDO#}K-y@h>L;N(Y+a$>1 z=*)h#`Ch=pMJ{|^=Zva~E&>??55@ct%;*5;uh~c}N(eG0!g}AzeA2O#;J9ygKsGmFR`NHzBNe_$^ zS}NTSp3Q6AzrN1=!c`tRF+*g6SAHZTEZ5@@vt}u<=7zO;;W2as<*}?w!x*3CM zbr$WMN`txDushlew%+$TBjzr>3IwJL6K_X{(Vv$asF0^9h1RL8s?yEy2 zCRrTa411w^8i7#_PBx)iJMChmrasGRlo4y+NmR@K3enxP`7CM9DVam+r09_vR$|i3 z72NneYcZ388_%!Q`-?09Hzzo~ixRq;O} zFo9KLQW7nQc{Cr_1avntJIPI|%)68?n}|W&ErLwRYgFYdu6z_0$JF0ASM)h5-R|&& z19G@;dJx+$2UzyWNjbXwBmZ3uG`fN~1W0}9z;&}c8V}UAA;~`Sj-V|$g8I!;JP^Xs z+Sh!=Suz9PWU({AMIIU~FTuRaGlxlu_8r#b=}y2}z2;%{&GdVP&u}H4xi$38-W7;j z#<|cI1Gn3HjsoP${mKKyzeZcF`XYf}H&=`V#2yBOBZV%HjI}ZciTw!gQKUW@@7ofA zK{6}up-)dhLC{l$UcO*ce~N3~Mg|f9=K|OT*^4aWQR#spjW%`DY$WM0L%jKWdb;-N zl_wjK!)D(G9IJF{X}{QOv=Qs(m-T8{=XH%YwAxs(RsVYWP~PdBYll9SD$kNR&9?H@ zwPRAG(hxaS7VFCv(dFsxm=qb=)~{bAgBNZge#IaCCX}G*9=X|cc$h}w^yqr;ID{vX z65NGnU%%J~Cp%#0CcijhX84;So9pb#`}kMUW_sB1PU)5&Y1!XItiew5DU#FQz!dv- z%U$Ib_kk|_e`-rU2NMGw{yZL-{E@$27wXZy zf{9(@+x&9s%-SoO#@g!an`=kV=Ei{qB?6KN7>_GX?LgCG)*9llj`J@iVH?9B z)Z!@2v4hT)Z=rW5s*~mZiP%hVl3r{5$NtL)dwJ$!i(iosm$i)O?y==4+2(@jRN==2mfB<`Z|-s=CgOq*^ds~ zqQ_4atBN=S=FZGsFp#=3R(`!M=&{RAhcoeUYQ-5bCaow{o##J)|FshSe5QVJKActj zByB8QKFY&=sqp%2LRa?Bi)nS9-&+ZMxab|i{*;f>a7!tEo;3HxRVhBhzqjX_&~igf zXSIICl{&c?l~ZYs_|tCS7kCih*8it=!AGj;hh5QMxtw9U{0j^W1Df!M_rBn}_gmZDS{ z&+Fm7@@F%-uS(u^g{VXP!9B~0tb;qh6__^ExVh19HvCJ^xY0v;emB}SluQ6lzNfSx zMg*)dP5g#S0aj4reL*%?m$V7j=pB`B(v81tO$%kN-NMODeRQIda-QF+8TOp2;=1|2 zw^u|ouLjd)zOmLX<{AofH|23Gr0zTH{P}ri!AOd|1V&%spBsMbM3=P_yqYd#he!?` zESOvOOZ7meT@%4Q^Z!3pdjC}H)dXIaVlQCrEIIXive*S7fH9YdXY>Mql#zp_Y-f?lt1m7Wo|NH*@%ihN;%Kx#hj~{bV#9iM1|FAt_;`sj% z<@x_#<$sX>rwh8@kv!P+y%@ctYEuO={!so?iHGa%t0MRxT0mFw_lb>LxC{1)rN%xT zRD533Rmf!M-o5v?Kk_MK*Trw)S{{Se+FwQWKTb8c67Ik`U;pUCj|@NUoJfX62_cnRi-jpf(vGA7K$oq1SMNTgGo8ocp z!~LtDU?As0H9CpU`rl=oYrM&tX(Qo|YOo&4uE6=3;oV%;0N<_*l`g(|IE5WMo{SG7f#W%`)+juJ5 z*eo1Ov+J&uiPrP{eprTzrJ#q=<7RGR=@T=DbJ#fx*9O7z!Dn663u9(+n=*|iv9v^b zH>DC}Ucr)^e^JuodelMXK7IOx50UWLVf>R+vaWWzdHfEn)@L#G)$$(Jlkpxlo*9&j zwke8uZE1-IVe>hVvuh~(C_FcTK*X9}Z0RXK`qaGy3vK!DtBAyfP=!|)1`qn}ZgM%f zukE}b<1`y7tDVN! z*Y+}RUbne1N5Z}JG0`_1F*i|9nn4I82W?*dWxsC-nVr+sA^M*^J~# zMll2FQ-%b=o?DLt{;&=0*cyhztM*`zPIjI5?qOr1q5T4)JPy$nn)ha2y?O<*PX(5g z2rexx#jz%;Lz)K%sR9B5ApZ07CWJ&pH>K{RkPu0}H;WbeWr&Y0{gH{-F_wxewPfyjTD;u($(xB*hMYp&W@tTxC?{vBYL{{FIzxa7V3-yxi<6f$`Ysn$Fer)9i=MRC4Yu;`bcX^Pzf;{#J>ji1XNxvIbCS-b>F)8yqS(Kb6oUpjK zSc~_{GGfj?4F0mHGeQi%kgYNn2v|E%?8F)-( zj`y$t>Nc3?w$ES77c5%k5f32l(*!6^^Hfnm&xT_cmX`2gFqm4JWFo@zXbn94&CxvM zW?n`s_0mkp*rqaxdYdXtlJ|@;|4%`;VeC(N?dQenU0%1&?_s&lI{_46d7T+8VUrcH zM!L2_{iCGwWPFcXmz`@XNHm^Ny70_cwJ6$6E4@1-$sLS%;%&f3_keWmNoQtL0ZTKg z-0X)k5#s|5U%F>%RLS9m69q$gJRF2ht{-Jfc)nzmUF-PZ&B(!$dK=P(H}H(oe(qh3 zgsb($79NB(G=nKgla1Ohn2B)Y`O*4<*V#?Z&&p5x3c>B=yeUGl3PTWa7)KR%*=0oZ1s8%RY9=Oj z+waAF33GjkOyzc0hSsJ1FDUYk+pXjHHQiPg&#W=HBfkZlK<~|}Yhj<$3_6E@PIPxG z8`ZgmBY1oq9DzWUiJAE$z)Mzv(f9A)Ih5LkGFL@`*OJ+_ed7=39V(lW~`9xH!gcwDN*dzE4Lps69r#$+a@VaFb$5R z4fSjEwbK*bTv%TVE==nCUsQbsSX5mX?x8!RyQBmOY3Wc(1O%i7q?Hy0qz0rxKtu(k zK|n>ibC3qd!bC|h%{_p?q{VwP;!R+-BUNf6iQs=)fYSsVkEf0XlUYhnNMK|Kg(D^^ARcFUo+Tr^X z;G%0}6J1F4v_fV0Yw^!N@tI5IKl%dmOV2C7@8aEq8eXi0NUjvl%?L9H3idsD_j$=W zn^9F=oH`41^4;4#oCiJLNJkQB4PbzNIJ2WB}^ekgQ-TYnjgT;W@@7(G4 zPu{61*OuDAGg>rSf9lW^*MGHMgo53ygvB-)HgNIhY?(Nj@U*R-%ugunZW~2+srca+ z;gHa^i_5WZjNIt{!i4zv)A4&raK)Ha+@)qf!COgrv@ZkR%n-pfA@${fLVL_l19FQ) zH>Y5;>EY^d`_Pil3K6JL01l)Vjk}-BFa43Dj^C9hi(4&yVKGHs=JiA3>-puz?h%NX zgms0CFPqE!RmH9!s9yv>mbkrQz-@#)dm@!#NdWo0JbRtnwR-W<{=w)}E45!IOzI#2 zbhsC9K%}|?3mQy_$PXx4Sg=4=>jUYk@nBM;>PqT2MNV#jin_7LWT7StvZe+1f`jI( z-Bl;$+0SYB@BS`s*j3ilBt#_vM}2;A@pF8fy1BV|s?L)~Dz5Df4$%(=qU`f(&votd z%ga`9FfcICU-kBN!&Y&Fv-AQK1OFC4gGyM{8T?7pJSB>3i`q*RKr)s%|F)PuBD1x% zg`hZ2PC7YzTU)v)w|vZmWVFv-&xFMV2V)Qu6GM>v)wbw1*{oaAMTu!4hm6;@qM;!T zssKC(aXMN06(5M*9-QnLOkM1vqNCr-$fMoVC@6sC#D3E+;1Cpy8;s0@fsd8`^})K0 z%s(|jsKqJB;hCLV4}z^5n{|%Qc~~@FJ~(U|OJW@bhN;S&H=dneFn; zAlhZNnjU?QAiMva!$He}Lt^Kqt9(p0ze9Fpmg6w`X(gca&z4fu$2zA*wPTW>;mwkkQ$& z?D@mJt%ypY%ULx9>e#%!JIMZk6&+_$Uh(kz;!7Bc>x?m%jN<#rD@S zpMIV%SNUr$!I$-*gcG!~0b7vLK~-S|7PE_hYOB!Td##+K*eVnHWOYk9LGh0qFHV_! zeDbn$#c5xCgsIy4h!qpeOmE|YQKhoFx3v`$9Zd*guGK)=-LF4>+;ep;9;Ov(@xpwU znaMi#TwGR8ZW%x&2M34a-og=bkymo*Ujbl z_W*n&5C~^O+<%}6>|GBHsJ&(gK~# z&h6=nJFhkkYU}HBz*3sm*Vnv4LTcvbX;a)6&LaTVvtJ7VTRG$5<;7Q0Qul*$Ci1-fxNOo{8zee*xtQOp@CYEpaX~m4%D}&{sHkJS&?q)kp%+Z9Pj}<-TzJGq%2#w9m$HV>vM5HXxJh*E}x$!p?Ky#miht7g91hyKE z&?Q0yU+4`=su2+t1$gz zu<(i%H;*w}fX;G225N}V>3dj*x4WzFuCE^vUCuG3=OcEUO8SMBqitNNz@)dRKlUpx z{~PDDl&NF$W|Q|Ct+|w{&WvA;a`7Q;yBF3(LsTGfq9A9)rcFu(u0Bd_5=Cce%c``I z#*3{*)S73;QB|}GvQ{d;b_Eceqhex0l(Q9qqYwQ2K6H^)CLA~c-jAC2_xa2S6qWC6 z1DF1$pnyk=fh0O6#>JIZ_$@|%pm>=5Hwkg^>{_r=YD(>xJ#Z29J26}*J)ekl%m0H@ zbQaDFfo~oRJQW4do0^`U-e)V}mCt_OWa-m3TrjTbV8&N?7GKIgf=%i<6J)ARsb23j zot4^jk%oqcugto^JHVQ%&aRR-qI5yR{rUPiVZWXLKYtr|wKF~H!QdZwD>6p*WK92N zb)Nk63k*$w>j1LrVMIlBhJSLwhDd$(lEv1y)f=DS@#E?%sa4xcmL;8^_R^A^U#pCg zgAV-8&5ZT|G3QL1}13uTTd5qS!K1+{iu(UYIV4q2{L!8Z+;%djV$ZETdxlu zkBRUWh}3~Dt(1^F^oky95W(fhI9B9A&Q16>y1L}(z}<|z zbgHbWIkKLFtC9BOQ>UWGWLF&XYK3_`vrPERjOm9@pK>ZI4a5!}c3&Qzn0t8K`TY5_ zk4#ln)qk$ZQakh<<@aU884;#1SWSH!NhyhRM$XD3xwyC@V`DqW0{5}zu11`u>R<7H z5_}T<{yhbRi_twXo%G<-?Vp|ejCH^%XMg`5P1|62RW~(q8w%k)T?!#PG$|&NKWEcU zmkx`Uzr<$^I8Ja}NqrYS{3}z`k&F zW%k3a?3>&ir&Yh=yShnKI^PtRoPFe3!5nw^RIF1*K8|T|`RntM<&Q!P=j$c@!$IG< z=ke7d)wp|pe?3>dn^>@NHr<;4Z0&2Emfo_&9nApZ^@vi=PRBsvN&Cis@HN@unpX_` zkNDCjscHg*3W_4W}r1<1d=KYcYS5h=x zk@ZsPwFd@VfKQPA{-#9(ev69xJ%rn|_!$G8p!RCV+*a>G86Gix7U(wK+e|-n(ms3$ z1>Mnrub6MEW=Cme9}s7I2H(>VmKj8cV_3XF^d*b1i|5@7SkjoPjn*pas^Y#xzdv>B ziUOUV)y5TEz?!V|oGc=DT|xNxdQnWlObo)lT?y^td3 z(L<6-%lL>>a(xe%+b->=8o+rvRDPaebxJ*$LgNUK#rZLo1yIN!4GH%1W2~j`ou_}< z&ndafZv0z_*#2T}zp&R(F!>yZs%P)%6U5tTI#{gz0g-4c#qRJWz?#FX zA~l&3>M#vTu=bT_A=_ck&tuY>ow6bBv>qKZDnnTR(;ChFJ9MzZXuRS3cmAR#j(?Vt zda{=9T>nh%WU)G^k$mNsTgxjtyA5_u!+MCSDcI?Wt20)!Q}cM`bqpHILo4(Q#^4v! zvA95IJ#THFdYu)+F@oB8=2vbbI1!$DCqI+W87~IDnvB1P0-GAez;p36wC}x0SYAiL zVoz%dcd!;@q!y?7yH6NGpiH_{E6Ia&!aZen^GGpnC@q3msaVr|&l#5@U_ZA|oM!go zQ7&#K53WsC1v5C}&Qi`U5jObEvYKi|jZge(i3nAkHOFM2M2BH>`S~JC>3PgxIs>e* z@Jw|1)nTjkpjGSa@9+-T|NnH)cx4gA9(c6Gc012NJUqr%C5k42=1`SiNqu8T+ z44%|(*a{?&&*N(h+yzIrYKqK$yN1ziPfuk;OlDJbjiGH;b-S?qaH_!7s}_ts=DG0x z*>21DZ5-&l^K!Xk&_dkl*BF`Fr>{?i>4-abLLSGIiqH|`hWxYwe}jio0o(%_NGR}> zkHUuX9bIZmOq=q-~KuG`mPpbSdV zwq5>Mm0Bbi>)GOmrxst3=MY|Dw>jy!ZY9v#K`SuL!@agW)p{DP^IXkeenP@}RUK}O z5OBLGfle56rz_h_4uo2J|9dI_ez3v6jg^7E#VN(4pPQ##LSM2+Dmf%n!ErwQ$3X*X9KtPnxT7=N8&Rcj zpPzP~g}P2oR+gNc9Fmljl)8I2yQzs;P*8AVV`FKSlbc&PPY;7!C$wP2@4*A2P>B~t zYwzE^Blq#~$*QTL&B(~u*xOSBi~le%F!*F9lMnv8$^UzD#vA11Rv%mzhK7QIf*{Aj zS?A|9;C}Vl)D#sVtzW~sS72X+9J{6U;y$kI>}-5u;!uz%Jbp}F-_Y>W1NUJ=Lj$AU zH!4t{`&wMwIeuiPt|gBD8-4d3c#z|>XG-4Qk`$Db9w+|vSr8~ND&jAPUF`0E_tC{j;<6vuTRw zD%^<&r+B!y_i8d5M3UOu+rbX9DY}K@j?T{aUcC}eOHXG{>|sm#m95LWw7pFXQi9O1 zFnVSk{9xtm7FLJr;Z5ItSlWqN4mkejk6oqQ?c2n=ySwgQUg65wLFR%HTHGNO6{6n@ z3x}ts@T*K?Q$!s&xVggxrv7EbZ#BsN+m>co!;bp}ItqU>M~Sx=;a7qHk5-z_egZFx zz3Z`6*{-RsR?Z!cv<|Uv2JMDkQ4#cI?aROD;@r~j-`L*_2;)}SK58z5i*0dNv6^`D z2qLz#MqFPn|NR?ve(uxmkwQbXGFMSG>8-Fs7Q8_D1v+8=HcIXOA^SFgfqY9yhhgD#d3I2;ak5v8-v+@)N_h1jvd zeSkaM*xCxY#}N$vB_>h=vI}HwWWa76t4zCXMK(@+H(p9tR?%zjBQDduA-dibFpdy= zpT(u#J2DlF#^@A_o+&^~8nVhr?|z2vKjANATIFYFX0k^AW=(E^p3EA5zPz>;jzIX= z*4DQ4^hBN2l$4N(q!5F%v)w}^Y3%lzTkq<;RQb0ly-l3e4jTL|q5&e-Jpivw{^3E^ z9Fyq0IK2Mug-3#Q8(?aO$jXUb@$e&LX)sR+R+ZvpQDSte-qHuOhRCEaqsH}QQW z{PX9}J9W-RR#2`0D}ISkEMcI}zkhJ>bFR+w{;xL$%6`_?92_@q-e6#ePEMvnXEPv& z!lYdJmlM4+Tq}U>!&k2c3J0XJEZ7kK$;ajXosygUb#Vgw5*oaBFNi8~j_$F8R#fll zv6R|Aadf((e2QScRU03k8&DAu;Fq}y+*%YE#OCHqZ{EB)Cw2xlUT034uHEI3K1#d~ z@@ilmk?gJdSD*>I5En-`SXfAfgoLzGC0rt}_ubo83c&%^r0anJZP4am?Xv^rYQw@X zU}L}-b8>RB^u7t(^-_H`;QJErv9m}T9$onTyYkbg?5+!q1b`@LR&4?UrM0cigYy92 z#NYR?Queua_G~;S3;Xi&^8WGh@2y!G8JX3!{#4%Ex9 zCk2553n>184gTK!`m?dUT`350{{{}RtgH;5hzO*nL4cmH^*hT!&3m)YHqb)v-oJlS zS}JUK8vZYbPl;P_z|^?k0Z;tYDQ%8CCy0oQ%Wf7i_X=IUqxfKTsO(OF;HgJqY!EB! zO=xI?@h56=Kj~^)L^ZBb?#8wbHmfmW4*@C}ZqU%*m-qw(N`O3gpO}c2af4Ni04KJ( zIbH}}Uye^#fXN>o9eH?Nn7kNN*emN5(!XMewO3DJ1VyIG>S|JxuPC>*oi2 zBN$yjJ(y?&&GA2KhPAif(@GJ+iHeHS{bm62wvGr*(Ua5R|w4IorNjt2}p_>>G{9XNjna`pwD zXwAIV)-a+w!op~JHcUAf6gWZGJ_v8Q4Fa)-vN9&5@;be@SF^URPU-M?6zz^d%u!Ln zl9rJ{JHpUVY;@~`z+UFW^DmIV)LSdEWK`sbxmDvF0;<>)0KR9ZY+Bz{>)}k91E?gn z8Yk?2ZgZ2Rvwn`!uT}i5vG_c5QWur@)NMPjzK`RPPcCId^e6Bx3+nW6`#*|U;8${C zD9EdRmCGhu6KQjKMA5!*$}@8=Gt+y%)I^6TBO{}i-rj9JJp`U>eIRH0 zmz#B$GUx88JkJ8*L|xs7={tY4$D^YAjV~O%WsPo@MjW7Yb>uPfDUCBqY=|HpYk4H8ooSX%`#n4n@Yj4c%P1FD53|GIIOn z=j-M*ZonX|BE=X03g!_g=fvYC8;>t()6@6 z_k)%Dz_VK*@>BN3#l?N{k@Td(W4?RiC)afVEI~u#<6-sn(ooA=dePG55!{d?0+bcXj2$7v1&!LGOi<12~ig zhqD5d2iVQ9s_6}bprqXelKKCvcKaqG0`K>WyTA#sC;hs?$QT30m{h<%1}qIZ?eNIN zgaA^%;)}JRKlpbaVjCu9J))-0uD;(Dvj>V5UrXG``^$#$kC}{4m>QM}h*fjz!)Zq_ zmReSordsSM^lw=3HjjE$#z&djcUkBj&bcqMV`yVG-2qx-Tl z7!5}fw{G0H!4|sD<>@+C8w^Ic65q!hI6PB<$Eh2je-LApko$PVvPZ;UAV6PVFj5iG z3Wna}Py&d3Zf-8iZ;c)T0BUB}73kKo>g#8oU;V33tlrYbJQ%tMA~0Zilc{Cr9c8E& z|NK|8vnN*32sAs@ysvMf1v(nJ_4eIfqk7W0J5C0Ziq-aKp|Waz6>Pqwm<4#*Wl34* zrX&o01kY!PxmcdhRPOH>s?_3to8mGCBj?T0jv?bT)g^_LoTIwx;f^Z+ft^68($P7* zy61Rx$^hn(r^RET!ct{xqU6zom34Re(7p(DfF(gS6 z?hkgO7|To0ZxMAE5TjW9hK38rCnsQy^BAEdtRSJx)$MKPo^OmET-DJa2M9(ilWn|S zAwV;bl3Y-matW=F#c!0*?c1TLsf=l9X&_y2Ht@4Bj#hnJF4i;sgtSR8#>KMXgji!> zmm^MI$V_qYLBmNOv$rd8*V4x8)-}}B)1ypwiMR|NXJkCH1d85zb>sDmhCbBa5;vYv z%SCO$FLrS=dtsGY%Cj+l+wP^KXbKW)jyINf_cD#lHs(dw zlRpsKkqw*8UH~Ui*V~yyxkV1ABTdSYd;ik{+=;Vq81yTNGDl9b|5tkR{pt3GJj}kY z*`7-4=3O-;?Yh_7BBs`R!N468SRP3|Z@%W)bQ@b)s9Q!f!vl;k`UuxL6rKuf%id^j zX;df@-%OnO8cfkK`TVW_9a}s+cK`m>ujIFg=7&!)y5dki+c73@!mRfWyek7*?ySOB z<_L>d5(qIN;E#XQp#uE_!LG%oPV++pzkU&YwwFV}?CiKE=3olIjP4)xr}|rdnvy8G zCZ(gXqUJF7`6xKR=l`L{*53>UL)~$(8Wp*fkdOevUpT;d0IEsFVXg+H=(3ouM;c; zla7dHFhk%}wffIn*E58I{I5A4U5>cQsf_3)J}O<BfY^AfX&~fMK4kzc+O7-*#QZJg(y+Eq201NQTIvfs_ptCB9NtfmvIUYV&a%P+WK!^tEd2_b zyxw-1j4b3Z>{p&%4Ub+#8ubq6jkZ1HR(hN`z`^b#i}o^?C)n4%iaPk88*qi&ewlob z{!5QDs(xC`j4mISzu&4Yv(4xV9aL_MWe|Hs)?(7SoY6qLV%k#!5wBcrMr3yWjEH>P zTqM(%Af#{&_1+4<;;gV!F~qV_WjMMG4@r9 z6IftpQln$Kr(`1^kQ9EEdiJZ&!BaPT*k$H6v=orTrKF77B2$UG3twq;l%E-C&h1(p zKJCJcfd_P=wht@XJ34S;Xa!pTiaLbbrls0{aS~&=ZBdE;-OOZo8Ae#sTT=0B@I6R3 z=x9VwSUIZo{lr8U#)LK>`1sT=4`V9)mpTDKwFRVS6j7mjiG(vrLYAH1j|!!rch}$3 z)1=M%SW67}5|WZ4PX27&kJ11IB@GRY<%$6e71gF)aUD`9u7HIHgafoOYH_c2X_idp z78KwCeq?-nyp3@G>_FhV;YTwL6L zD1f&sE7qJ`Bu(FjW@m}wRzVs(;YHgcX9=BhrQKnfLcryKTe`ynoX`81k3mUzioo-R+L=u)9xWXCJl~R8t#%^= zf+q<$#*hc2M$qil=F;gZEoV;DJ{9m`tHJ%KGWIl7myr6qgJ2e5UL#=&?G8N1xPFF^ zLBDI!o)G@P$V6IX9I&>nX9S^L4?{0>x*RK4J7?mo%OKdJq7E?~9v}WM_yqA?e?~Z@ zH12k%OQj0YFaYoN_wUVQd47sNc6qwpoXM2*A(!7@K&zHNK17c}y5nC$;+3QSDv5fW zm{MOJV~0Ynf)pDk*hl&_Ikm!MSfL>m*h^9^CcW83W@NMuq&qWa3T+CAv0DE_A4f6_ zv}~a%09&7m0xetmJBp<~XB&f_t(YKb7QjxSHn~l$ijN!QXe& zqW4|3nZ2!YE4<}z$g9IJE}^e%&z#sN#nhMp8d#$!@SeiPa3S4U%e;X5 z_5*1I%J}~N{vf6j=;-Lk>stbwT-B0n)l}}kRH;}p^D~RB_N$}oly%BFVV{02ZcM;A!JSH*10&g|kTh;;Mx(6AR1Ld4&^Wm&J({vqx7)>ihm(d>Gn3 z+xN(qwd&q|(%8P$xDcoH!BR02BNb)iaJeyG|A@kb3duzRY*B#ArMn8sC=&(qsznn)rum1iw6_O%6e|O6e|U3BP2w# zD@eg>+mcp$!7J2@$BwP7hn7*swB9EqfZU93?Ky?iGw7S=;ioc3tG*&ZSM!s?q#s?E z;~4Pz+w{7YyBOkmnIAy{1&?4(chsT%lTU|Ty6nOrHEREa`J=9!uN6o5qMQ|Tv4ebJ z=h@=$sshVZwQcQDxe;Q=4#p7+SIzwi$QO^L7L35Bj|r(e!v0u5OD(}zkufohdJ>%! z_PAFoSD(3ax4oXy$X00t0186YWdFDm5VReAR+ce4mUS<101ONVq@z?^2w+Wsjt<%W=}w!5T=Z%$4fe#{%hSrvkFDIh=sL|iI*dK6#u zZZ$TM#H?s?QXHS2uAo_spchlf2+B2#tgSG?k%*Bu(Kx{6Gdo-7Mu&6qwemK zn&PoSLO)n_)|m@Ru3#1Q+=rRX z(u(*X*KSm-WoF-th}6T2r6~=sNMv%;03#%&u3t z<-Q_DRLV5YgDW}dJzkRp>5iOLt-+J_3kkGY(Xbj_Hl=J>w#S@}^E}UoZ+5V4aK4K6rxi`T^2qjc!ZKH zx@&*dv{6M&#)%|>_K^yoI0VM`rDnIp$}=P)_j!bfqxYavlf<4BLihYGZ4mG;lwS#{ zmOGVf!G*Cdb70&a2DoA!3#VPte}&j?3n*bmnuXiS0ssN-4z-j*TZ_i1MrO1($-^(M zw&CgR%SDIb<;mOW8VkHFnkJXiOSh5>RysO- z$hc<1MUVQ*CQv4Tg^n(AZEfw&nL`=0I7=p_0W@QHgX1RBtr#4+Y0P1t`RyEcSb|zj z-n8R94umT?GucF6>!mz^L)W2y3k>}C0MjKdzCV^q)}u+qS+ynZRkr1zLN45c zbdiN^?-{)QHw6-DTtOMo6KTwp4@@)`a1$e=`o`(g*d25VbRia1q9W86 zSa53UIXfKf<&*dN^OLvK!ef~QD^*;wODAm2wU_jOs<5#!11S9S zngOWa$OPTkYBY-})p;H>k&YJxj>xY*;Yi5J&Ba0|_&`#EWkJTF6Y$eIwbBsH-2#jE zg`LT~6EI_Qam8iF280iU>$H^0vN%6a;^yYocofG@w0g0gxgK9evoj&edH1#B{QYc2 z`v-(9ylg!^xH2>OqFE?fSzX2VtZ|ho50{UA|NhPH#DdQX_g{Ko!S-dWI+R0-kBZ@~ zzy570KISR`NEfK&!C;K2`ZnwsetGKV<#QM#qDZB_z?`_sQ}1*WKqw|s_ID; zF*XLvLUKof=h>jF*Qz!W`N)QA60e+*1V1D>Y&+`6MR$ae#HO_W>edP(30@O9d!>kR za6q8k)0k`fg}AmU(?a=>b|so^OnwRX1poA-CYL6hc2K_mlK-0JtJ7rG7h7SPmJJ*8 z%O=Ln8FBpU%(APSFt;1t8)bYWbKAICE(WL#)bm&9gO09VA@T9?PqiccNqkVO53>2B zdWbZB2DfZFY$hZ-lgBvseNx0MMt~+%y?1D>_^#R0i_PVTKskX z(24X#|MAmrP?FjYdN;i(Sor^{~^_!XFP8$J>Q9ID@<|L)_EgM&R`)m+plsEPAu*gt7^E zft`z1owHY=R5D>~HPxJ&ilZ5?)&KINZ2BYCODRte^x%Ct7;c3KvWuO#ZoFK3Rv z^^8?*BU;UO0rgArxPA73Se(yFpi*hYS*(8m7q4MaLN%g0KWjh1p$-V>Bc!3&_&5<>n4kOhGA z4iidM2_V(w#}H!U@?}4?7J8RZKL7B_i0>mPDXLEIgoTAc#Bixx@%=FTE?CiX0i&jG zpJh>qBM4H)mq#HyAw`Cf+tRQLznI#&B8SL1?;Bv^Qz_ty0vE%GXmyS8e`hGzRJ`Xl z2+GDB1MHtWvYnoji)$H_X4JK{I~R0_?$HLKhi5LqVt#zr=sNPJ|u+kk(zNER^&BkT{#wU!B!uMxu< z&;tVG<<(UzzUr&<^Q^kM>Fz)ilN8?SxB(f>PePWYfCvU6O~u?{HZCq4u&XMTocAVP zSX|8zdN>0!my3}v zkL$dxCIgq+yff2;k67s%G4LUUuVi7z4KY%>uL&5}?ycZ?t{#-M@HNjXy%nHu<2ad` zeQeEp_vX~ZNUoZ-GA3Zb)p}eg@FY{PPj;?-E>3oQJg>IUj}m4227&$R<~p@!1u8Q? zGU@S6MKc!OOd!i?b7zYt*coyZ4>Ol$4BL z>b83`7$%8v#5~3EVIbP!3nM=xT88S!PpPB??r)?Dh-Ur+^gdrly}-gPg&}sH0^G+6 zqy$i{_hUk_e&6#ebzP4ldXbd3gZ8IqXKGGPg^w5?R%9p`5?`(Df6!5Cn0S|Mr|r)= zND{QVc#U<$x6WYaHJE${%e06F)Le(QPW+#Es%1}ZfqzQ)N-&rL(C7l%x!4juP@}=G zu^KmcfoCFqw%9pWvY!TAIG|_1G15Omfx!lJuJ_VpyyM&~FWi?)TbcTMf&5nmY+*F< z!z82*mhN=WLNB62vSOyC^>$ePvayt0qNhIhG&eW*^+9ah0Vq-2vFRj+!nbwr?3mqb zPLYGC11bSM>F*H@UH3>@WF4GNFFuE)@-psf*vq=6DVaKU1B4NTpgQ=%0>n zy@0#UO9Q1Ls1IU+f{1aAD>EsJZ1);`|ADmoR?~}{P@5kov#9joB5ZLeP9BfgGqXD2 zu#W7JscCd;Yb${$YHMpN0X@A@mEIkc1JyM&zYOr_2f)0{HrLuYv4Xg;PdtJ8cLn%@N^kf@@#UY zH+p^lwTO`SU6UE~DhPL(Z-M3@# zQslKyyEjnskf)9u@`LCX1|A%rZK(la3S1{oPbphBtE48yZIxEo$sAMaelmtm#Uk)g zobB{MN}=nv6uDad(Rq?kal2uHpW%FLt|e1jW3N&|vVHO}nHjpk4$Kx5-Wr>lVl{`2 zVfi)@pECXe-3_SJnLl{~%Bw9NX-d5CKP9F`xKLkV+ArqJBeEALtg~h3?YgHGOV1`6 zgmdFg?*K+eOkDgY;6OpC8K_VoVxqwT04!6nLdb=fLRP0@ZJgIFKKoe$@?MOT6cnvQY@+skiVyGl+=+`On-DQy`*indVL^dIyIM9r52utA zowzu9KN|2PFE6j{QrK{|?Lu*IT(8WZ!(MUpEF|g!MnC})Q@Q(R2;QU9e!OluH{LSq z_&Tz=j3anu<=DpcAs`@Fw`H-IpvKG-d6e9rX@|@|>+t=6mf@pJ3V{9_8)ZQ`hR&|# zBmU{E2o?*(x(-B1V;@+R-N&BGBb9^a^eW8;>E_Qt-AsaEadY$ehmRkF?PnV5>ltAPpwgF|&m-zN~IHa#};( z>kFc>K=Hi5Jx<>z!e@`GM=r)4!5Sw~r8h3CCngWfQ5EHz?|}9-S1o>Jy!V%njW)JL zQRCZJTNCWJZV{N6gc&<1!QKz260ht?PazJwbleTbs*=u;K)e0bP4f35n5DPBb~<^3 zil%>$GI3dCiuutC`ya&XsmaslpU46K)x(=?FClXWQ1!W=YJpxaF*O{w?Mixi?h%;Q za?ig2RF`t|idX@%|2p|H%04rC12EGJvA7Je;Wc|Zn=ZC+AUpv_Zw9K<#{uxe>EpXk zejv9~C>9qzq?t!CSz;LhY>pk<)zy`)-NP+c8BC!#AwPJ+8$O6O!|N5gHwAdBn$90h z3aANjfR-r2)&yO1&(>`j9i?RI0t7dD{zQw_YgWGY)YHFv3Lk}Huv)%P4IO1C2P#p? z(^gYbR++kRmZvEk2m+4V1KHl7ngaVYg9h}umYks+IQ^A0(ad08R^x^eD3N9c1fKPSWnP!-$R6S3zhR8Du2Fa-R+U{)rdb|7)EgV@Uoh|h>352h@DLv>tb zPcuT#*s$0a6Kfb?^Zhy6-Pv;*RS*`z+SrNC^Av569*)p(Z z9FdlB=f$5erGhSe7{+S%g^mq+)-xX|k?0b{CMHI8a&jUOKr(b*ke8R8Kc~wB&qt7t zjEtO528*BmtsPQ;R96`(DBhHpi&&UT29N-K+tKv-ty{N%gz7#Jm?*2LD0Q3x*$oIx z3>LHo{&+#e?l1kcw1`=JH`sG+o)IwdwGvrkDc@M=>cX?LvqSs*LlP)-o!dX%tWA9q zHd{_FzGGT(1kZm$WL422XDW)qm@Aiz{HCaS7UOZvTI`nX0!gH!R01(>xMReQ3g+Bd z!o1`t;Q*G4m(&!LuGeAQP>G*Q>?k^kD!#IiuvLt4T$~|xysXjxuDBV!PRymwQIg{^ z)A6VTh5oqEA)gn(M`P53PYVp5j;*Ut9bO9Ae%XS%)Lnz5rFjeG7(f(Ic5;$g4gxBe z1jokBjf*s+VFwRjT7_}V0L9<=p!=AzR^-iL)@S^dVv)_zrn~KXEy1DDp6&&ps)i5J zNIVqn>bHAOR0C$CMCti*H|$bV*St16QOvA{~|23jN937QX!2H}EHv*bop+fhK{ z8KWbx*64a}8se-hls5#umQ86h(nr%|HyZb@BfIFG#@-bd)=vv!V})BHLPYW<;Rad ziqFTUYn zhUV}H2BHyuU;yJgoWthDD+I!CaW8<>gzaaETU%!=;{_-Re3(hbKT-gLM?)jLquUaA zQe*N)(`V;Ro`CTa8ki-FRSf}Q;`bT@t#5aKf0Z^qT*r}L;p!f zu|`F0(M7Z)Da%>8LSA3t;UsrD;8n0N0(vHB8V*wsY8^fJBJs6b+o_R^rxj!>j7{KEb*Su>AryNFDW$>FArM&QhoO9mSy;m-Ve=nn&|ly&crr4nr*6>tWrk< z@o!mIbGoTMw`0OgLrVRLta$gVO-(z^8KhfD7gU5_}=MM3Bu}ia3B(JHkT|33Xn|L({fR#K3+HSKufv6ta$XasH3%h72vgia(Wdh zeO8id5wrey;7{DZUDXwb4iG-5qmWTTh=O|MyEj`m=0G8hLP0?RQhf9Xo&KIvD1g#> zyZRrmuPx1+2)c9^X7oMu?PKsW%NOptOW>MU;=ex_oojp$wu@r zR=miBsHV#iL3-bQi!yn7dfuS;7&mtmLC*Bim9rWD*O@VRYVD z#t^_##1S!NO|}mS@Vj_w?>RK&-T$}R$GNA?mj&yyELKVKq~f>wXUL!i$4 z;X+3=?VFE_>6=j3MPRLvR_z5D@uxSrmen@a*86is#8Q`eh`c0=a%o(fGM%l`h|o~0 z&bMN}Gkj>j@n?wgsn|wcFNn8U^A~qVZ(HY^v7dra~vk6z0>kH21$(`>Yiq7qjem(~?miwt~r5l&1l`1%Td@T+v zMrUNOAnYgN55P-wvZDG}OhNtY3U=tIGX3`RDN4fcTCyD`8dNr!$r8I-liVKB9gn}{M^WhU1#{epm?4^yvz^uCOgZSt+ zQ|wnIkaWW`&!eoBQkrG5B9&!-fXgXg>J_bw-fq14^+ET? z5){iknx_pzhCn&|yS&G9R3iUm>*4I%j`020G@E^bKc1VSGUV~zT2dOkRM__+2O3#1 zUbM=(6aV)4Eaon#O4}k47w2mWZryL-0!xdqIlJ)s)@$1!H&lPq;=7BZb(P#J`nK3Vw&DHB7UE?#5`fF>G+KSMF(ldFqt}#a=QTEE>QtJy>P}Of}qFE{| zE>;Z)xEA=?L-J~8Wtu8b`0=9Y@jzuUH-tFKL;>9OhRBLMdi=Tg=hW0P-;?JdRw)>Q zRN38rx8sNI5CX_9GUplq330Y=KMlOm+@%Px=E0vN%R@VAP$GKktanfZ)Ih(Igjmb* zErA^>eL!0K$LwPW_qwmu4;+dshDknkjsmp|M3jG^pQ$N>P-}D;h--R){MEv#1sO!h zSFZCHf_*`_EiqOvWgYvT<+EK=G<$COVnTmQ>{9!KsG>`i8A04rX>WP+2J@bpT52q; zZ$dC8w0c?CG>8)S=?%}-oqA|}M;i4E9%fQQ(CXaW1gQ4)%ytNKyW>#s&Ar_UC9??q9SY<9{KI z*A)iVlc|+4tZclgboE*XQ3CpVY8z#`f>dA>!N`TOHp}?lb0nh}Z-iY(zqskA{K%{J z3|0nqDe4rnwWD9FsoO$7{jmOaq^FjyFG!*ZiI?P$e@ApltsXggP6VLyH5k^V=Pg19 zsU`}zRu?ChysgE*Ui-BZZzQY;b)HyCp-|MuVXS?z>m?`@;ScL06ir({tRD7b5*0#E z>4bEu$zTUXTiIevpI!f-MdF0T^i{8SdkoAUKI{amoJ)EOP%MGzQZ^+bVsWiBM1?ca z2ba=mrK}*1-LM}`brqe&6~^Cd4HQveiSQ)Gwb9!LSk8oVYP1@k z`gvw+QS<)i8A*o*EN0bNpjyVD6FEiC#ChvQY4zoYclPKK`btJ3{25vVfNr7xiM$NIJJfwf4=^w#UWA0`#2 z6`4)d<(*f+Sw{mF3woy`G36`)AK!bfhdknI2tXEq`6iL!;kYH6g}S#`% z;){AEa82MVcm6xot>&;dIjHf=f~gWJzqfMu~s+xMe;8<8520}~JlZPl- zrRp3Frf_v3_XaE;Gb?k-LRy{`LlyWX)dl6Pe-T7K&7HpxVt%75eBbA=IBgSiQ7bN@I5lY z47noHZE|3PfWS7%kXUdtXI^690WoN5$TkTz`|=qwVtfmZzR17Cb>LlB=7G&h!<`eR{Y`rebyPNclRyb;Ebp7l0I|@4Als zr^S-xc7-5E#LbQ$`JY!_W04PWO&kvMA-K9mlH7F25T!#?`xw9IkSA`)N?P^i21|n| z;m4Q`{`G5aVPZwLz4Yh|}JaTo#enU{$<%T^o+3of8^cv!vYgeo3 z>2oyJx|oA3J=V>Ie}!`ecbU$iM*@@FTjeY}Ddgnj}~S z3INhMi{CPvha1PN%@_?%G5#!5bpPOdn>sRm@(Ch507*&vPUd-iEzM&I(~*&vw_idr zTPzL9LRFCa+6qUeQAL~mSpq03i~$&R6=o)Wfix<7bgdF~)v3tb9~|O82Cil0_|>4_TJk?FW3%kV(%2$BEB!$jRIeT!U{7QNCx>qtbe`l~>YpS|IT5tp*NC@3N4#Is)m{K~W0xAVa{SKwiX|53 zTGz#|R+E8)9qsPxPVa|T&Yqvf6MHb#3b25c zuz zhP64ysCXZIFXxcXkbQY|ljqkHzgm+#%Mrl7t8PE?`8mLHK3ml{#Czn`_IjuZ9Cv&( z*BU%jQrmuHZL`afVKpzH<~DAWXcT-rsQ>x_gyEXLU!~a{o`9af69F-s5pSfl2VQL7 ze+;{DHBC}fkZ67AKC*$h#T#3o(Q{buFP85lY)~o`b*4M#UeJBS)m!!O@hI^2e%nRqAUqC(oV87*gVQa%U z*LWe6^Tm>b>&@~W*W6EF z*|+S1WomdsrN2Xr7^ZSGriqWDj6IpE@B4~$-|M`itIo3jh^+Ow0A6D|*R>~LHG=+n z1$lVxvE*BOdy%=E$Jg4-t5pI7wwvoy&+%-kWe^6yo*)_N!}*xPADc&|(fP-fB#{amC4fu_f11F1f2$IU*j;H@5}1#u1kb>6M{e5UWRYMgD$b14VCT zGGNa(7W9to57@pzm;oPyqYm8S=4!q7M9T(=ST=NS)w-G&Jm|!@C7NH~4}JFV=CP6P ztM-dW4T${4q!FG}upX0QDkR`4#Q#kKJ;bvSl5)wgiG5Ah^yk8+A}e+Z>1od*n=NWx z#)P+ah6V7w)E9x&DnJ_58|thT_FB2e`9AXq^E!U>bEVfM+Pz=@&=C+h*J>LRz%+z2 z`(94;hO9#%`XcdWJQ>80pcY!!BQu^O-^QJ!WJDvuKHZFUs*%oNWCsyFO98vd@M{`d z|LU!}H1^e=lej)N=(2N59huC_3W?#$VkEc|l}6T1OQs7m1>CwF!<%)_@5B>0byaFE zwmD{c(nhAzrz7TGFnnv`fmXrNW_s-sbJf}Vsa4R@IJ)Ft2i2E@1|Qz+(+FZy;3ND> z{~~s(K+Whdb$tHL1HH{7(=PG}Gc}H~){bex3Qp-_CSS8VZS-|-2VBXT7(iaNJ1cTV zj(g~fD*LF5JlL#clZ%^bn(m+Km;Zk6Q+1?G1^KBuUJ&)Xm5J{W(Y4aMW1rPk_MrYl z0XwbmWZy&@Tw|5%E@|!QpH?7VOrWeBFy6I+-8UU%@`~C1;zLKvAbGd&7+IIa_|%H`ulWsH?2E zNoyhdC>fE!4tB-@O0$F_RS8@J!VP&kV*`nU@~};#DXevfb&6Ct@`|(?8@Bn4S(9w} zV{4u0;6AGZsX9Gn(5D`w zBcz9*UNNga7_m9~HalA@7lPxAn56^?e8tZ|*+`l^RE;ezKN80fA~KZLLOUbIPGgZe z3B%XutP@Z)qxwRPn3PKV_)B#{;2B-DE1!=@l3j()0a6)2U)AC zw083s8J73uYW71?}vd<6|H%I-Q!5#6Alx8@m)@CZ^iNV%`ThVAqDNNp?Sq z(&4b3ckMJ+f1)G^imqY_81gwq4zROjV210SUDgb;3Fxxh=zsCz zMkd|fFHV!5%9TOUeGX0FOfu^Tt%j{*1frIOpLOXC!di0K3#x`x%%Bl(^oxA=X5CSDKglN${lf4Wq3oGm5>(~hr|Z`} zVwI{D6geW7Ezt<045DjyZ_lM_T(g60J+O(Z?DYofacAqcxI(r^vl5>A%i*t>iswQF zfRdTvUFtKTsqCxwJ{>c7&taN>K1W=rgB&7Y+>BP$xrXd$hIfz^Xj8%VPDjp!_W$ip z*vT+O>Y)UU4O-{U8ZzVU_iXgRH-w=O@a*I;%Yz-t2gJjvSQ)_-1JNIMZNPx~3I@*S zO7qvR;-0{gt5-_ft$)7RI~jk0f{b-cJiNH)C88;7=txL;?$8#^&hP2&56_Pf_P;8; z{7AX|5{2%{EsKJN0u@N_gQG`3`Vkm#Nk;Nau#_vNdA@|4j*olD+9mNFBmp3F1vO*2Cm&n!LaSVMoVeDqHbT@ncQqC#Z^v0q5Bm0qH)^rH}@KX zmIFUIgZ8Xt-R6hw11~1m5%hTeIIQk#HjW{NV$EcYP3M?{CqI6O`*C@oopibXp0189 z%WYy{LFAG7?FS^>@$+^ez{h^dn7@C$ND;I7W=`*c+Uc z-HUR3U)Un;T?cJMv4O!5^)5>sY2!Z~NyVT^nU5Lvt1hQB|9&?6HHE2bb?cTmf=!5_RF1Br>jyT7e2?M@furO&A@AXpX2szLVhM-=H?r} zCnSWHpRPpznIvicZUhGGV|O0h+6vi69{DpV(%!5gkfEcy7Y5=4$Y%A~va*4R$L}}5 zEOz%Iy=uidms3XN=ilo^Y4Q&AFSl4e1I~l5_?D~V$#J%bOBC-!nff7kT-V6oDX7_H zg&NkIEoDo3k45Oo6#8@LwR@_iA-75PZ!vH`3de`b2o0qp9W&?*;=+k5RG6gWwm^zG zy>6|C-1^x>q`fU2}!Wy?P-y(YPZibqQAlK3-IFJ94&}Ie*v~ukHz6Vl`p?d^~ z3x}rrKRFj~!sZtd@6Z9Im{>R=A13+{&cBIg+KGZeXxyWsO_@ab>(c_-Nm#C|pV}Jo zHT5?MMEbEf=t;V?&4|5MdgMm#u1z0dd3DVUEeRkDflBp@mlv7VYRpU64$i|TB^XcM zr<5e28yFrRB_^88WgUkE!3^%@e%{F7sMxRcjZXX z3msO^xBJa*;BT0d4)RAoZEi-gY(@Q?lp@-rZScq78x!WldUFNJ|DOUwPAx6L*it2yocyVm_0%{R0fO_hGimg>*a~UEf?7fR>Vw zI4~wOw&Zo!K_^;fHk)OB<30XZxw*Rv%Sy0sQAbmg^XuYw+WY6!FHsmM^Rk`QcT@+- zUH5&vcnr_Qfd+*~B6qGhD43R>>~4*lTz(V@np=m*lCx;3c_#Ff=d;T`9^83c*R029 zWeSdMd6kru@Pl8!sp54g(yXc$tXbuO=GZjw0*%|7>M%3o*dz{f^8N;3PDDY$DSblwVP?n=(-W!`0!D^ zCdBn$%P>cF`A9$PC)?WE)*^jB^Ufh(vB&Nq(Xx1eH5r?m&nEgh+uG6qL+OWZH;`Yc z3J@te&!b%jYMz4Igg`1PDn1jJs~+Meb!h8n%wW=JCFqGuX)1o)=1_&ELsoJlzMpVa zaPpjCo6o)W*H0OkSkl2Vp^(+8*sh@d$zmE%39h77f*EoBdKhS!n7CD1;>qqRfmHs& z;&FRwuk2gji?nBAjGu5JP?%HTFp1z(dS8hMn%mgg9TJHTwTw-DIf|$JcUOGR>*wZD0e!@ z8y=#9ewqp|B;lp@^P_;fHUM5^_Q{6)Z6TT=@KB4yN3){#3)5k=jyyG?!#G>D zc>$lXTtjraE0&}aFER$oo`6v3Yy4v*PlE4En2Tj3B?RNAEk_u}XTq#AW|)52HQSYS zRh!U5D4)*|njOZW$n@l3 z2gR6SC>FWHHHtRxPV8LoPJhvQEm}*d?jIxF>AgwVtdDwLfHQi_2fuUy{;cs%U2#3e zdiiVf?N5EHiDbAc=nrnUy~>6)`5eC!w@l7D?)3$2`{>alqeoy-xYdfo2dOX!t!J3{ zJRzVKy6%wNU;qusWH^-nB7Mw|+=C=1;rijAApT`#@lgn)hIs>62EU-7x)-MV(9L6z0?RKqyqp@tIos?p zDGC#=1Ky6&N6%agGycK|Zjb?oJEvW-2Bw^ZVA21Aj-Fi7f1+E9QMn<0;S4IFeR%cE z$4?iE%um@CFrGScz(Mx7tV7X6@Oy?&(JvTNuWcrVnvMh{QdbVVIhrP~cxbD<3@pj* ziuby-^i-F<1}vZi*7>A^xG9VP?x0W5d5uC`F^gLKYzwO#sw*6q6<|gqCDa9C}LJ zpT)4nYvp^|^G)w2lVPM(hJ=|w^2>*3xX>qn# z*Vl+3!krwL|Cr~%UoAj$Qgp37Y%mOioIa$C220Vn24D^kv#s|}D;L87FC-rEo9PRU zKtkDJ(<~?w5PbEq`3_8*9%k@-m7y1=jzb3$uraVLEz96Jn&Od2ffY*KO|qzcrXBBF z<1sw&KxJT006?OD_#o$mMhGf1qgx6O1!IkU>`d%QJ# zro8`45wi7IB|-eZ4LJB{a7w`cm=OQIuW~wAmVo~TC75#NHvG0czF8t_Y@82e{w!h_yo6hxi2)C;&R-g1RTmmyA&3;v zqR+yiiH*S??JTVe%*MC-egLS#=R*0J3kuUZ`*tUU^Wc0L_~zuwxUIe(z8jMpgD52O zWFAMcXNf|}onw*|>~m}RMFwziEO~;n+2vuh*{S+Q5SRaPMA1iE;2#~2Llj>9%EX(-Vcy~L&x2%M%J!kOGB0$ zQF<)Jp8Beq>(TF(MBfnkJ4l9-iftsafA?E2%YlQPBR%e=0|%xq1a32pi&Ub~BgBi7 zSSafNyrT(ir6aSOn2^bq(HaZXx;R@}p34BC<)M&KH$^(gdk9Hc3^>weKin{*70pMXR zOZQxm9~BGKTBV&NCI-CiBK1;mdK@yZ>BtM$u6`<*ZV2jfB$plG*7`pVA6u>0Ca5#*^E)a@rdDcjgA0&8*+=k4|P}E^Z7oK_1Mk8a2KrH3?KAb3&CVba#lNzwli9!zQJ+ z@uHQ;lR{Uh(5D(Wt_tdLNIJ-|`{TYmRp4Qn+B*Wk&oaZWJaRu1#BbA}(JX1z++S;> zlxIAHBWb?i!B(wQN8QU!Lep9Re7HmpuraWGzjqEG2>8Xr|AI`(1KLRXal#RyQfGjOl^s=R)VF2>{l0$)bpN9k`)!r>==r8CX#ML=Ciwa6fOsw&SPg_CnyWiF8vNG1?02K`0V2~)?1t={O{;bZZQWjN z6Dw4w{SbxgtgS*CU1yah2B@v!YeD^yqG9u>H~9Qw1F>s-3l)ZCgCTs?Sq_3JK`}jC z37>B1F+%wFmP;(*`2|(T%P65=e4&JS zB2YxnF3n->n!CDXZ5nw|m%bl8-?l&~C@2VkGgQydZ6tq56202&+B#Odq`jQb0{3Nq zOgccrLjZEzQ#QO7Hoen10A-k?Qu@1nR61w?avS$*)%&G;wW^%ytu{}7&ovmlC=hxB z!t$xJ?*6Y-3=K|izdJUAKB!NTU0t{68x2dJiqp=eNEAx4DQAw(m^g=y?ewik`c6~27$*{_xu7RB&ANhtot!!a8Q@9ss1S4a37KKw5NB4W(4D`R`6}HymgOaA}dEhi{9Y z3ajPm{wA&LZ)DO-2sC&J}ZR+SFvuvtVsGu&TQr98W|k>1`FBy+8w`m70dOO9Atv=SHJRD~yO(t7oI+oiycm(M#(CSyda0tKF+-N&h0 z!sYaZ6g_RC=s09`(@eIuup-YIoT$X|SP+{I&P41ySCpV*@QF!=m_h@&0*+}2M3Hzl zMqzsYaz%a%c$VV5b1KAv4F%SlvB%h$_3BMhvAfiXFhN~Q}COELWyWRqo8E6Q6Q zUqZO36;gGW>DYD8qF+_}+YritmHSKCJSJT&m&n)!pLvXl=t>JVvgQ(1XP%1&y6pnR zz_tAW|HZ;?11Md~L+YN-qzxb=)O3^&uU8uXTxfdxP~r1dl9%}}!KaD7qs1@V?*UNU zLH7>WF*b~t9{c&3C+mW$fq#y*o!i!(?1afgUjWt?0m$~1zP~k~2V>%+0ka`Y_)Hzw zba1Ss{m6^;OKmDIZKb!@M-mzUC3PD(W*Tvk-NN}Q@N9?GwYX?srR2DmhSV^|%<&)A zgZ*yIMDS$YAR$yp^*ik+7f|0;r9LYoXX^?Xyk1SWEsbdc=xrST4pc8?XrAYePVc-Jj+ufQ*^%}VN<*Db*no7w5#adOa2 z%*P4tO-m`Om@Hj?-ed!*%?p`qjncN2V=n~hUVVHxD<-TcD$jON`DGlt7 z?WCbG2kM#tlC?u>uWfn7){>D%^n5WA{rIV^dGTr*Cjdb!DD+7XjO=C76|Pgxnu<#4 zUVqSXe?sqi?mGhk$ZDUYVa%e8ke3NeG1UO@CF$Z+jSU)I1&n=|=QL`lAzr*%AVKs5 zxsk5Lo@*`d(wp_Zgv0pi=ja!r^_`qADE(8d+LqW{cTZP05kTJf=LgW{oz0n0MM^AM zj-yTV5?HVErICu-))&w{1pq^D*Vn1rkmRDp1-a+l9r`?&k%Tc#<u(1A$dB;9^`M5 zjF88VA6sJ9-uXPetK{?Z&??ft>Vo;eQsBB^I%S3dC3W4jjlKd`51XHdFHJ4ax7wcS zDErnk8L7qj?j*%`9Fy+|smN&d9lA7VRXY0W9k$JWDaw>Aewg>k7X_p^uYI?$l&f1F$^a~8~Xb(rDqokSv5-`)9)>QI*wDGh41xd@VgPJV*rvmh|mZIBl7wjA&R!M)$|?tK}N`p2cm^Z9N> zIk?{YE{UFb`SD|nT-Yxr9y!r-U*!)WVdf!>sny7flpt) ztR%v>c-%NQ|Mv%?5(w#Rp}WSZ zQx?1u6Jv9}xd+KdG~$e}?;GJ7Y(@Bjba=jJTfms6cK}3pEUDBU9Zi}Q6rN)_C^W1< zdRCO8KJm!N$8!`0(Z3UTxq5we-p$8^iv2dM0LEcR`0x9%XzNws_*fxi^TFKl^**&E z;+m%?r&W6VcU87J_|LrKE8m=_=HsFHD&e`*5EGbJDJt?CtVUULt0xE+jNLEos8rvP zW)`4{W4ARXEBp!Fc4mwVv|GjP-YTG;;OTp+ErnCJAfr3t<%14_;~-VF>_w=a-UM;ZGc7#M8oQhK-#wZ+NL+mI%%9}9|GtHW(S zdGrDilS>-x8#B$L%FidWH_|`$sor1o$-4F&n*ZFLZ>*uq@N2~SK+k3Bn5xXgs{}ZH zdZOnE+H&wM{~sD$y%f%qj!kPqo|d6#H^F~yjx+mF=GIWcKPfOHddrn2zyA3uTQlmz z5|e;_bNRqQ2Wca4sekw;0E39WMuK|(&Tl_#2aH9>4|oshvim!S53b)IC>(!-eYG!1 z)(i?J8eu|_(?%v_GAw$iBfQ=j4cnM!G60Clud(uxkfDw|{p#)y{?~La9*u0Zb=}Y? zxg1MIfM8xFM{#Z=rEI^*kuE77%e@n*?U|swc+XPXn;K29SaJoibQTuo$6pE8-pTzD zyZ`>3uc3elyGVtdrE|teSbw^J3p|ftFtd2bh0#_0BJcV9(}icDLMLc*W*Vt$0I11& zB2IK`3?OdqMfFJXi;mkzGRlaGO2|DqJ^L7_G?<7|rFTFc{}E`@*7xXGXnJ73nq=Xk z4L!#nGblzWvRE>Ef<04PW2SWBi&VP~*-h{Vx+rWh#VsYbm~ORDHq1l#x#g+*b`C8+ zbhQ1|vd3B5%32Zb=oe&y%D%e;8AOIV(a8R-h-t$K7$HKL5)0ozc91n^ss0?Ry9iN` zmItb5t$N&$EPtd6$>YeGUM9c_0W*|&&oZ+Fv)W&N1f{hH>0^0pVr7alFKmm)0FoHU z5*~(c&_O^x2c#Une%Hi-{3ImN7gO32&+X%?WO||GR>fk?`1*AS?w#n1E+}a6I#CN{ zKEBK^6}*rb`__F5%qKpgy>TBtWLNukWtB9;n!lxqrgugwI2OK%fnIDyY&yGc-1<%N zg~cFOnZ^WmBx^EY#sumu!d0p$^2|26u15;U{s8|KOhc8HCrp%?*}hFOyl*Mf^=|w) z^u8C+@*iW*N^1Ig{r55a;ndh9wDb`_wKh_V~=yjkBwu zgN}S}4*`xkUB5cf#^A-)N=Oj$X;WIgH477N1>4U;@S&=JSmcj07eqd6h6j)UeTm*j zMu^|dszm?cw{HDX39INxS3D^NNOzhOo?bY+VP0pQVRFwvm6jz26=o5u78@y)fVNLSV87qG?uv9dogD$Ucea}_!j0t%je6iSZ zAnU5W1L=16arw?h3S`n&df1WdVgeAUxvGy7vdq8j5y$VpW2x0x>v{BHTbsss{ecPp zd5;sNzU_||o`lt)NA^_n%?DBb5B{j{*njaysRwuYm>vFzqdm>67U;8pYUvCRS|0yB z)lg+AOkRFab^Y??Lpzx(q&ALEtblfQX2YpC#jJ6wh8E+{DUAZVSE-NPOT^%7%w{E` z!C;~R+YS%6HbV#-tC|u(QWL`^!@SZAz(}^G0cKJNUg< zzvuQqK%O=jpA=F$#0T(?6GOgTT-X$sLr+o6*M-1E|7E-chqQ74HVj;=D=>WUE@PX? zg3fS9d|M2_zjLqjf$s7p(5dKrk9@qu2g2N^z8t3iAqpiqJgx=o&&*=mP#Pi($ zb48($bYa_n4*c^%V80RloBxILGyY!EzdrcC4^(ZDyZu4JD=ioKW8{qBJvp0*`vdhS z7;({PWcBz_$z^Q#-On_QBNmuV z6=>rrIxbXMi2A`v7?SGQc;?pN1m`ywEQk;OunB^UJ19TZv*g0yNeQpO%eP)nZ`_)A z5tSo+qHVdqL8S25+|Y1Z<@oCW4w`sbx2oO-223Sl5gK}dLKimXEMGBua&7C$^^j>V z#}vZ=k^VK7JdB1Yc_v=!9Q+2k)0a6cj3ss zz-{e#RdQzFEJf9KORai{u9%jD(V)UDpqQihqqJ!XV_>U>LVw|PfBE`&=+c7L9Y?Lx zmN%U0-t0eaMenYW+s=_~YULrZEcJ18ELGOw5vSF-mck3b6l<(UhbY~bUkuV%lS0V9 z9@Fir<*?3{fZl8}sLPrARP0?J(N@NQ9jTzn+9quUbkBLCrVia)p$URmora zXYipk;GETq#K7J>0--(7GsqwNFTh&PI2VB3ei(+t530APjSnAT7(v{-|J&oPo+uaZ zUGD*h2M>;&<^Qskx)}WyjB~P$CNvTrF zcY9ND8+)hPgdTmIQrR;Pa|DwI3CSohWGd|kHw~pJooLO2rV$=bHRh>rRRMy3au>uy zeEXxtey%F|Us`O})&JFEM{LFZqs8Wkx)3ou_?|8ptwE0%uj^euEcxA!zWxDBD4cq7 zKo0_W|GSU+J2$>~nNMu`-4J&&r@J(X09t#3cM@fiXEa$NuT zg$s~I|B0iaQ<&bDDS>I06va1$UzZE~wz;0I!@!c2&kH0>@WW5#=v2eh!!$X8dUA{( zhiAG)q&x%0rQ_U=42qP4e!ufvOss99$9dE0AyPQdUBI+Y(a?)T9=S}%FWUC;s0~Cj9WVH3kmhUD$s{#r!su;`=ff}x`^^lkMf+Mx8x`;S@_x4 z!3go34Gau_He>0{_DaljYNn@|iX!nlD_S`<25E~z`zb~o(i;uv!ZJ=ItXJ77k4`K5 zI9=^~eWU+ojzVn{@gzx*N2yLPc^3=Olxbnb5PuU6~1*h(Az?rhE4<1&rH-1y@_cM(Y z`uj2~N7sl1A^+2JM%3yw#coU6DKJHv=N#_^SM>7)YbmBLgPMe|9naBRWadULDx>Wd z-Iko}h4Ux1YJ5YkA+3Mvcy^FH0PzqIDDD#9y664xFs^2U#^yr3qAcOM>qyg0`kzWm zXuoYFm6BWJwlP-u9P2rWyPmaO^|?|$-7h^#bBJQNnX<8jAn%13v19r-yDYtn{{sJ) zgpgAr1(hIXMI9DlC_HkPy~&FxaonmWrK=BFME}98$x0(mS&aEEuCb%(cVANA_cLZL z7z<5H)Hm6(?~0_qT7YD1-$>z>zw59Yzu*C=skfQh9`@*6JiLt((4(@i0X_Zo;k!ub zU|-0uuDNHAzw$uT@G~2zw8Yq_$(uDy{GVxPM@YCBAU~ERq24|hKxQ@ym=*e~rbkjv zpY8=$Lr}VRDN%3Ud~BE$dI;j{^H_N0lh3mFm42V)EUq)+f_t^B&tCZ*C+MA_Mw6j~ zGL`KJ3Rx87Yn>F7QxZTh{t~ry`75QG!nA(d)EYxn%L4+)%xN=4+-1nqx+-GXcF?hlhAI#N-1eG3)s<|)9ZhQd2nE5Le zE%&+ktAnW<_py|;H8(Phz-IMY*(A4`FAq0hc8c@`jQ!f{$Rkn|)=J7b%7~_LcJd?K zZN2#T%&8?ap!WYmw=nsdAtRPy`)Dx2B^jy^Wpq=}Lzg!-)upu5>&s}JE;J_gymay2 zBEpNQAQ40#In{o|w}SpeN^6oOfUo;r>mJ&LzG0pM7nw%7L7{Z2^!-}IQ#jJ2xfz_K zuB)4IAz0z1a$(C%RxxE9yx0ehN^k_YI?H#M5vfAm!cpSU>0|0mz^kOMZ?^g6{{z>1 z#{sy0;r|WS)700STx8-dN)AG0sXt&33AF3iQc}XBxlRsG{zyIa^j}1%i!o% zNEqNXBA`)gcG^m84C(qcG44)3i40F+zN=wyX-{@VceiIa?+?@h^)(?13OqEgu&gXS z4o%{30bU#|1%X;3;LOH5^i{f;E>>rRk<^2lyQbrM;$*m|phGm69}QrBv|Ub&rMbM4ful4#wpu8@LnGY=Kt^Fc-lwEmK1#AK(XW-iW*MICrK!sbaKMzeYxvpg-`F*@g02!bJC% z(U;5T{bq!OEHM0cJ!zf(i*gis19>Fi7IwgbdVf^cq*lkJgErX;zyHk~Qcp+YWem;M z6%TI-WcHz`L*y{){4Pb?B`hFhCY(~Srb`%(NxcP3MuwTwCr~Woh5kKv(6*0rr)&y8 z6RoknrCYm}$6)D|u3sB%U@Ag`%;!t#R8D+Usuuk`b`5SjfptQ4Oz(k`oJWQ?oI2#1cRQndviQ?x|?ZjeJG zq*maMeFSK=4QA(Du%~QVug=Eyq4zAZ=R1+oJ*qosHbbLLwt*W>w6R8TUNE=1T~m$ z(L=9>BT5-OaAtcYE8+J+NYjvnFgCkQeSo_LIz58=`BNVXt>|UZb`ixWc{eLgF>Db- zg)cia{o4M7kH0s^1^P3;i~HJCIjwppX9AHf6h}?pj~|F06w4J=nV%25AJ-%i4N&_b z@!(4a?w-oN$u~Z>-$R9^DXQ?vMGMDx;v3RH=1|^rJo>1@e)#o=eBe)|Gn=!s3#r`E3Gx}pYVpFA-T~;5 zVUg&-inz=hd&R<$ruF{vsRqvu&yLF}%kI62mM(fw11srDQ|@b~ zBD~rJ_9jCtyxPV~4=oYBlIN$m%KQVzo;7FlgD(JHg&j>0@@Tc|HT+wVVgN}}mNn8` z`38$IycitsJDu?H%G6{K_XQ;1al-%xod1C=+)Y}^+;e2jrEAC`VOz+`JOiNW0H)6d ziAg>uJ@>1MM|!X|3T56o&}q4u6O}&+;{a?d{e#T>-@HE?kbt4s;~n%y)p7JVC- zH-hwb44(uU6cEyK^?@A|X_kONV0bj;-F3FgY{zYDlEWL0 z7Q5c)6$?)e^tOSakSyG>%$``f9@5L-!jB8|A--pBbKBYn^k|o=qiG73UjO0XdkbUN+oaf@`jk$Q& zqz)7Nb-St$^Ls$M<|u)6Nz%$Iq;Qc3Mltbdb(8OT`A!7uY2BvAOtZ{oBzD#WCA)Fw zSCA4x&n04cCHmblr{`7v1sL}bFt`_*1s-VGtU)1Q8E9H=LMDrh(pg=hj3yiAyj^?7t;V5F}eBdNfVNrS{gio`qC$Em|~Wqve5M+B^XwH7)td5io#+5coZNI z?2k?b_!7ujS*PU@UpSf!EuzcBE4H1#pGKNk#=qux`Yr_8=@?ltg`$}h$nB*4=e<)< z!(n=QHw7vW0$jwq;Zgh4+feOO0)z#VD^L&WC9`yqU4b=}+Y=3cglc_tQ=7VzU=t^EOU(VH5u!f?Ll2~uc~4#yPmmmaC!rAN?z=#i^b zK$1YKGEEeYnwM`I3o|>)h-9{N_US#+*rYK^i@TUiKra~v1oK=ywCvV~`h&&m*p4_9 zFqU|B8E>;2v!~VK0ka3}!6a@KO(DOH*@`Wm6SJv#+$lkb@mskKd2}{Czx(LMydevU zekt#~cv$G757bBa#Mu$W{no#)ve{pCqkgQCJv86kKR;kjgqn~)aJkYDO8Ycg$rn}% z$O%P8X=DxVz}eXUVmm@TgoFRG9Zb;|I(2&UH3yE4F!kiYJ$BiS)x3-v&#}BKgm%#} zY$ctTHZK!u4;t*j5nb|YK~PBp$NYc-=^vl4bDv+o5Uv2UwyC_Yqa%y-yX^YN>Y4fD zD$m+Ci+jQXPbb5g_tt;;e0Ou*=pqDy(ydHjpuW9Ec`WxWWSKY(+)mC5$wmucAV?TZtLJH!Poj3@$d z9co?gl2DcDmQblbGzo{xd@~Q9&&hb{jmfneo6yJX;+1fIQD@iFxIF{IgHa~X(`GL$ z#wga>_Zzy>V31W$&*z)d?hw^NVZlkEk``JRhI_vP$GxX%b$8?E97+o9MrkY=lZoiV z?56CL;L$LA_B|#=#md#x8a@1vL_6j6X<1*gvl4dQH5t1w0=q)Nz6^3i1AIdE;R9|6 zKY7qudin)gJZWgn=9--WqO+%_>ub-~Db4`pBYcSM3V@%9NM1f5!K_aCNF~gt0zy3; zu~RFRA5h9!2XU$K7NvpFzwz1>e`)--W^%r^jt!lv6QD{6LZ`aprD!zXm8a3k{W%jX zoGRFBabA-vngYapsA{L&I**cKz5OrD#J>Du*4B|T>WT$ev*u>!l-KsHwZIt6rR88i zV!&EOWtcP^K~AEEj{w5u4ZzTw+1#y9r~=kV`*+$JjYmt3kIH@lof5T6AB=giW|hT+ zI?S?|j=mXqeMX`fKa_Z4CHZ3iSuP( z6nRMc(vyLd|Aq=(#z0l^Wt{_})P|k1>bz^QxJD+OWY%fT>6;9#qM!Pn8}f_tKosa!fAFpp0qXd)6B5+x z(a>t;vYM?!MGBKbhgVH*ar2VOT9HNYQ4qo%Qlk2UEGaHn2vo38N6Rlyq#dPP0TW)% znJ>&{K)w2V_>9Vn*;3etuoHxcDOBobL_Xy$UjUf=rfzIRAKv9e)JtJ{e<)Op<|9g4 zYJ8#4Fx^Un3JpX(W!-raQY(>GNq?*0YXPIWdDlt`?v<=;r5}_}e(m!fh&OWxjne^q z_c%`Or~OUd37C`T8;i?mn1tc=i{a6K$&}r)sPId8rj!7tYEfkp<9Uemoyn68j|5Ch zzyH8n%+q;&P;vC_umhL^%_E8;Dat#X6|$tiD*{L*($qmIWTe!sPBTNi#OSJSEtkkd z_Lr3tjv6-XtKK=#ZK;ClTJX3b@VN76LG383K6p~&q;t^%!o3)*@fTG7AxgBrm30T8 zM^avrTB%@==h44`M{NY#pY*-lBESrO4*93la!&T*)7?u4zY3d^rGb%(bO_fmdEg^E zY+N;k>0qefdLz87fu)`CKct36u;_@rBo9+Sj>s<6a*4;y`K#`KxS3$N z>Umy>@a~8E_WiraAs9;2!v4}a3Rqj!8%cDRWw{_mxK!H7Lj(S+@?o|%enq*D^2(D* zgLdYI^Gtsjnw<-|7$Rk=tZTBoQyLSjd8L}+Ki9X*(S&LQv#yJSO1^^O4sEFx5U3}@b`8_ILy{0rm0pFh^scofpw)tGRAU`Yu5D=o-B5DF zU>l~73w9v?LT*Chv-KvL4{6AHV2L^JG#C2+koG3fP`_{d_XnX+Q?eyYsHp4;*+$mB zDN>g&;6mk%kMn@=Q-zj&guI-GiK&9 z^SPJnzOL8xzOTEUrmpIgU}+!avSFhF|JHcI8zM%|6L)(~T5J@4MWzxP-y zurqFtyOVvqN2!%GAP0ZFYktXRekS=+^79ZRf&Hqls5GwcMI4U-tMXeW@4?O9t|(;J zMM+No9VK>|@*T4~Pd$cC->{?i%pau+F!K%GtOR>3jygTH2-g=ne-d84n|vVs%5FtT z>!RgMt68?lm&ylIWlKIdDC~tl&!BHO>I*&e*i_8vGrhg>$>}w+VFT4Zl!_rV6)uy4BSL;d730)4wVj*>)*hlloHD9hp&L z5*Y1FJyrHP|LNVAAt?J@FRx46W!38k?wi^Hofm^TGsLa_&T`;x@4z=!{?2j;L(}#X zLym6j!=0doqDx#}?u=DmLW95**~dYO-;_T0L>huHZ(JB%HWiU9#(9Oko6EWxL}yEr zfCC3H{gIcVnIVAK#$^i!=`PO7J_x!>jf|>4u<>gmV=PvDpsF_ocjGJ^6f|jNY4Y(a zL9ApKbdKko$S0(+o&kOQR>2vBlBgZgBZ4gs^QetM#)C3XHQlAkKrx+zPV=BHPZ9wJ z0!D;^fs!;p*K`~Vk^95jJ0RrJ6s@+l)z9UZhS-$tcVYwmn~2x@ zYnl$aB9<@w22?f(aQRP`VzbfsT0L{*1?t|d@n8j)uagvp|0FpAe=0u}=V>yk(V>AX zBaJ^g2)$n498+HxPZxWRQ~=l$s&+fQoh9u&I+*=I{z#f|?Tp5WpoYnbYQ-b&To0)pXVH{L*h+pv%zPjLwpczJ{z6I4IMz*k7`7JA^H z#DKrSTfY(8nxP2lp0&}TKw>=IWm5*G_*?*t(RFADc+0`&<1x->*JK%#c1HZf`}R69 zu)L-pxA8UQQD8?Gi&Z>-zQcxct%q408wVnInmIZT zk?D2Zm&r6|cv>6^lv=dyGxYscEl`B#Xe9y}<`%Kb4eNyKF)r=0L8H__f^zpot`Vli zZM(yt?`3p@*vwLkI4twz>W*$D-~Ll5&SVBG|oBwGFA3M zT)3?4BqX9zfrzJ(;+CXtp{n zTOMm-lc%6?LV9e%Z!N_^L;k_{Q_Gp7JKM#Q>5|W~i@Ztno3#JLN*W-V-LjW&frd2>bX;b>_*^ zLFbuqcOOVT+57F?F7w0UsVh6ueB*aO4vn#qLIyHwgtnmXF_xYU;>I}M*P<5;t3O=0 zljy$l8b#LH`3m$Q*@~W?9^if9CZ0LZ!tRVBh3hX}EW5npsi^@>Tt{{Ev<4XtZmw`f zcst+xX)AaAW#%uT#b20}vdeborQMEJz8q0Loh~;-A6yX#%78-i`!veosrXqc?KKj9 zmimQ&>!HwpS;r9>^PSydtP_Tkf=AEQ9MhIPf47UjJ`Fs-OgJO*+-%=`lBoSa7nd{N zt~X_ZEKSHNbgK5FI$;hk*r`PX-PK5Fum%?AE5#{`tV*Hv2NT)pm|NgYun zMzf?j2r54WjlH<4pcTwCAA@STsJ^`K4FmMpdi|@r^G|)p=wNM zL2b_tvpKLn9l$COLEWtO!#Ot_**XSZJ_(SpGNzi}JEiF@BbU^~Cl3-Li~oYzd_4{s+5p{<~)E<1guI z_Q{xr^_*W__BAzd>v{kUEC2Gl-N`Jx(T9eh$IQNCMuECleqR8l*3XOk!YLSv)q0E) zTtB}M@#LM*vt8`_@9>pKHi>Cy4GK(YJ*`QDaEAnWp-i8_)Pk{L`I6oNI_Rpblu}yk zRE0}-&b8LOl~!47wLN1e4fNAwc2_DCKTZje*<8(;y|lml-t(i~#wl4j?{j$XYSll}`tXfk&$u*}CAp)f zZuZc-cL;)kT}8Ya^l$*zlVv6ExV$gfCRAME3Zds?O(0cZlZ}ndICuSuux-9x+9v<< z1V*9b!+daM%z&fJ$&(+DZ3t(MpnE7*3-A|G!ys%$h$)2|Ko)9YbOq~X^swVL?fVFd zGC?hEDu2qXs5?6C`~D4W9cCyYLyW#qTUxQxF-k^iWBZd7f-cex7|Jj4Z2asdcp@sK zt$Uob(2uc=XO|wPAw1)TT?%Ngeb%41dXyCAwM1!+H+lrVLo0={7mP`U+g_`3aWC&A zw*`cOFY;bZF@Va0BHa}|%24Y|6a2h5U$)^B^W5(sIS%;KpGmkysesMH+wBb-5eYtaSaRh1c_5;!nbaLyIjvqJU z$YCCT{$jit^6p6TfsDgX!dFbZy++wY9B+P&=FDSU?K+wvb%d;))$mm6jm-TW%ka`y zPvpg7(-cBAifKS|!?_=g zrmvfnqTa@qdYfBG%XH8RX`gUe?i8wQ<$L;Cxp~YPDj?Au9MmbaQ@-7PTj9tqFO1nO zIPo-rt^h+ zVgSuK`}2H#ivf7s%T*8rd*JW9>O8Lset?KV-g%+UBdlVe4}HISqw{CHeY`0}@QG+MNbtl=O)Lpx95_--Zpg}60LIO}?0`rnTUp`Ppcw%Nth zy-@j2dERx;N{yUj<`<3YCEw7CNBn72JdXC-zuP8W#S<2lb<%^7qwU5vky)JsN8ugW zYKCN(-up`5D3aY@6kp`bmR6IKbp9BAaw06cHaB~y@5z%T@l?AG3#_YE?TVMf*VcpK zf{x$BwVZ`(z|-ZeA40X#7wvuWr1B;G!f9uGD&MXUQH+~jdfj=WFURrQ7w#wNNgqsU&X>sw6ys5yy%9n6dbJc8uf`h(2n80 zU#q}SPMIJOxJO{kvi&tHnjUQO+>Y8~z}mzN3^86>!(skB!|ZhTA(Qn{L6 zllKpL6G85PIYu_FEW{>YQ^)}_dlRtp{rG9uSo-*u?G?rUP{%@ieBQgI`SqW5f3yH# zKDWhFrAQ=|PvprI#{(2Yzd}{7FRO2*VBHlDFgG*WQ-FyAO?S>eisaqq-*~L^9e&gB z=y{(X;rm}YPNee&AuXKb>iqU~nR1R$F~Q%!o?U*KV??#{@mX1LT4qyP=W*kg%34vP zR}`(wBgA1d!K1z3h4@aSTfQc)8aFzr&_njhS2GmWew~h%@vk0d9$^!%sGmoNfw5dL zs957%Tv-kKtZ*G}nvL@5`)y88AuJTk-ak*y`eKOFms*UocXyVlP0#L^6r3Ghy7D^9 zy`~?Ie0N!?mCezs3wH@+8gIlX*~aU_IasaEW|puaRsil^QOo$Gu|QNlgr$qxMnQtdHmT24#{kbT9zkr0C|zQ1;DS{f73{I9-}UC-k5+s@+ez zXa>a(E}d*McNzO6Zhvr6K03!SDlQiVCf-y!CIq}ihsXC|N{pwv#{q7z^z&cdswowW zhshMeJv@BB>pf;l7rrXsOMTLWQ?1@HK*lr?yy1_!%^&B4(=EZjwS|BP9TQfq>ya=q zcP9P#_t0Q}zrssv`%iQZWetpN6bm{(BEAHMm?m$pNsgn(xahJR)f89jd4*ENy()F` z4EwOZ32|77$U4)C4k8FY^b)yao2I~KdmUJ@bxBYt2S?OOy?|?pr!KAQQl_zz>&d!G zdjhgK;eCO{Tz*U5cKsA_K3#q0)}9D>%5|?Ic>NKv1F!k{!XINuxb@#_Rkh&@3lH>q z43_royX#$U;?1ey4Ll?WntZ+IHO@}`?F}=+D%!+@Jn$(0tY}E|RQE?QG`p)s@I@nw zABm}^Z|LJYZjXKvAa_SASI_^#FxmMAa|}0t#y^1T6Mh?K5-$B*2Z|FEQ#;K%e&PXm zg8XeMKPvp2$RQ$_Nvps!05^u4+e5#!%o*LbPQLnPbD(Wr*_{nWGv!Ez#SY)}4M?LZ zPSsD z*$iBb6`mOL;4+*BqiirncRREK9)OOhn^p`ufSucAvvNanELF*_I5nEw&#S#MpZWkF z97~U0oJ}NW89wcQcR3qYhs{A^o5!KGI9-=nxqt^U7XP=pXj}oWFf_+xINm}Uz#%<-C4$>>5c>Qg~vWl+wZY{YwpW5YUIb+n5UfH7bkVmud7A|bRqa4 zFc}v0M@-5EN{0G!EW4-I>tkU+(Pc6-e=#Hzb?9-;2tTwCz%q;*QGX zOAjPbi-#(H=_NY9`e%&AQ#D@)^$iryeW(km(5D)j&tM+YrUrwagTSDLTkY(wa3e`Nr*C zc25I%&i_>tnX!II_g8gA5Jj1d5OR_Neb!3T@b3KRAXPT7B#$wo;MFIk`Q%z-;mD z3o;Mm-0Hpz{|8&QNb_g@sjX~v&h(7Jjg#Dul$VrW%iKgUFt6|u!j&y%9x0x9Ki z?ETA#$GUs}ygKmN6)E3a!`2&av{_qG8xI?QAX85j!dg$sMm@N$PO>-O6oSoGut{?iGV zUg`on)yVbzK=8`X1qk{+xOClbtj#NEJs`ee&f!(wg`2jv5R|rK5d%Wh23fLAw>_Rw zpmiO0mVP6Vm5&9daJU!P%zq8tEL))~Q~!J)=*qMC*Yqs))1;p)Mn%l~qBl>xcLo=B z1yz|LAcJX}z2rVFdM7~rW;^rZ{Q_7mjz)JUf5=|d-~UtJgSaOw40NCd<`1Dk#>lt_ z+WBIk=@ZW8Qgq6#i@y5}{=9YTLv9ulTrHpDBixm)`k{i~ChiIR`%>Wbx+9&~Ujr_vS28DVpUWV6t$#eF=1CavE@r;hpqzlAR9hUN&=jtq z59I@w6m-n*&d2c0{fI}(k3S@Ba6atYb}u4oS5eJa!}m`$*vcgLG#LN6TYZlc>Ejin2KLwD1N#y84jF5YNTEt} zgUV&bJ;cvmOH0_Yh@rs%9$tKN1!kHUs2wAr&>yu&wdtL<@VT}T$0G->p>oDrqf@@F z6Yv$wOWM!810b~#F|IvGMI9uJN=OYDzTeu`5z1?E^u}bZ{bH;|Zqb|>+4)r2dy&FY zo@;M}hD+yuVB%H|q-4mI^r1S3lKq3?iq1 zt%wHq0RhPDJ>ce|aWsX9`wlh}kQR{lu{KfBOROhn)@qlgYA?Gw{qRe$;sk^7Q~0N+ z8mA(XUb28kY{3;k+kSuHf>ER%dZE^b;!0kym0=a2_QN0NPVk)b#0u=Yd5JCNbmK4W ziW7yhW^!}E01n^u=SARfhGI7J4(uF2`WrL*IxqafIJ@PBN|;?$;e@tF!y83M>bt@{{^(+Mb0WSc~Ti zN$XDIChB1yMsFEga5#J`%!OSL>MM4Cbjy>+7_+{ELnCJY={rD&W02SwcDb(!qkMO9 zyB;eqAs>MPWpzrTaqVm1P(+oCEmP?H}oop3vx+twP_UdZ%JRer51gs z|LGM)Qa%P*Dg_=E@0M#`oJ!l1U(FtR3P(*Tm}4(^M|rzb2b8Y5{S|uJ|Ck-^Yk=F(rtx&4m5GH<`F(7? z$n6dD<9O){6|c+KL<-+lf;aOCay&ZZ8PIEU{ZWSzfI6u$QowxE7ENdQ5~C&7+%mW$ zI!l4|1m2C=0O>He{czA%{WAyY|Ee}gehMBxT<JW4Gr|NuS@db;{<_BU(gR5l zLfnjZtbXvL=;3-)B(>pzXxsgO85g;hmKF%G$wtbF4v)80>ykb`D!6T!Bt^)$63;vl zs9rVdBFE6X@Ch}Gv&zw}67H4dVnNCwYC)80fnr={-9wlbG(aT6dA8=ik>%_kh}0!u z0jJ;=Nk?0w|Fn|kb}MzUHdE2dEZ(k!F1iE1pumn5(`sJEt~33yGNxV?rm|AJX#W-c z5>GQ;$ZW7W?nD1>L%+@HP$wm08c0Hv{7n8OzowyQK#3*=f`+~Am`rtaHG#pKz6J6S z@9*MOYhV23O?;Dlrh2_0)LIxAFr>jEHIs>cdPdxxgjExui|uQmDNuM5)>=gP%d0aIJ$MsDGQ!;Pt;H$AdsPt?;pX5*9^GVopwz2kzKKLabYsFnnDq2GHMBZOc61Bv>gMUJ|SW z+u&!5;?@?!p(p7E6*iTLmrsE29iGZTk9ylx5pL~%Irj0GocvrU;`wXg?C2rjSJr}c zMSzdKW1bxM+{BJHbKakIU@g?;SLX!sF6L|6i*@_8{Cpx%eP$8~2?;8teu+tS^0p5D zB8m@E-VZ+#dN8co$$Dzjy$gNmNp!2Nx^9D*hx$2p9&q}R0@2{&#VvMCS8w7V^bmhm z84&U5y6bYb`H4?q6BXQ2;e9Tegv7)%{3x064BFP2+A?3@~>zkf!@=NU4%mltyF~PiZ0-s54@PG4W_%-=n;Z{F{YH#_uAPLr z<*!WznUSg8)fG-smJbFmMountkGEQTQTWLXpNw*ZgtV;KPJ$T@cwXs9a6#f(FvJ6_ z>kPCEp$}N{Unm8J05)i?k^>h1Ecr{7Li@Dyg<@W!KMa~!;@6E(EtWvvr_(m~9N6By zyMe%C*A<$P#~nr*@S$s-4zb+Xo`=QfvOfnC>E^Y)1^!aLBLzF{wdHt><zd`Sf;|AF_uz>$V>cp}+9JL^Y0W#7=t+2k-boL&p~%#$9}O6b&a68Q9p|x(@g;wr+Yz+)uOmOY zHtgCI!0NCE91LITI5*%|`UoI2^TQ3cC(UcJIQ{b`c(r3Mar{8(NJx4MN#m#>r2O!J ztRcwILn-}hip;rV*PJ*YBj7_IbMleA#lHa}qb{U4-rRo1ct#ZsGn`S~p1_2lD|lQ$ z@ADemP9m;F_J)!}Z<=C1a~j@4;nGSIATr~R0=3*{)eY?RTd)Z(ABDdhA9VB_7yVlI z>y}Gl>zx>k4_Dviy=w=9cw`(6%5E=7fh1Groy66y@B9E z+gZGUKk#l^$RHjZXZ7YK+CInezFx~bQSEG#tObR)Pj79%{ds52<=!9 zWpnFi;ALA^QJ)|@vVH-mlX0$0VBZ74VswV0&t0L}8}lfv6-gx+9vR6(`-cy-;n;Fz z{Ew{c<5lQDDVZi?0{bwjx#!k!bLH~!F)HdL#%|JS04u-Sed@h8e=n;e-qY+& z5j8f7hmG0c8W{4w$Ho5HQl|vvD>1vW&7l?yrBKWexHl#$IX;rGcsyL{?i&Kho*43$5 ze;QQl#beCr1uN`HSMzm~g3NrG+H3FR4K^SlWAZSn?hOoWx!i!AaUhLEw-v1lrDF~e zmc;)=F411xIB?{QX0^brf3e7~tIcl-~oxQf2h ziS4`heC`;R8?JR<$>|r5&Ve8W!}NRU+e&4K{|Q=A9;8QK$8db`%0~PUj!2?<5wQoU zG&bd3!j$f~Q5{5eN4kKS# zk0n_gHh%{?8eO=ZW&(2}W8ml(Z`_K=@xb#$!{6pnbpvp2AA-8jN;s3)OFs!{B*t5@ zIXa>`LGXYw;qR1h2o|+nwEXp#m1=be|K?u5+|N<2>h&4VC|bnI!N2}Q;l9oa7g?6> zY(?d{&8=JExys)Jpt2`Gkxa)i?4Rg}T=H$E^5E zM>20_FWY%V*WMDhJX%}2(+Z7E2f4=Pu|f~QHVe~`uc$Sq>RI;jXC0}A$+@}g)z#HV8Cw~aU#QG9>XIiXON>7lAq}(to{!*) zsO|XPo665Qyrni6{@+kt_j%3dtsmn+=`7|V#4L>F=cBc17j7*^%X>*WefD=eZvn7G z&=k?I|J1oNhLrOC$tkHQg_`qUzejfsOV`?Y^i^yO+4)_#=H`1E7`t-czIQmqNogId zt9L#+4X;I_#kkhZqjv!;s_BKCt3Xje%e%I+ z013ENJj%ex$jB_~>Tsze&XpKmSxhmbf(##^Bp(uC=9rv@Uclyr=81YUfNe z!aGL$-)^cjh;gwnTw&Kg2Dh)X?>SN&6Bd>ud>%)n%Ub(?gaoQN7+8EcPQzfN4GIL_ z9|QpxgL2gHRG<|N*fnp(DFJ)rQeGLwqua5fik!;Gl7R$kkmWq~V_A)vgm)FVufxFC zazB_Ydwg;d{{XAJ<4Ed?`V}Tpg@AJKBuw)mBcpaE1HXqXw8cBP)%5kAUAlWb&A5;i zgci{OitK=mB=@Lat(#qF_W$pB))}XB$Kxn{Xk>+4vhzay zoDiphN?b?%$;s&`hF}_>Qa+hR6@Y0XUn?`B4A?Z=m4UfOA)XXFh`Fhb2qCWYzaJrg zi}?XuM;<{wzh(=D+Y;2W(Yez_G=olqTQ@l^vT>qpN%*TF zurc8g5t8=LNm~6QE(zd(&fU9rgYF2^p!quCmY9$LMR17TX|>$}wRd(R=i0hn$LSmj z#>;IS6A{?~6&QickY5|wZ(QjEYC~N zNpMGjsW{cytdAAqQ58K4mc^yjAsNS4v@DTd!(%(A&%69DdTF$mBo@tfe@R#mlHqV9 z34YEX5ztt-XT^E`pJOtvS`wn4I=1B<15FIVeRi>dBE_Vjl!}(Y9U5dgn)2p=b?G(f zu)Fcy1Td;!6a7E|vcSaRUFVaC_NV~RWQtDXVawy#;0!cQW^U zRVR_w=Pu`Ww72hA@IORe^HJhHc(8*IeNcAK-Me>hpm%)xxgZXw8|9u;T4WOfr#@22 z;J}5Cd^??cbB-mEQypP&a76$m*Y(#LF|`*3PF?4KFFxdl=~WqUJa%#Qs@*NxMs5 ze7%&bYI3RnR`W;4j*gBB2N^JOwG?~#M5H!I@*7|&0H-)i!=Rv&lHH(_F2`$L$-X2-=_s5_@R$=F8fnh2gcm~}sP2uy|P zxU8vsbHb)B+pkb)kAX^!eq?6vKlef_HH(GE9*z!)OXJe1qm>lpquTE+NycW38& z`-*mW`^@dV$t=c?m7#z|~r~~=;!s&PZy)xAfJBkO=YlQa%I+bl& zd&sDpm<%M4v^+r{d3Ai!|5QBSWN6d9u`DhoR`dSCtE87W!_P+Vocdz$VSmliNv;SP z;W1w}P?|}T_zF;|bUU&`rqEU}{s)`Y_F?KtyF8Re(tUu~>cei^gRDHd7b*mGc`ELv z9kE-=DyBX(@;muQ50`rPV?_%G*4N1MBRbGy;R&LZ0I4l4gUMY0Fx=6KlS}#@(2*2X z2)NiAjn75&z*R(_gRN?x|H`SyMw*7tMa=D3=B%CskSRJBuc}eJ`yF|KmKf1|p=u|D zbOi}iJiRCcqF?*dpf7rGlhiY$v==m}f{b>kUpC`So9vWQp4!*qjYFMA(yyAPgez?bB8$K8!!p_=~;YO+?le*M);T)xx5r|%FLvC|cy;?4_X`|KXG z{64+YsctRZ$8GeFgTtAC?QbE^xXa&=C|Dp3&kO_Dk@WfVZkbmX-iV%q%QqVE91-*y z8X9&ALFDRst&=MYpxKe1{tlcN4qj4m$KfoOek)%#ww$ePYJjZbIiiqMzP+wL7TgM3y1S?Jc7&bk9o4e1NR}sx znujsopT=Ill!`3Xr%urn$iv~md!gy3F#6uuon^~lsr3zhpjOhU0PpEcm)lr=hI{q$ zCFmeJjt>ACZhXW066Q57T!``sL<>K-Ix(a|9o_Nq{rj4+A49ejYTY=7>;6ml&JjJz z7DZvU1d#L}Ioy`&5_K2fOiMN*8JXOS`b&t<9!3=~>ptQ0^xCQCx1&G%3eLJt69B&F zyw~6F7u+%W^VxJ!Hx2Nqmc64ZhRYK5e#1YT7`wi>)l4hc}tOA+p9+h)U6L7-ih)vXJj$Jy<`F2Qp$N=%lQyuOb#?nR8$u z{XsHeX$!w9iE+vvIej2eHQ{!{VqJ40^X9FpY}(vxI48!B<|6z+sLVWULgef<^1*`# zk;=bR^6h9cIJiAxq9KM9SwSL=yph(n(^mbCH$T9L-8AfbPbkBd`JD!*bSW)oxU>$w z4W$Mx#o+Ai?Ap6FRydohkHdC-?Zk*~^G#sJ0bv@);OaoC4Zu6>A@Kjd6_ix*hsa~J zGo0Efy!UQx1y^gTkKY_=0pOT@bX|m*u zjseV$O>cQ4qV%y5Zu1+UDiBTxrjxzh{Z{nXP9;%LIE;=-47GCRmP>x}fW`F;PlDN- zo7qx*MDHq+M*l3m3w*Wdje_ADf1z-iEOle*yRI2YuX*DuhK9ar^&IxBJww*niEs1N z^BsHh0yn!HWJ2}bnXDbhUAlBRV$gO=-|^T4+I_ds+}fAer*BeJDRh6@5rXo?i1i2wEG6)6Q^StPBD;;~nl$_>UipO%XAn zrLe5HDHyv(?S0SdhkWM<`=X+}3ph8X&Mi>@?Tuc~mAy;fud$K;%<`>n3Cj6IJrt-| zy>cqiJiDjm$B!gx-F@@m4gAJZbjR)~h=96kVPR3ug#?w^J!B_AW6MR(ER>9es_!B{ zU$L^+F>ha*+Ze@SA&6}1TiRZ3s4`S1q6{U0$keKedQv^PMKVkjvJ!~frd72;ZdV~ z1?FY;g5^p)qSytpN~J-(5`8zIh0we?-jjj)Hk5a|Xf=roF8wP)@{>J=&$K|WU*d`# zScgYP&7&1QNAy6nlFZ_Kwte54n-PhT zC$$Td46o1MLSTd@Hv>eNm3Lg)3Jv?Kp@?eMl~(5$<; zn$^NJXlWhou&$Q2f};G&@PAzg65~h)9ZXe#xqLBNK$3~x!gjb1eS7Q~$UtBOalLr7 z30k}E*9;xR(|DF10$Kk1-*gZz^mFx{w}V1ThOVeOD42bI2`u1Uc|g}x`*p~dLlH`g zBTVaO!+^zuq!6RFlXz`OPqVqr%R6*Y3R!E{7q-L@%(3-#%DG3=&|06>JUnvcSDH!7 zghZ8t!7p}QH8D|IT+o}wjb^1$0d9EMHkdwGrKv!~JeB76t8VS?4tu@6{$UagaI^t# z>1rogh_3-jbNsDb0y;k$N`^n2$+VdLIeKPZu3*nx{ruY9{1g>`5!;#4$dvB{jhy|n zV-3&1qr}gIFSRQm>C+u2wYc#hcxG?ZK^6v}$^(s4`vXH5WYQ=x+=vJY9h!F=sv>~- zV(Ag5Vla6>=pf|PVFARBHwNn5MPSQg&v9Q)CXJFVPY%#ACoLWlE9S&#g7X|Dv82v} zSsdvvXoSu8E#1c_cfjfgzYu+Ka8($7-L-_0n|-LnMjgs(!T?-+9_bz39DYR64ya_8 z>K5YctzAvQ$vM7dp|TEb3D}%^XAS4gG>^Oa1|5kZX5R8EWVPE@2ax$SkoN|OUAZZt zb9x~WHcJ<_#}<{U#0s~f^o8S#($$J}^z!dU#DGF`KqD52$Q!$?LFFwFWrjRzn>;j= z{dubHdI;buJa5+38mVK2nS=;W*xq^is8}UqzYujvOnIl@K&$b=S54NHL6NH;R)Nz< z@rSF<)VVBmu||{CaKwnKsy&`3!&0^ZF_ISW$KL}~Fe~KCob8|AL@`>5o;sR_^pe>4 zWO0PvF}eov@niD`X`FOv?4D9H^RdaRsTwj_O~D5~0!-cGd3evG?GLxE%NiRz9CZ6W zRtR33UZ)32OdjMvPS5^m06PlYXWT4v4Zx|00Oa4`x-GDd)A3bs%DUE}-LKJlqy2-P z+Va?mmYRg9IgVHCr|0JMWJNu*!?+eDo*+f9hMF8!0NJU=_}CEUXG2}L{{yZyDzPQH zhbh1J0WnJb=s@of1-YgQPgmb#>c} zYriQ3=4hgDLpu(&z|J)w|o0Jlx!-);k1aAEqMWSAZD-H9;0GE+t+BrZAph zvXJ^WhYz_IPby|r-FaXhyw`nZQosboG4zjQ?H>PMYP=AC$itR>4b746`gF-D$rg== z|MQjuuMyQ-*C9l}q0e^hSzd_-6bKS%B4z&&cNS?x<@V72VYoo*oz^yFUk!l1wOiyYbn2yRr9P*O zu3y(PHfDjkK>^!`JRx1r+mAOZuCPF60JzmPG*sGWlyYS6fArr=|4rNR#?%m&Qw!uK zg=wf8Fo?ygD;BPsdrD4iidumqP^X7b6nyBt@nWzTMbt_W_ZL0_+a@q>FjzV77BjJL zv2dC;SfnButy}$bsN?`4*u|B0`QN;JpW%SNhva>Wf&w}>66$WT*;b+343IZ)kafBy?t}h*m|rL{~Mmp*}^$0QRE(4gtUhfshvp%*&HWyP8D{T{JP-9Z`Kp)h5wgf=iKUAC`3Bt3B`k2a*=M{{yZB^HX=nwln+a;-%|JeJ@J&t`)fOf2R(ondkQj z&aYIA&K#coTj3KhPb{_j1XC}GF|O`F!Kp#-m9vLA z*Uek=(T4fFk+_cergK;mCY@_VBc*eQI=orVzdF$o!-k7qrwY(lm-{my`( ztfBp$ zZO4Uz%02+-!^X*J(J2CoI9HCS=?L0130?*}o)E=gXxNz?%nQ7Xa;q{F&4pxm@Zy%!+nd_9=&0bC#ye

    &^A8AU`YQnRPNDb;?+?%%XYGSnVlt4MOjq%(KoN^T$4Df6KzFNcI7um`Tu=C!~cN0I%VQRT<9y;`XH#j+^LeS)_EIog`9M^-@!!4Y>uT<_oxeRUeGzTyMD->L@SI=#&8mx(I z&R%BaxDQTuo_(P9K7ql}%FzumD=RA_ZiNubhW$Xw`PiiOYptPbb2zmD*lLBKa|dKg zK(Zm#;PWMB-K4#T@)p2Zv5m2I{I+fHFYu#XZd$bF;l}Is;i}} zSp)VNYyEp>eR1rSd6$?-6TvCIr?@#(RYK@S>v7d9pxanto;U}wP)Emyu6Xl8Dy~P8 z!G?)8l$UuMuZ?SSEkKZz21jJaunx|f1BB85NUFnb2Ol>w^$wPDt)K5(t~J%$-VUwy zqtn&)=FOnWk#gC2KIXR4*t5OU-)YeO0bHrd+!4eci-&P-D6l6QGW$%DPZ9_Nd#o5# zve7)dAh}!A*S;KM&te}9eOf@b;~kBp)0=tdNe|}3w%&0cj17K5_xKqKCN{w8=g((X zGn(Bw<8vi9BGf$Li;uQ}ek=m?)tB@E%vP^RCeo5#@zxeX4+ zHjsq_xjE#JH3W1ED(zamyI$2k;Z`W#T$$jRchTs>t&M8-YC@ za7+gd@D}>Omzh9o1|-fMv4Oz5|5V&C@%0WpvmbHDtwEG88~(bf97aulL%*>(8Bbar z%6E?Ee$wM`Z@`IhIBwGh$oPTs6Pk`ZgUhO$7YCX&u<%O#mho028y!xR8B5yY_tm}y zRUkyacD1)xIh=keZjDc4@nq%roO&@8h_owol%3^El+)>7s1v&4$Pqm`cV?O_GONt# zp|lN*$JFNdQRA1lcOE%%1nM7($SzC?dVP3YtZ8TJPX1nJUxGl(V04z_5IDT**|TS7 z6{Hw{4H0RtQ+t%4{5FTL2ec>48BS)e3)}>99~@mmVe{M6yF$5p=@QrmXee4DFt@xv zx>sgZ{Umg}7oWLS6i8*~`sjm=KYb2FgzJ^O(DP~_Lsx=#YbKEzo`VD!8ti<`hH&eQ zHtb*(0)2>8vSkSD?>AoiVI3sAgDwz&YTdG`UBgYXLp&YYYSr~OwY4L9->+Mad*MkY zjn+v>4v_Em_&$hEh!-?E6nKBXP)#lr|6wchJ#|9n)ovVhC7z~$8A@`#FQYMnJtX$b z+1~zg{C*)z(BBqV?t@nx)Ox`F>aL@zAOXO^Zva?$QQw@W$Gtb=FrWYqAjvd48mw|X zW(J6v+T{|{>d%0)j#|0>Gl#dSdz$tW9%FZWK)IlNGTy*;KbEh@9 z%jUt?phrT1*Mpd|KW7@gG+WpaKuPyKI>3r>O3$g`#Cn`SE#}g<(;rnH4cB`!n7a)us;fE0 zHg>&U?pjvRRSwwfuT`=v7bp#94?H8B@G|x>VLwn}uon;PdDV0ep!>D*YrZX_2zTdV z0qc~qZW)ki_V)GyV$|OA zAXhgkfQtbiW=-oBNLfwK%7b)AoF8$ybG-+A1rVVCSnTn+MTG@S&fnYbm(K7gUK8P9 zV`u-kl|~3f(g@lpHI3q^3$JA8S2^Rg_4M|E{5-U!oJFe7P6w+0)~)@YcFn7F6u6FM z+BEa6b)S6s6tf=wxY%EJRlw3N{ATnJ9eqm(Jn>J&$as1Iygy2viD2F`^Cck(4r^l$@S2U=q2p zW^ujM&FbqwSmn|4jWl0sAq%`K$2#u-lJVt^lA~M~0v#`?1Vn9>+&^v+J4S=MANXs@ z)&x|V_`P^B=CmI&k`KaS^7KU&!?|?f&iifXIQm{v>-xL~_)2CwxNa5?eymV{H1HmP zivk=#v!T|g$d57lUQqX%`ZFy2P4%*RwavbWR@;!ukw9?q^w6|&-3yu*5b8>Y<5qSgWC^tNQURm*j6p4WnDdwcr_p^c!?77lSFZ-Lr@ zK=!<_y>(c&v*3tNMKKDfx&SohJAaky8vI=^L8TMuJas`l-*O>N@c`8tkJua}@dHR@ zU1OuVlatu`{6GZw9fyw``8bqp%Wr*et>Yai6;cVN$H}2=x`ncsPjMmD+^)-;^S&Q# z%WN2HUTGx_C8+@i6pR*73q&v&2Jc;aOri=Nn}(*qtae%Q{^TQ&-Zk@x;%tyZj-Dhn z$MN}gK*FG_+TzCJPRs9{Ae5x7<_OWuQ4Dtn#wjUvj^&ENbe8ZdcArvHQAJb5xKH1e zk^CFjYM4{Z%$?+|f`c~>LZ#k{?1J;9Z}axo;T_d<+Zk2*WL9^88PE{sD?S1?Z$qtH zrh2c`I9{c0css}$+-$a?2|&s*h*${hd0mQ1$Q80QdM=KA0L=AP@d4|p*BBh1PDd1_^=slEt zkP)W|{Q1*5dQzjc)Xm_X6u|OfFc5Trz%-5HdiyK3h2vN56fO&1sVYhUCD+>MY;SsD zFze0%Y;*6gROMao9dM*o(e-6zGjwb0UDXmG#(>HE18kVhIyIjZOn^QJtCC4~IEO)k zs-xrXD%vlx#{K3`{`01pKPI6M{#srwu3=q1s6ZXlOx74{zDooTBC0H~;PePy-205E z@&-4=d)>mF^9(K9R#J)^%3YYMxr=#wqpCD!@%+4YwVS@vA1we4#o`piT?fbZ$4HD0 zY8Nbqo{a8^Y2}8V*MlQaCE>fO0>3rvRnoADejv(=;)0FgjCiusRmuPaSJ^!dBMzn- z3T;JMS^I8He%FuRUp;(Ppch!%7YbhKwSQSDT2}~t!GrwfUyk>6*m%irO70dv)syh| z6-FwxlbaS`hxw@ks;2Kz?*IFX}GxjzD(ePR-OG5ohp4>+?p6?)c7FwnFAzl=mNNO<^*nJ zUuDkCw#5Zz({k`h{+rerwa^EbrGmeBDRiUG(5hAp)&M)!j1HTFK8WKS9kO_UxAI>J zeV8G2#H00ej~7w@uA1=cG9B>dMDfL#Nsm=~m45YT~w3t$$FPfn5?y$UuaCnp7E zWo4%w8^GK{=yh(!nie>4YHJ%uET~%-R2L>-@O@fQ!u_?X_r39DRZpr984UzB@ z2mC$ewbPRyuuu)1#wVR2caxc2a)aJ23j}8g*vyHQYwFb3p&>%^QcdvHE+19@@4k>b zXl4%@Lewl(xn)nF4yJ!s?LpKhdSOSFuP`TmL!*%a>_v&dmdC@O<%hk;&YZ{eAIPRL zJ3!I5tlKX8fTT%K=5JutexU3MvR9AWfPms3=X4UKD8} zz1M&spfpkGT|}CI(tALf^xjM8AP_?6>E9mk9M3u5|K4@)x@%!1VUoX{+{RE zlVH9=*Pv8){sSWS`OQ&ciU*AOVXVyEuS6dUyYz`|FpDnuMK=eZgIk@){Lz8*b#+lT z=nJT(NHEEWtfQ}YPU#9TN%TAn(jPEioAlc^(Hz{g(x$4o0cz*18@k^Fa|vbT@#d(LJeCFpY z5H^HV*IxsxL2recKwYRZ5m;sm_e!HBwJdNK5=d=rZJj(~(_!sJuX;3ah3h zFFn0Q8bjZKq@+hByAz1ooWvE12_C9C!>vRqu_H<+&pQ(BL$!SGb^KDdy3O?H`4%sH z`P8g7+p2JlQ>hL({t%q-IO!A8$y1(waA=ag&R{kmJ7wCT_}t|IQj#}HWF_m@YkXaiLf^;xo=r&`uqDom6R~W z!q+)&z8v(@4A1`|D$<+qGak3W+O8pru{vOaiM(cKK%SA_ys?u{Ml(*nl;FOj4Q?2* zrFf=Jzo@kaaVoCKwGh$f`22+;0ZkY}bh^xy(`CzHUmjNX^3FQKm;M;1!K^?emedFfZj?d1j5Z#pD zwqfzcDCSkc(r6zQJUH|0J-5OnOdumwz&{2?mfcyI@Jc(8lk!QS*8B=v0QxkHC z{aPAn9$)Wqo}uG|Vhs&C@|UN+xRU#7$fHq#4pnDe4bJ2Z_Ep9MY*yg)4H9CTxLFHY z9#S9XBysrwL*JR2W$!vJ09_E2Q)G43g4!OB3e^lI?CZTenOm=xvSH|U7|4_%+Ap6J zPH-E$2Nqqh3D|FOba)WxO<_Ib3gpXJpe#KQTeu!aFdX__67jnqE8ZdBN>v}Df)yUj zjbBbS0+|kA8GvZKP}UPWeNl(!jAA`lGiI`?H(%p}-IHs=y_%z(x{bV}d>1(r_d#FM zKNDB)kzr!9*kebZ?Jo~kgjeS;2*eQz>n}syu@$}nVgq?~3-a7QMPT>*^JQ6FHs zJktRxzbgX8p%ueS)*AFTaUfR%?p1F6DpruBr|0Cz+Su@^kS<*ML{tF_Xf?;gUSe5nK;hYnv_$2AN=*D_qt)M@NI2K5)wH zKNdJtKK~&Q|}d()En-76x^8vVie=f$hj`#bcxj( z=$QYCIbck8g*+sUFE!w=R#2`?mH%~bN%!@(%RD@?y1Kf9Li(Hj5An#or89oNF?3Y& z>fcK$yrG7yEPF5zBo|Bo#{wgz7nlu?0*e3C=GDF3r5ggy8l_X7-4kQp836A$l!X`@ zf6;OWP)Wbn1hJ<)9jAHkCkp#r_Hl^nJE0Y(lIRxdV zEp2V}t+ceh zQjW_R*Ct;&-Tq1L7{~j|sg1oM=brYy_)dE2`R#r8Pu^~p;-)Dpd8y2;@>=WT`N2=+ z`j5Fz85X4LvS)2J20WOR&brch><)IK$RJDV?&nt)n)EtPp4`h0Gl=oJ?{)D5-?>AQ z`_66S8)wH`eWUMlMBle=$8X-c6|G~uB9a@s?SbT3&HXhcEHErH+R9)*`36bdjzJtF97xU;=0}O3=8>Y) z`4*%t-vFl{jEX-84yX0vU%Fw?M7PQl5;~-FPSv@mOJ!pP%#Oo=6Bx!S?piSLp))oT zk&*iOGYsfcN2_ym%g=-S6nwfqK^lAonn2@CYgR@L-Z#DbdOdp`_#Zr6f_uF( z!y1nWIhmtdC06cPb-b!lGL~dXUw|7A+YNgluu&O88HHQLr1WWq6rQ??3!EoS*|Dz-yUQdWz|`e3|R+lJefoLbOL?H-JxuE z@?4^pqaNZhWk6tHN?BQqi-p@ytLEn#xYYSe$xcF*pW?4AHcsYk8T=|ij|y&U?+Z7d z(5?F3cCSkAYSnY^?2l^whc0q*+O5sphvj&ZUj!;*DVkCD^s)XA)CuMJ$o7NvlJD=t zA{H^ZWuTZvo8bR;kwjHVyfkwgw??su%Q{2un#;v)Dmsvr-W2W7ox(7ZP1n?c?6HD8 z5y5$F;Qd_Pi4UW)@`d5r@DVX53Muqor(@B|UP^KkJv}t^v58$z@8_Hv_F)2FU`^An ziy`*!D;LTy(lU=uJG-xs3u=vFWZ#~_A90wyB=AK2o8h{wajSN9=o#ntSr)0ch6}fYK1-{O{|yc&++xkB@c)q@g;VRA)vW zl9+Y;oJ){N?rRttp&rE!rer3}BHp9~9KX)6-YzJgaL=VS=a=`o6 z6BkM1HKJAFWqDM>mX`#@LSDtCY6**OiPbLnR+QCpPasD(g@nBrRx~@;=~{bt#vamQ zV~Mv=SF>|PlT(I}KRq&rY+$C37`s#~jF#0gbrqrs_(aV{qSt1(jlgrgmXJ1<)8R3` zb~uaA#*I(ggvU~xxqoVArgnr}D&!6+TRZ+>T)R;+>xJ3R3WlZB>7Ck^BNPEH4!88( z!>i}FbGn|rANe-ezE4TbK2L7IYkXDG>QKz={T9LE5gM=B$+Kn(w;UQ-?jt4N%lOky zI+mYymD!ikL;X}YtwUl27cbt5OsEd|J}=9YHF9?7!PHrCY;RRx(04^cgiE1Igw(8S zB#n|&Mb{{2^-Rae-KfP)Rc8=IJ(=Eb%9U@R8`+&foUVspB~HLE8VeG}jY zUmTNLJ#Pj$!qKDZYWCgpE5UU^=Lkt(4||R1U;Shx$B@>D{$h(d5A!opoQe=i@PBSz zJl%B}@vKtfUE$LeUSXAjBVGj~?1t4@#$DzsD8IdRetZj@x%Jzsm@I~6$8xNu;YHgO zQfY*g5i@$72a!5FoDkscB9Q0=vn>0?v7S$9CHCua72*bE7bA)7mjcWgKae)yySe{f zIumm*`L-}cRXYj9??n=u@-oFK+x~(ow zQd?Ii;?m0Ca;kxF3?n?8sMZ0`#8W>*Effx;s4c-7=TL7lBwH4bEc;4g#=Qb~X-OFPip>_nJ#t;i%mYX7L?2 z4ca&EN;q4e$Qea__ScuIR4eyihZ;N#j<1vUY4hn+$qwD$4|@5SW!mS@`#a@GUS28i zmJbo;ULslx_M#Z)TXXkJAKJ!V(RZo{Bg%-cS_tzcza4f`X`_56Sd<_{9eiExOgaD5 zAR~z?nMz8IJT6R8LB!+s2QWa_E(bWJ8n}X$%hnXQ2S4Y6hjcA5tV?}I@}ASRm~m== zdL+REYw99$#0yYiK^KIph z#k%-CP9?s%Z#iAuL#p;t=d>LPMkR`?(s13ZmCa3!3zANrJdGJ8%*5+vBEP)ODy%hX z>#bPf>p1PDsa{%Y(oh=Wl+t?58kaLRTD~b)psL*_8iOVK?YFyLz%_rz3a>3@dHrWr zTRwDib4#H@E5UUI$E$~AHfQWKZ@8{e&_b&2s=XUi>n%W9X21XUh+zt891T`x#*%6shg z(H-B+K1^9{>fZY@D{an!?pmMgvD1wceQ^#HM04be2Ji*e!s#w!GHPA-L5O^HYDosP z=+Msft;hH$c2Z<@yZ-1ESvGUM?S&fcG1+?D<2l^(`0(t!-3zm1IvaTkDRMwWzHp<$ z`*TM~AB&z;O9=OS%gkqBu(y^qKLWdbNhiJ|siVIM95#5R&CBD&{j!X=5p1Yn1c)`C z=V^`x>YLmthdvQ}>;Q;I(x@FqI7WR)f0F^KFJ-u1?yb>Ot_Z*Z5o<~Pod=e%fmM;-aq!>r6e@+EYTJT1((BC32+0}TE0~pAl z{fy`BMyfoGshw?Vq!q%qggRtm+hn^RtFaDG;jy@w{p&n*(>ha)Enx z>hR${i#ZX)<*X`>n)yoqA}O#vkh2i+Xj*@tA`fDcR>!>TO36C{r6bryH#BIc@-bCH z=A{LS>sN1D%hd^Of2v6uP!|Ll-!|VDbu`VyvPA+^YLYs-|oR>wQrE!3nof!8a*- z{t%irk8%i){qDxR>U@h;)II>fNoZp6)FP1D98Ou;Pom-}L9>rL1YQi=fQC;Y=-~eJ zETtVx$M|hmdmcx20`VJ68UkFBm^w}1iDwY8VUN)b)0lVau_l-h>~L{RxencQr7X|& zEkWDGvA8pc5uLS5bKcL^YX%h+b)U`Y8CJK9oSQWC_oO*!>yG;&X-ZuoZ>L%D;odjO zRa0Ec(KyeT6KI;%(;genw}j){-^r5JUaWIBpyb9=-f@nzR9F8>a}glUCQ(<5xs(g2 z7t4Ke9nn{S6%uJwgW-KdwNUUNQ=`FnV&cnd_85l;C4?~R<#FDIDmt|#qkUk+cE#|# z)rj^Eko_x2<$^#DE}dZNe-+P?9z(7}#22OvynxNl&Pt3ZlBPZz6JiC;8S;(Wrn<@( zOHHUo1-12gYEh0oz|~b96J~zC`y5*^3au3Igj{yR<5;8f-0SZj(;VEnG)pfyyDlDY z2s%w^&@k9#b@Bv%>ENh8{Zd26X!a5A zXhfEKSYB*YQ$2W5<*^6*t^Oy*Zw9$fsu6b2Cyi<)>2&&Ht}7uBv6HoImGpwduQW#9 zqAb>i#_j+KrPV?`;E}`@J=q=7Y8@TF0#4Qsb4|-J^LU#~)uPG77e~i!JsUvmDsgWqW=lPhu5aKzU~4BFOS0Ko#YQ1z6B&eyVMA zJEroq8dmHPhhAQ#p@w@4gW@zL`mu(3UX@D*tWdq>G)N0|t;<#X^)S1`QS$OBGDY(f zKu&hl$0V8hEWlVZX?MJCtgou3M)3{Y!&-sp_I45hCwnI51($&dtxeHA#H{FY`UE&T zSu1Gj)ExNl57-THNV*5J2$)gU9MT50-ReD3I{RX$>4YnFF7Rm^=TlU*BrtVIKZutI zICO$TNjF=u<&3bkfm7yW;9(Tn;PQmkOqBtp?C@pNK?!gR?jsZ+kkxLzF-_TrXtX{Y zfyDnn$g{0ddCQ)(xXBV8o7X8@<8Xgdqp{d8)pi{GXRE6sK72WS^y8^jn6F_k|FN(w z=rG9!>Bq=5N;P{&c?^p0y}x`~{hokq3e4~$ki@sx1fba}IgMCUv}k#5bM=M`?(|-B zz$JZazpY&V`|MoRA-_s~wHJ5LL_PSOeE44!SuLG`0R`8t-X>L%%&L$%BRo!6$@B+KhO&)nc#ZJ2M*?)cyBsk;x-@Plf* zS2;Jg$wZ1uzJ8W`-lG*JPnl?HiWx~mFZVZGERLp2KFoO)8uwuELsMpOOn+aKGT|;R zB67wh1==}&;AfcXp^0gtx0OWD)&&i`!ObK|*bXloD<8UKkYtNz>D`1voIbg<^A2#pkwO!+~iL{Qk`ebtl2L|FL?1HOL)3 zm&SGL^rrwEK)N9zaKTF&cQ^*eps%^MAf~yUz0N&$#J7^HUUaj|x`7#sPS34S}LX} zdgEn&%i1vii41WtmG_H}%B67B`Gh>w*)vbE;Ri1kok;lwv!@0J0{slY8Oc9!l*YB_ zD<aE3q6lTv^$x>vwrEn%U6{L zljfJo2rs(O@o$gG1F%-npCYBwk&e2Z<#t&I2`gjTw#sez1m~zmwpWsYt^3Dth1p9o@)sp1buJ^>87)yg%=$ zUkl;FJjZ}t9iX$;f&UBplzPP13J+ zx4gMe+kwM(lb#GnI<*la0FBbJv=#r_B^E6&wxfqHHoq3WezmYb&CJ90D7Y}hZ1Rcz zkStlDv>2Q-zgFut${P7ZslSq1e>(zEpITam*Cd=;Iq^}1Cp$?r8C+>soMD6m?)ubT zphdQC?)4?9-yH*Vk8DKSQJy@T-O+lifxDZIbrS*(`F+Bbj2f&o~#@M zGhN||tS}JMN`BS2h)Zx}o`F;L5yiOjZS_*0=;^hCRSU4IwREM#YE-2yYk!DdmaZMR z8T(ld!@s-$Oh#@4oZaw1YrInyr9=#^loJ?Pe@++}Wg5lze)GZ#XatiN)`TLC-e(nv ziki8}(`=dgjCe&VF?xwOF4Rzw9RBem?D__6Wvzsu7!NnwDoJT_hg!ynT(yP@l4`s# zdglj1j(>uts-5~Q>tCI6?`U`AKC%A!;!sO+$daSevNLt%`q(rEHt{#gPzI?x8uZ-< zjY#%P{EdP#UkB@xDGN3i@P4o`Zt^n z1M1b|L_Hrtw*2)Eq@ zR@vOo2Y2AiMl63wyPo(@&b$!r8bE$M$@^zNpbxP=XJ})V^G-tP);WEyI2Ck0svfb8 z-c%Um?@8$KBxUnUjLcan1~_vT?C3L*UM1mRA3-bs{{VBLvN)9a1`j}^m%O=7mqF?I zzhby$x?zCDG51-ZSl*AQH~fR&#^5C&OkIU^Z|#kR|J;AkL=bYjg;{UDpnQbj4-)J7JS|@E@&?C7sE{Z~Kl*9OC^rW0;hQSfo_iizVZG z{ZlS)^hiBYs&6ZIZ*sZUTZN$A1#>Y{o7;dXAZ}M&mw9``BRe&8YXISk=Ch)Zbe*`L zQxv|of!^Lsrz8dQS((Dlgf@;wI3lHBwCESUyWK~FU!V%Uu6RwBdgC!!A|W0y>&e;I zFZIGZW=`ib#lea=scF539B;j>RXG!*h_X%$ut@^1~jKB0Bw}Mr4Ro z7lv!5Ull#nXK^%9fT{Yczmsl|Yx)XO*A;)ULg{@d*nQp8UT^P|hB12`4L4m^_kgMV zhR)D4D8Jfcp~_=_4i^p>D>Q46RQ+^~By*RL(kQvWyt(4aHe${Yyi0cF%INzG;mr_9D=2P^4F#*CGIH4wI%j+w!&IanS>QsFil2`?sm^ZdyeJ;=SWGU1 zJH3h6LGyG??M|_gx}PqQ$^!w~EQYIXQx{INe`?g+zw_y3_v;MDRsySnHQicu( zYWb(W4{i)W)dUN}K}!|Gw*t3=Ho!#SsMXuF@1iB-5c$<#&i&Nq+jjxL(ENCAJz{>p z*rD3KgYobrbH>D~voXZrnaCJ6YOj8K`fGhp8XTX(u6`Un5iri|r3&V!6!-dwl*tc3 zma%&t*bl0KxnH@WKry`hw!rR8c4x0o9?Pr)Y1$IHcyAbjXbi~n{kA1n|JAY6Tp%U# zE;kxMDn`%PIa6h;6gLLe-JkP=6UqSlvzgq2YpoD31B$_WEv)(>~iZ2!a*4fsj7wM zyQcPv@?F20n<7sod@6fbfOq4RG!(hu16pkoC~?$mUWYGj@8?1kQ=J9)V|T=cq%%Ns zd1ylKbf*vk=>c0?R=>eh%pQ0W`=kX@*cg)MfETjBy3i3EZOnkUFe|D!6+&0y{1bUI zTia)b_obnS+bXr;cR)e}+A!`aN)fOmnBVw2gC}1y7oMjrNw_2uWH}2OQ#e2E5yh0$ z;pQxnC8pKIJ3QrGSv-B;p7Fci5Db5-UubXE%gY2d208?>iz$a-t|mn;?;kbpzjiZU z90OnMXo@CZFsInR zq5GFvqsk#{C4-o1aaehwQ^F5c6p8Ia;&+Dl?Fqf9q#Ac7__3<&MsX<%9|_nd*7qC= zJ5MVHdImT&Q;{i*mIC!{nB%)P-geqm`?o7gH818IjLRet3HchMqLR>BCw$@GJ)crNB=z# zY36C9Zco%G_5G97K+pz*X6_m%p@Q}}{N^6a^3DXQ!6Fv$)XPy3xqw3@m(is4m^sD) z4Q5+@#YOmXj*GI4`*21P>@|QUR;(QaBQ7FvLgFuQ|alffB4qE55FtI>0 zq|NxkuZ*j-78s(t$D>z6*kyasj`Gb*Co8s9k|QAyK7Ypz zU(Ejr%AO&d3q@h*b%ZNv-l5t@!u9|vz6L00455v+KQo-{TnUzTb>{#M3}F+K1)K*$ zf{s-zoU8>%+xM&As}fYzNe7|r4L3T(4#hcJ!2mX$>)MDkd+}mw@VjB%Ev2vQ0WXBb zJ%ui$jiY*8P~AFXmH{OKk@e*#M54$kzj*nf2CNXO=EQ<{5~pBt@4k`)S&Hd`A(-lP zJu!ajEPHFVXZ#sawz3xKX6*U-db0-NyCit2o84Z;coJlZ>yDB4!n0qI!Q5g!A_cJD zR^|1nS3Y2*Slztyibl$Xj#)HbA-x~n3c4l|dmt&4`mZ4L2j}ko2AJ;SBqGbvQ+pUq z4MEC)Vs{`yi{vRbvA)YSpUXC8I8nc7op~1GDTCgz081Adv_|pW5_dQR@Zq-*Db3KE>GbXJEufK=5?|wF~wKD<&&pMb?mk)ag!ZOMb-iws)GWUc_mUQO7 zLa+aAfg-rfIp#eO3xUJmhrHV(sI?of{bqS>3hLz}Oiu?JN+0Pgg$2U6a` zbv1oDlH$iKO@1dR0K=|s^j;wwt8T%Er4=V$kAnpS_DZKTDz&FM&Tvh|0}y%invO`&i03+}01t z*x*i(<*%Q+IC;kiis{1x7O<q(N-!ypJAIfUsmBed2ZGET*s_j|5Kvu*4 zg#V^-PmmGQ-G?(zlo2O_|At|7-#V&%dXtNfk$+;LSbChA=1b03?`Y!EX=DEj30q|L zq9G%U(=At)6k5QTTR*g>FO8TSzt_ri8@Q2d2S(Xd#P?w6pGO3d{P&YulM|xgq=;jn z?latFUTB_E>bJIL3&g%RU57?k;%ml@pgj!|b>ErvAN8Er(!&}Cz|lKdw_p@|DLnKD zAK%-{U8=P`&avAa==O4Z>P>XlQD+}1w!FzNxuS7mG6c6q_FiVM)!p;)H?Y`)wvz9S zSpFa@cn6`jn}YXXCAd5s`}1wP>@@5$r|RFN7djrq5((P&Klp{ddU)W}e>sh>>7D;@ zB*2vZU)_ZN$2{mAt@A$-7W8`n?0?#IssCvwHM0}<#wUQ50g!9`;91A-$;-zT>m5(c0nFGmZp^KZ_v=T$#x_T}>8 zI&0J{0Xr;*U<>oPPOg4PGqJFR`Np`l{F?CPA*t+FC^vpcZEVH&8sHVmWBpa)uUE!_obc_I zS!sj-X99@TAe4^cM&k73?^Sxxmv!<;Wa3!H`O}P{Jwkl-4pr#8epB#GN7f6Bj^?p2 z+@NGrU(k&zHnET7maYy&FL|yCmnZQp&!K1?RdPvSCvm8 zu6CsoE%`^cuGo)m6JWtq@J$UNT9P4EYnGknZ47z)YUE99>}pH>>S(Ej_b%2@-aUov z7Fb@@Pi=cga0`AfZ&QBILl0ME7;%GSERBQdjnhhb&rNcSsYbRFp=OdT)vCE zWYalu#_3*_3z|85#reYBP~vM~oMX=78pM$90Ar&RiCWRNFdN*jmip|ZA@#qp+YK)C z$L#K}r(+c5?5~qwZOTLP#Yked7bx}2fv103cirio-Ss|VQ%qjyV&G0aTw2=EuQNYA zRvK$qz3)SjuH(4RunAs1w(^(`c+OsdnGLu)S&u#d*9nM>S=%o=$tDGMZgX;Au$))4 zN_cN?f&DS(;K1mq1$We^736(<7${$^BzjJDRsYFBA)UzyoIR0%=Y1fe;qXxeBge!- zcZDIc=<6{(_fcsD3%$_ALJqUit#y;JQ6ct_h*n>}3l-W%lOrkiWZ>T%wSMhm^xAUq z$ECqTU2|}Zyh4)reBnM!>}bWo0*U?F#a`xBXV3^m2hE66KR&)J!Q3E|%^5LJZ>W#v36Q@WpXe(;91es#>)UoP|6FQVo1ca=ZUd2UZna9{4~dpY?dK}X`gw| z#g5pOYetsWBg)g`$UtN@ZGk5r2X0EpfhTimcnYvW(8!Rkyax>(cIO3M)9m(C09M8S z1N^L*C0RcZ_fPvu2?0L6J#$$#fLL)oR@04_=nUIBfeAHpgg^L*ZN!UT`G#g(`K#nO z`O7X=Y~-(*spruOVCvBM&HOlai-Fyy@eCZfSyKrV7W_)h53rO*PXi)|S-ipQau+$`sC zrDYtn-C~KAOUKf8f$?v#185y$V87f>uIpX`@yrclLp_jI4mon+7MEwY$=p*<)2gm2 zl%Q|(tw?C7Jex$y8LgAYKIyxU=UT6V2CekudViQS&PZ02@DX{;%B?jy_uY;4<;W5T z|05*r^`vKP!F{KK2wOCStB}e73a=5c2 zzcxl-C2O{qvwKKZ2GAvGD}~@;#&}uPZkh~**=N=)mD+!J-pS^bTtXb z_uAZt*(r@Hbk1Zw6xJ}z~Xgn^?~t#o4D6>U)cUky?SZ#Qud=Niu8 zKF%s<-2dDba~Bx1fT1IQtL9~rB>13D9d~%dihZ7Y$mR)7+ebDRkDvf*vpd-j6dino z|Aw3))A&inma|zy^p(@cJ;pEwq&gXxN3(RTa=IKKWWCcwz*K9|;_XuUbn@hKC8?dwOn$Kt!;#aN4 z%Vh&+Yz25FRy^pt(fdm5sy&+}yLoSiB@t3AMx*1}%_a~xKPHs#l$1^$rWO&8Y8ztv zG$si;&qxvD7j~bIx1*{kfTu2zvG&ucvhBRvB@KmPbh`P26;~6%34ncNKAg?6F~YiT zC$=8V~7OYo>>q9bwN53iYx@k^w-{>(IbFH+b9<%&n z)wx9IzBpJk(AE#V`N+o?B+^>${28W-u}34dI9g%LD?nm*YQX#2y&l`H8vSi{cOa}e! zLkwGEMmI@UFJumqS$4%)QHbx}Zf|C*0Uno8!SaO9=Wuu)c`AwDa2Hb{%Itt%{5k_^ zfYq$o_M-8CCfIQ}|HgQb!PAqN-_XB4mqb6;y0p^j%rE;aSaYKIjO0Dc{2@CrD`P}(gU0bFmhn&kz#i_u&@6vU@X6<#|Kcp)Wi}RVE6(0D*$q*ziY0t$@v8b zb{27R-nc6G<}Z+W4Ug-y84mlTOUTcRU}0Ff*%GvIFIV!@7?R0Fh=)Y&gGr#ge>0xg(?c+C-4~-ijf5{TXzX0qDY)Y#X?F)H2g1TP z9k?n6eYGorEP7#>sMZDt1Udl>e8{^Bz%(Qt?b=uo=6j&5iCjUuvzI&JzitCo=QU1o z=6~->Evy)`6auZzf9pa*Y+^;e{Hf7D=-Rk@ALQtBGmcww7Hl5<2e4*BtRrSd!e@8%BL`6H?EI8`fm=Xw1Vr}gn` zsNyk-hhkI~k8n%;a%UY2#s~SBr9xi2UU)un(b-ykKKK|AO=gibBVz@uUY@lZwn3-C z;>6U*PaPG9Oh{~Ccu!O9!?8HL5dTDu4~mwYEF+~)Ay0R4JU<}zmlxo7<3fh;-NxN* z);|yEAX6){qig{LtCt z#Uq;|@XXDSE+}y{Id%0Pl>1kHE^w(PLOKL^&r`6XuVa-MEA22?A#d>}&NQ|i~GiNS~#V3`zA8)o+cjk&&l zCNxc6A9TxY4&c$cq%n_g(vR!)T>Fr?+P1@NtUGJGoIn+F67^}O(g6s!QA@I~1M9+h zEPQKgXw-#wX84J9@GV$e<>tAfT+aY5UVktUYc)U9appPM&CcS|(L>toQ$v(dDeu7a z&A_)-dg_6?Mtr4m4Y}S16-*Z)+DgzC)V6Z33+m_HcoJLHFjin_ec^iMamxb&!o1|7 z{)I$M(!+TNZBmfDnB5&-gdwS~vxP}5BT@tvrAM9h2#M&Dy1~LuOU>=jsg)vDDXc&c zyP!m}5P^MHFN{3ViriVFZzqfh*VFeRcgpMZQU^}`a3d<$OEO)ZK^Q5VvY!ipU`r(u-2u*) zRj6bMZIprB+hV^!&B*BNgVSii_us$g0%Ppl#?IK>drm&OlXjroKPDyy@^8~;yUodN)s!2&xoI9GlbUIEq zNB)OLRufl0jR6L78Ri2|#@IIskrd4>EgnUQg!=n!J3{9D+{SG&^(jt$b{$7c%!@pW ze}ej%Ho>JpPJ4-kUbP^HT-vftfA_E2xmKZUX}RGMnuoZ4s70|qNs8nn4wh=ybS_zg zCLJ~z*(!6v*vNHyZ1|dP^Xg>i6L>wFgq%)ew^x_98g#WkkgS;~QB0x;iHqNn$yqYX(bDtAD- z&V>5!adNPXpWSvxA@D%H4;Ootmd5iGKy{da;IA;J4VHRPrgC%p=|z@lla>Ah5lSbl z!G99?Rg(KIhEEwxqcv;@n*5a^|FfCR8{{$2M={C!F!6wdMpxoGcq+KGEdCz%GunM! z+?yb+xNowAtv0okyTRxFQ3BR&psfV9husw%$Rl*4mKkyC8M=@`3i#Z;9iRKji`}R- zaxCkJ5j+yx)&MN?rQDkO44h^MKaY`^fMXyJl%j=LvMWx0#C@~>!E(Vo+U)v|$q59R z+A@|VG`{>4SOq3CE!93m*{|e_n~4_l%&g-y^um%RbK;YSMaa-&6kJ68%j>NMf915vCFyb`>I0l6k^y=097%dL z5-vC~)2QcgaDpzZ4Pjj+IluUYzH}+{0Vt`t1a9$iYOgMg3QTO&{=)sipy*@o_dOij zwTK>}&>xcp=a=Eaf*40AzUo#0AoUXQ2@OjC{@=75y*IjULqR#Vph_qEZ5yC$lc5ru z6vgQAO>4wWf3Uf!<+>wSlL%LpH6ohzimqWHvUbt{1Sy~!@KK+wSTfk*)vI8NWEeh# z3>O7TkP)aQ-oM7qZ+sNM?(2?3E! zA8t>FD|&N*0#fbRoJMPcT#gvzRsjQsJ#i&es$!?ar!RKcDh=O`_@$^P#J*z-i$MWV(BlnXM`eM)XAI^LQHxJg6O(K|2j4kl%6$?77Aj1uN zhUR0D+t+&ZnvK(77eHikX@pCyGz(yX=CkH#M^2+y{%olrLuf(d)epp-g5YP1Y=KHi25ATs1X2`Z) zue+@g-$yz#U30P0+etGkf8%0->FZc}TL0*vA0me{-y&=<3(Y}?vL3N}qs_SsLZzr{ ztrs6q-d7_Vm~NN95n)7IJn|;GiIJH}a}VEfSLRI08o|}T0`;nx-Q0@(X!tsN`sAJ= z;^?U<5aoXh0Jp=ptj>NKB3E28B|z$JEa8*{+bCGyO5mjx`rY!&Ew_>d;UiT*j7f~{ z9KIYyIHjw#RGFoL7-$%1L*gnsjd9d6YGeRbfur55SceAu6w*YscS=wq-I-8w-$0%P zlTGEokk7QBY}lmOiP{A}+Ti3+65b+z(rI8R7f-ho-z7YCX-H@VMzTqVGQob0@DFoip18F;AgGrv+~^EavU zPd%YW=-WgKA30<2^W&HVXh#38ger5P0fErYmT^xObtGOuQctxy5RO)aoNtcLt{=x* zP14|BIOcZjaSnK%KAyZG&5w2U-RQxortK>>Shy5sj znW7-eX4v=!IBemHE$;}NkgT+WU(qHI2a=2F$y)?rBNV>jIN!4wQABLwTAqbp;$3&2#hmKLN6?05!49XZdyzeSsQH$pIg z51ZPSDg(txN5hLaQtie-B_Gb@-L`K_x5}u*KGR+!hX}n!PKHH?5X5(r`x*oX_=PTQ zQ~0XH7{5BE4zyh5i*qH3aw(A<} zT^0t~N(xZF&~7)Ed&!%|^I0`O8wymek_5(HVeQ_~-sKWYhaYbdWhBU%{wZ&3XygCN ze*Ae|97?8d9io*i37c1MGpsK~jV~z{p4=wYH&$1iYFug>mmPZo>&T61oTL`Yb5Ysu zr#wM+geN4(YPf7xIB8JJ_$fo=o!NNpfMqv0q2 zSKnl%tEz%nV&xFvBy$ulUTWj&J$fpjVxyDSxN-%M5H@5rwTLmz2Kqe zPj|)f6Fl<$uPU`{NT)np3BjV=@Gr!j#^oJBRy?a$E)P+HlLt$YG0V$`CN}W&sr^F| zV&C)q3L!82Zn-ITg+!%a8SrXaXQ&>3&jBsRL~tm1vZoJiHc79l7b&vY>1ati>?_q~ zw9oRK%Kd`qiY6D0(Jm}C=>v>y)DZ_;)eK3q(3b>I11S9gpeS)QM^+_`Zt4s5{A>4z z(7{mdy!d%AvCc5Agmk=pGi$m4m`sK^81ZJ)4d`%VrygvZ7fw1|u&v3(57OngD4*?L-DYpC=IO<0!tS+)uvkFp1 zZQEobJKPdC2697sKo0RtW9y>h%kg_44Xm^!7#bte9wqP{NqLFJ?SJ5xm6Q2myTbV^ znJo~3RRJ{&NbSA--gCX~3PwOb8gn>&06Gr3Q20HzRgb>O;nUut&ufEsvZj$XW6p5- z!3w@Pnzre#fmvXAgvyM5Q-`(plDf&c#}!QWKe#t3`;P_%x|8JbS>LyNhSl9i_+`?$ z4rmDqli%11;|z=!z{m^`rU+&nW=XVYKM=-r1xrT0h4X=P!S#fm(N;SnBC>ScJ5ba@4%op{`*Ld{m&-o|3}d)ol*kC z8#_%MEr4Vlw@ybgee?2!@i1^m26wF^Si~3NjITu$RAZUo34zTC%d5ANxO#g?$HD+r@Z3T-qXQW zWT}?Q8zUy##>^!G>UUaD0nmH!mM3YS$9Dj-0nW zwwyTgLiRK=gsqu83oRjGMJ_B*NBGLd!Y3a@_G|T!+z`pQ4*h){;`_u%6bMBNq?0;9 z{Zd&0(!y^<;&li<0bWc7w(Z6;n^ksx1HJf`<8R3b_0obSq^~}Y-+a5p5mg|@?8y&c ze5Ew)$xMnGz-1h$Ir)WrUD$3vKxb|=m~l&A{mc3iM^!h4D$*WRhCmC6WMhL+X{?no z@U*(Jp>R79uz1Kz;u6wzQ}|9Sd6D{YK|gM5rk7V*u{t!^JB{7NmrQJwbQauHOC*d$ zle6B)7fM==w~k7>KWOwoV&9V$WZ;|5({j^0lR>9P)tnHQPLj(rSGq}?vB;T>`asPB zeIx@UBsejuttSF!b{Dip_%LC&7~lVaKs_9>qWWC(93<^5^~g6_HP0X}&l>b8&(*O% zeR=D%hR$%_ZD$}hh!nbri!zzNk1&^n_qTbhPntG8G!_0)uEtO${(!vZQkeabCCB>P z*Um?}iiZz-o30~vE^z`ujN0qTSK|z{Q6a_(~cT`Z2BE1Hr3IZZ3Dpdgy=^#x?=!le1 zq(}?B6GA5tk~;zY&N;tw|M#xD)?F(L0@<^(_slzQd7fux3ue1r0h0KF8uptaJ2dne zPR>t`QL4ngRQG3JW?_IH22%Mh1P2Y-|Cs`!d2w_FDC)1|M0)`}J(-lqSaN)sxMDdF! z0>eTq6%HK>5mANDV0(#aaK*zHNuO^`g)xcj!~KxfZ4yu?G7lu+`}{};4IKH z@)({uX7RJ`Qa-m$znfRQesg~0>1a&y)xZ~A9OLymQ11jEtZ^TVqJA#XQv1P!a|wl& zjd`Q;qZMxGxy1f{iQr?ZEX2(a(lcVzW}f&9m2^(a8yUv3-*Sz1ebb9|lbV~Y>xFA~V+h$9BJAs5dV=(2Al2N?iX0_0P)fzUKj`#T=R+X(F0qnD@A8zS3-;pl6fbYSU27oFIf zV+ZBAz`iC+bM99HG>BRd5?}v)hZZ7w>BHLe;!D$NO`FMYih}sZh*DRVtDmXS%O=OlntG(K17Z{8s+3vPsHIj)3^wYz6BHyY} zL#1Y105xzrLARYsW3v^X6#9KBEde31?iO3dJ+Qh1fW4hn?}LsamJY8TN-9(le;!{% zKnLz1enZFKZ&7{|{VIRd)oK_sZ-15IkFUvNuYL<%1IpEx0n!BY78_B1jb2 zdRTdxxpC5TvcWt)i3H*Lu=8Glo}%Z2&F+LP);AxTi&k$C=Q?}g8+c~gvjDn(4s2A? zd7(+FUrZlxXYYL6!B~D99O{v<79!GkG1J_jb4JdF9jD~C&NcMQXAcKcWg-j+@Kw?&sDWQzcS~9M zChkWnBI~GZX2vei{hJgbWOhVc_tXDOg}R`1$C^;`z;g=kVYc6_>`ZZkBabnU+iz4) zAExc8QxIKibj|<7%3=^r;eGufr^T{iFm{f_+oXd2xpQP#!K<#)J0>Pkh_1A_;Ak&R zDT~6(JS|AJ#MvHAQH!JeIm=57J$IQxS1t;=%=A|jZ8y=zzkYqcH!Y^lmT&!g67;uF zeO2HN^AQy#<;#shQ`A9M1d1j`B}w;Iecpc0_!_MQc6SyS%G>P@Mcc+eNV7 z{{3jOaEaSR>p_kk*7-fYs-lWTw5K31os_3KV>=26tW5ZNCPWqMvRE_%#`BOuL0>#< z=o{sML{D|%$W3FOGDwc>b%WKSCLtMhrSYllYPZrdtjgd~z(c~@cdIS@t={nm6Oqb1 ziMR)4?tfCdfBE9=H6g_!=_ts{r&q!-PwM?}g3!%{-)Vc`K49#gJx^AG6h*kT?&RqA zJ*V{iWcBE?gHu%JeBA>+t3lu9j17tDZpl#!*!#rASE@gPW>r<{w$=`}1W_h_QhImq zHrPDfF{?x(3)_3i9j;E}2dSd)*UX`q4IyXz`-otkDf|5V@a&tn>NzKFG73alDtlhu z{6<@mkw0ns$Omk**fjAY+{>Oi5Ie$IZFAT$@~Cm=!|BSRD+ByEUx6%JxT$njM=Sw% zaS{F6Pz&+c!(UobB}DZfC6;=eHMvPOT4u_2r?sQ$Y7R|1U<4hsn#d>WR~7E57#yub z9R0EdRofXv)-|5ykh!$%sxI;LPv#V9tNe*bj;u z(1Uoi+iX}XS9%vMd}LgxOc^BSC-AOhen+CL+{S;nS`sz7GwoOM)-&+D|DayJi%xj(2I|`$j}@?_U>W<-KNrT8=G>!Hv2%8I zg-!-UL^D@Lis#@_wDk1!0&Yr|qx{d@zB_Q~==Z_}N$nR*kgs3AX6~`Ys8@Spz4sPs zaS2N3tyQ=mc4pkNyY8|q>F7Mp8on;BAA{wyvF<7bfg0!&qEY6^`cU0Pb_b4a$? z=;lWCTR1YhEg!K!3tsV=0*qf4Cm0sR_iMe69Md{?=|*1oj@9Ww4Y4FaX^D|fZsQ`n zQ630xOK)!xF;4%SfydvN{9lY3F5}H9*Hm7o{&;xv%LZ5(=>^MdJJOiAlHWrm!03Kf zIy56yYyMbfaI3z142zm}rsCX86Z1wbT*Yl5k9#Ps0_&_71n;J&#ReFvy_5MlFL0n( zH8WXIYg}`g{hB>-=tE_Kjn&&DSu$b%S%~Dq@YXuJm5%7!sc@68OvCU=Vk?(t za?>!E&vI93k|O9KydgwA+jDN(BAP`$&JNV1*EKZwBqV4dlN@J5KtDJ8TSTvxc0XQo zDuGAIBc6xFplF!9K5uPq;z#ssNWWPbTR*tI-!Pt=3+IA5j$)g)bKH$^>guWvV<`w!6eIl^yf zP)}N>zG57}C}^5|y?Glvv0-pGLJ;au>4#mR_S!q?`AN|K%Wzv9%z+rwMX9U2Q#DMW zFU+K;oh=mVP81%6w)kFUbeKY81N+;F*1OoBJ4bMFpk zv>gerFwk)qR200ZnH)&l!|GsX;iXC;z;#cK;~rXk;zsyNQM|+=Lv$OX_3r^@qCsm_}L&0b~uCB=PYa14`K+07A)PMK8^(=*dL=WE7oGM^Qc$2yoTsMQ3}K= zL+Hc-teqWYtW~CJ5^fMLf5A}F^3lrM$6*Az)3%q$#JM?%eT7IM!ga#?6hKXFP~N*QPjvV?XJT%}i!bgu5G>J?O!X z={UOjdRnMHi79B>c42Ha0)GvEj6L_sQ~X6G!O&ytd2lI(*ClOU^Ys!z-q%JX3}KH- zM7b=j;)rCG%Ujy??1_&hxeVlHE!eWf6y+;YPb7t@UJ4 z>?KQ(2XuDcI{z8uQ<&-ZcFBR)6ge?U@7H*0HjS%WFdZW#++74eQ7D5?N50Y@V%Jyb zp=nYSdPz@*yV^tpX#U>TpcQ&Z`aDP8di&_xLn!QAe-_$nQR|A)<{rx6CPL*BS$=7S zQq2L8|E!WJYVz2tAkNk-C|O{9R&fG+lfQ$juG)zLSKnag+(Z*3A9DG(up$cSOl9B? zX(oa?U<+y}VzM4|P;o;fxo^H0_>DgaJ`N|s2APqIe|**^LUtkilT8<0@1lY2wId9XG3koriDC;=8K>YHOBKB-PNC z3194p=1KGXJf6p~TM;4ga+sWb7$bmvCrJb*-!}vy9CHhU`|cQ_S{2O{&0;$jeoE*( z{d&pkKDKiialVhYPxnkYPt;xB?euVvs5$h*J^gJC-}&cC;n14HYfuEW8`)w|IVos4$Elq4oJ8E14 z4gw5TbF#auxTa^7;Ndvi4_j7{IbB{_dMD@lN&kgQtBMfXf!MQ2=~BdJ|7Kn1*w7M2 zvglrUnQ#zAFx3=uN}DGcK}X_kEON%V6q1&b!9*(P(J7Xz+!g~XSUa7z(%x%Hy`^il zDiuvjXUm!Vt2V@C6WAYkvET&ozxOs1<9zMZymu82xwaB@RGP3L1zkub3-VgX-B9C1 zHM3p}tnLgddWke=sP_4&j*8K0{Pds$%uPvNX`Sz@scVbAU!VEjN19#+4y?ew_6|=B zqccX8PXZ&YgefOYK#eRbM#6OSmex-zb1Vsx8ZPDun8NKGkU&c?U z`I87t4nDz2fE^x~iq#)3*oUQT)bCMk1v5#QCa-Ug)TJuz-!BTe!i4Xa%1Y zOIx_Rx}$-~{qu5Kkzm`YlPb`*g5OZ0(-Avm@5 zEegqqxOn-j^-#ygzNg=rw@wOCtEJOhn`k>z3H|N;ZrN+!8FAVhDx9Xf##T$M8Tf-d zYuOQ5XqR?a6K));(F%6a1Rg6*_FF**uWZ9)VYq`eLr ztNiJG$d5EZs6nLNzPe3sp6o_8Yr18T+>l?tXQ^yJUU-9*vI}RAk|uk+rQGR#;h!75 z>tluZ!GHPZ#vpjR6ogjn7!oUCb=y>iQdo$*=84uadqcY{p4HW`s$|UQev{^s-D2>& zuSTsY&M2UCktpwpkHVlLbwY^NR=frEW+LY+CA6t8#YtcJ-NNpb!?IGW%lR-<&tx~8 zUK;ts47jlp1FPX*tN7f)zJ3*k1PPe>BW=DOxxqRX(idEhl9aK1*T98nN$}vWXVWh3 zq=VM)L8I^X7-dw1$~TQrx?cLnodhc7rhQ1V}gHnYx*F8qI7Uri*iWV zkQd9uAnfwLHvsPo?AvsIfE7?QOp_ER+)iCP*qi3skegZ0Hdv;&rH=@M8*bF665iQJ`MW1iBOzxk2jpbYlB;w5=QP~_ z&fvh{ATI@!Z?MDXRGxoMN%jSzb3zCWtNmPJB3J&+YuvxRIoXQRcr;PGB3Lf4=u$bd-1y zCF=jff#2^14b9pU=c|g?Kb3jbrbpXgtl|+4eydD)>XbRq;H_e7MF(~2BtQ9M`R%am zku?!4ac`1+iDxt-IB)!!#{6#TA@+e2%j}aq{pxvOqKFmzWM1oIE2GT6V`}QKIri07 zeP7|wP|b^Q`Ne06wA0M7_ueb8Ffb72r+Yj)Zj+z{!&2XlRR;@@)xbk(mseJLQ+ttp zatd#K$%BJ~t)5sUdlehjoT)k3n!ueH+1$x&s4f|=o2G@Nbt2`KP(SSo#@EZj1sp0~ z9xT(}FJy~5IAF6M>T+Mhdd++CNcK?WbwxkY*+p)UWn)dk48B~IZknyS$F#oFxhL`X zdAl2rHM%wd`U5e0c@wsWsn!p&V?#VrIy`S-n5u$#dsnXKtNMKxi13PdgPdormcg^- zVZz`tDUWo576~=m+itA8n6>rs5prjXFZ529If+=LEI%Cth19faA9bGj(Vj5OSaZXq z{3G|8Dmf?WDQaTridz#uvV0{-pZ`oqT2p>Hk zi1Sq2Tl962#TB{{hOzB%RJDuT>4crHP;7eDf@_Y?=r3NH;(9-i(8kE-DAJWXr9Jb? zO$$MnKra+d*d)K5HsZt@)<|w~&!0u;%1tZnjY27A+SVHVIylvwaK9l|7im(D4vi@@ zrAtanrF=SB`4#NzKg>%u6Mf04j$9yHp})-9BlJxbn1X?*#fwDoERU6rqI29@_#g>T z71!cr+}{*->F@bHD)Sq7HsU*Y&VE~wX@81jt(Wm!X%Yf8{k z>ij7^9WtWtnr(X*C4e_Fff&vh!3Z|712&OV7MYHV`?t@#96?!#Ao{|_Q}*|wy5x*R zpFjdneNIY~!_QCr!SNI$yzcoxz7&dvh+l{yE-z%-Q zo0-mz3kZ*yVw?8M3$utlPSxdHjaysJ8_UqKmfT9CvR2?p;u4gWy3;8nWGAw0Z{24OTf($_|}q?KpLH z)r1Us=32A>&6`Biow(T8*3EupfZjmBbK<^y{rare{yOmfxfH=Iy7%spgfu{u&A<`U z7xK|u!V+ztWD%hP8hi?8&rqajN6cjh2RD7{dH5^C`nR-z)4VIFdQMs3(;gam@_<`D zqz)gNAdzgrKXT{11B)h>)~+fU#eqM*nkP%UdWsfXvj+u*6au^Pr)h!`91Du8 ziKFT!k+d=qP${>C4dhfB=u#spGo5yP{H)b}SRinz+owu~V!V9)QW`>VplEzlu(S}D z_#7>}x84|aZsCsmqSVIWo|+t_6q7_B^6C8LcTZ~=$KPj|B$S!r->Thxn%)sfV6}U6 z$ZOUKi{NYmtt5r_)@`s?Ed;va#@E(p$*^xX*Bk5}rmGc3SnBgXJ%opg^O43Wen0&o zZ@lpnf~)Bx-wlJKj5g$TFz@Yqy_9g}i#tEol-PQ0y-aqL-1#Y@1EJLTgEQigp`dNm zkzJF7FoT%yRT@R@{v=YUF%i=;%t!ov7UCNwmZTV9^c zbwnBxl)^ToY-#brEn?TEe@+=dn(}A0s9t8>YMc*?b$)qC;upE`Pkx!V%#+Kqqs2>4 zxw|<=r~-VXJe?Tf`pu8v`11hF!l=p`fATxFl2#)Tqf)Cej(Izg8ojQEo`m;=nRt15 z(+zSzf|p)S&$mED((uqGc^OhuCylA2HzM&LK178%!=Cg*0SaGp%~n$K`YJoXEF&W$ zl|OLU&Gd<9ogZEy&|HiA(OJ3#L#N`|-ODqRX8@58Kha&eI!UY! zj^ycTAa)fCGyW<(G)hU)APR6Gqb(PRDI?OlTF}o_lgCrzh#IJnSZshK3vf4l{GwbU zL$TM@=I;Fh4^#9p6#e|LP^0%XJ0pj0o|c-+1V(HQk+Ib;$*;hUmCA7O-nOZM*--0Q zUVRn@i}|*c_PT-z{9ls4<`7^y;IDztxJHCJ@6G_9H?)P7owL^HF>Vp_P23skjjE6% zs}abyU0B$Caj!{2>@I z0)Taw$?+4UT7eEDz`In!^H*iOufw(k<6xD%P$46yL1VO)(VeA)HkP$Uk}~gWs*IrDrzf_ zkyQY7;WGtk?=?LBpm0*ySEx5WlxP^l=K0s23b+9{+ob11Bhe|IHP*5ICNJ)`rK*mR zx#=Es3;6E@UW2bfaSfJ_rF~bm$mnV0A6cwbJ_L4S_$MOB|xBbI=PwtbV85QoGZr=|#1AioPw=LypUAW%isZ1k?J7&2; zt!pAX`+-^l5LYsLD@{2QhuoR0teUWU* z6hNcFQ%Kti-k=i8`j3e=YmcvtGThx28AJ+H?Qb6Xfxh_`0)FE%jB+rZuKDM+wBcQ z&X`lm8uUN24iP2O{W=CX>IB;EYakV=w^@##p_Sb|c1fRSl`Z|rWtUf6P>}dcnnSC`#(4j}~$PQI|uMI&dzdto$sXVS69`YHBilen^Vu1)N+zjsVX<01~IeDyF!D5)=i1 z2a3~q=;!WxzE!aFYUrg5PCy7IQ4iU{pccI47mv86TleZz>HsEdGKSX69ROx@Oc|P} zNf}hMx_|GR+oD&yeqGZ}0+^nZ5U=**wzo>7Xb@pucF(($pfBJ_y?E6Yl3#&6e#Ce%D`iXf)u7rPdxH~$4@HN^q39n9;h6Wm3?Ps@!@_lV00njHrpDI3 zWj#n?C3bS_7o-d~ep2bo*bFFryi#7Db2tq`|1@?l)7fQt_^xKa4*A2>TN=Zn60h@c zWS`oQ&G}zex*hvMO?8LpuX+mN=e>0)C@k)Om!S**DQ@%8x>IM>_!))$b*@9foPGb@ z8PW4NW`0VSR3B7Yq7JNN7UZss#t<6Ce~NFR_d)`@WztFI4KK~k0?1$p$K$e&GuJOhsAF$hrkJAnJ zEi5=cWn}2uN>=(SdIR377Pp0jPkJ1-{cjWaL7sGV**iGCniw4% z=8tJEe+`Z6)+v>z*)`EZ4;fVF?K_^wS(ufPiuu-dp@)6;?2LZGG#0Wy)@^^$pDbgF z5ZNj$^E3{w0e`pulIR}6R_5Z&`6dCnS#K|+>ND%c8l(P2UpO;aTh|+q?$V9g5`5EtbF;8`o;LDE{h35tz|3vWCE6k-;$l3MmCc;Zt7ha2@p=EmQGSEEK?KNg z_4Cz%l>AjfLUE;b4I>N0>CE!?8h=0QCm`??SBjIjx3>$OKdpItlD2k_@1qEkzs-*J~gc<_bp_1Zv8!KZ5YJ7RFEED-`Q<{RIf`0Dbj ziPOk9nJOSXHWmwei>_gQ#&uiq3@l_p??}75s|GohO0B!3-C%> zVjK(y9(!!6BOZKqlScdW9;|8ewvC5C&Aw&9m(X7O<^j0d?alSbZ5jT#CnS)i`B!<9 zLK5VJUJISg)N;wt)6!PbxROi8)S{m=Yw}s+Qy;#9zVDcey17|#+5ufrw{5RMZSXHr zZwy@Iw8Fe~u-|1!?K5 zcYu9CMcbvi9-N8?3_N~5fnu;6Iyi|x*)a(VyXf5x{_aBfBfSO}W}iqQ+4#GIVJmI* z&6h{-R31W*YAL@(q06P-$vx0%!+NPx)5KYb-VSiB`oxguvM5ZM zsEUe?dOebSr;hr)mX7->lq)&hvhxb^0|>lebt)x~6cO{5gab>E4B3^YyE)fQ-J~Dy zt*z7JUWT@1U79OO(lI$;e|OsLTe)K@FvR0QE2Hfu&`!T-t{ZBl+ILk&g}hEvh^-_5B~dV>xI3ye7XXgXLNxeaIUJji^J!-Q9Q1 ztJK~bc45YTn}9AsuoMY0&)?782ke=c(Z(4%4Rce6QrXSI8rC%yrswoayE=Qe63FGh zd|)bO)lDZR5Yo)?<@3xT@-ZSA*}3BwyC;!2zGG&&SHb9JI5mE3NVuq$=weXMzJ49) z_5P-|b}LKWbR?_JJvtEO{l;KrlRkgk^5HHJT%Gg< z+D!qCr|VD%RzpF@TPUd|>4Qz1r6?-E?0S_oVIRt7h=D+#%OH-Iu@vHVz25DXf}|Qi zaU4-C$xK?^)^j8ALYL)$>I%$ZZGj_MNHME_*7xrk>Nr9hf?`iZpjl4ATgqO+1T0&- z1Tz5y%=0FY=%-v^QCP>moj;WrSGSfE61+kFR}0XKP>z849L^6*4^`EokX*I5yoTHY z#u0j*<}E2l@?!OP#B})7`Y^liW+|ffGDD*tyQn&-=(1Ns0r!%igun(Fxu?px^3G>Q zyL~L_Ncp`!q0HG7*{RTZL#M6z`RObh8T4J;x)a+8cd+>Y0NAEcAF}}%DhnOEhfCB7 zVFDabD=}9NowFk4gkCjJcx16PfK>^+7cVlEm6aJ4drRT*TXG7DrNM3KyqAgK?gg}e zhg{yesQGhL__kL=;2!BF>#NOjn{NM8;1fQkj1=8aew=dfIO8S`cW~`B|8@>X8@p^tPXkhKBSvd^P#aHyp%ZZb;tM}` zhOI679rJ~5|Hc>E{TIFv+%cXB!ilT?A(oIU5?njoQK(g)U8Q-6v}fT*;{bXBnJENS zjoyk+OpIu^ZMEtxd2oD_ugUSDv?+n1c(FDDU_B~&69$h)m<$%rFf#t)b4%;E(HS)T zR4q$}FuCO^DA|F-4g(NP^n@QdXjFYKln>gA!0;2XZHPd}`mvk3_49ns2sSc_@wYR& zD_cd8%MNnQ$hbI-W^c0hKY<%2Hc3)g>Mv7$*VxENOtLjRVkFyjsL z*s)Q38lH8Y-qLX_;>#DIrD+JC3e-aq+us+Ni*S_nxnbJS1`tv}&I_8K zDFRjPKI{w5%{#>fhCQJ^;c+nD{f)RQm#&m(6Eb=5R; z8q*WKq6%x*>4G?za>kX>Hr=0j9QZj&<$vZHPYk4bd6v9;yF#DZCM^9TRk*dQIo&~S zNUxCz1oE!*r@L^{SbUW#ejivXAfJTLtY{mq}&j2UcYaeQ-cje#|MYAmIb|WaRzF#C$0951@c6((F@|P;a zGnEGygx^qh%|HosAV=ZEjk4kt04~z^$Mc<6S~4n#{<4{PDseHlXvq%1!WuB1V7ylN z+dN_7t*h4nd05FMLzwz+hc;5;(^Guz+qpV>MxJ@ z$AC(x!wh;n*o1Mmj_-%9Tdou#z3Tt#VdA{Os_=-gt~h1fUJ4%c9z8#A6$wGZNWD{zjG zqO)Y{*w|^OBZTf)*GbNsQE7_vVg#bc8YJ$5_YO#8tCN)0M*$;oLQeu_wmJc*>k4I$ z4n43NMy)1v{er~loA1OY6~ilmke8i$K)E^SowxzRZ<<;DvlA)nf2`xDxC4{{{-9cexKeO)2cyq!R2wWchFb890&yPTo!;6oGteM#>W-y zVMq_Hxpn8%py~Gif#*uk)62OvJvk1#FCPa8TJ&+g>&57`f{SgeR;u5_O4L^X86aZ( zgyUHkLJs0M!hn7%1>*yU)-ECDE>9W@`k!z`LGmisEyUWkLUzo}^X{c`IoVhPm##R1_@I|WYP zH+IXEu;lxgq68N2Nr0jQ0F(!p_dBV-E$)Eo15f*aZHDL?!f@e@} zO~a4#WCv6qUPR!t3j}RDpP`A_>Ax9Xo&!_`HDE#HJXX&`g6`n7WR6fAoFBG{OPXNr z%aJdBE!%|wW~p%@nCv4t#uD<$9+=KMg{35?v`0@FPq-BTFIxlDV!I{61%TlZ(q-V* zxrH|a`C&$(U~Gy}lf19%N+~RB5kV0lM07G&IHR4>lj;FiYY2&?6wcExP*HN!jjgRD zD+kvmia8kL1b`Y4FSk`VB7-&qswMYxo-zPWU+%Ts*VngDo9{dQF1^1|M3PQrBcaG9 zh#5fGH1Id=Nl@euGXk)?!WX?9E19z!&A~_Z4o>QzJMAQ}6gh>Q!61zTC85y{6d}tP z^6c4Uj=s(MuePjG=@uLE{`759lPO3& z+g$dJ5Zx}vm51{QKr9g@{M_NnZ*GPM-#c|oGV zwf}d_!uvKrg{AA|;H@5VCwBnoA(-*rboX!X9EjlFN_!3HIjAl0 z63!6ZBRYKtNiqsSx8oS>&gg(3qDMaii-Jk=qFY^*U1@5XlFAFhgdDt@oT*(n2 zt_8KsE?3cwk6VI?2#&UWI!H@*y8b1~1ypmb>FL~%pg&l9X}mI^23vl|m1fSJp(ef6 zWkCxFk;o54h=O5Z8YOX=WVz>no5_?o1$l7-wDnX@Aj z87RF15n$=(_5cchrOB=x+T3|&Sbk?iT+lLHfkMgEN~zlkUa<_f zu~`X9@yP=`J7CEUMMc+7aI6!s84ne#Q+pwBYj`33F(CP`%J-yOQg=bJg*T-$eraRFHu(r}|~pHZfl8P>914TkN0-K}kD> zryAU+=^^!>_Bfv&%#~AfVtyy$)B|c?YYv~`@nJa2z)7QH$@T5xrH1|?GDy$haA@i1 zmg~-z8Gs6N`VqKj#(gz4P&}Pu0C-k;V;0@8Lt$Vl6{N2OiBqFg?@YGt$(U@&#y9G-VYi^55JcK-u;`_BTDpbve-Y+tfw1sd0zL(gLaL413q5f z#^$N%uNMIzzX47-kfaARPMX!PKU>*hPq1##>{`H*E^%v26QG8YT;=%Cgh2rA21|eF z=;?W$5a*XUoJW5hcnk*M`t|E_?#youPlzl0r1@h-@=fD=Q1IiVbELh;fv5sZFHqTl z6<-Yw*p*YzYAV#KQymBd__Yg9UCzF;6jeo{=1}^=1dyTSx(Y8>^YF5%9DQD|{ik@p z{wky&Fd~2eNAMfiHAdqAQVFggq0}265Bd7~Ujk|yk}0j6*VHc03s!P49HzV@2+Od9 zcz*8jH>MsG09NoC9D_d;fWr+=ne}GkhWf8yDFAMcw|OgAf6$k~A!W2d)*SOvTAXZ% z(&W($U)z`^C!1DKQ02sGEjohT;_nTu;i&(-2hs1y(g7&kf%h0sYgpNhYsmd)wE=!< zP48W-C(ERv=;a7_MNB+4Rqg?;`x&Xe&^Q*~LvlETnBbup&03?{$ty;FY1A>{= z^y{mA4vL6Nt>-eVyiqV+%Q$d^QD5<(&s>Vda%fjq%E4%<(-lAHTHTSr6O*XtJYHbs zoF>2#z}y)q2S6XO{NY!F+$`emSG6_f^8iSs0xCfJ5L+E;6O~-KOG7rBcVNU3}OxayKs|HAjv<@=zVr8h;`859|hYLxe&Oz z{;lK^G5{YM6mU?OpCF{Q;p6Yp1z%Qp07wI*5k*heG{HiOzV0v58V#Vo>M*;>QZ^ZZ z2ZX!LjmfJwUe+9p+FbWN3sMb&$o5u~B(PZFL)imA;Wv7`+tE?Yk?w~QdnGJ?_%JZx zuwcEy2|4y3V}M{*aKt$_gq#e5C3XZ^{`>A7EDVUS%t`kDN7&8Pu1HWFDmj~>JRG~& zo{3Z6j8=mL0gJ<5b9U^rsc}SKjqbc1!gmB#S_)RxuKY@Uurd4Z@LJe$aQ+V`T8Ha6 zW^lkKcqzb1zjdX}fWF2o+{9^v2@rBCu$cUG_G&{i`Yb?w-iX)UhxrltP~*vXyE;9q?!G)98tsLl}-rEnGqQNg)OY_kIZb zd)t3hq#ay%JSQtAa1i?ugbsfN-I&TSS}R1DE_vV;)<8NhIb-ES5n(_7g@pKb1Zq=# zM*<>=Ee3$7S}y-Jwb}3#q;*s+#-vj=BMCGunph5OAj>ZA{?cT%Mbi~)%Z)@gn-&W* z&cS2-_({dd5d^BzU1&RA0}s9&ypq5L!fjk-u*hlg|6LE?kdTx)#Q#v4e&@jTqfOU4 zPD}JtBWeI$1+aRkDJo~k3D0g8Emb1-*q_1k8#@j^tVX^0xB8b0a{O(u?XxEpDEMi2 zAV-P+C!!iFK(Y@c_=FI%I;CHk*36Yzr2k0TX&dxLH(6x`_Q^MC8`mG7f*2if1C)y3 z&uPe%|6p=|a3fr|&EokJ$^0CA+yNUk*`~D2+6omkf_PWS3{R`hoe}^9)b?Bp`B{#* zPbuii_ld)NT+Ltwt@Y+z>H3kkZMIJyIKIeTL2bu;tFihQNORm-K(GD}1UQShC#dlk zuG)kR9f@hH*v3qlOr=<_5&ft79JDzWlmFW|fYC7Tr9sOh5Fh_LFhRFF)jLY?U(gD= zPJQ7{ug3lQU3q`z(_^S>AFiiu9itXqpt7z@4AB7xV5T-x^1~; zw|%s3Vs>OkPyG-4GQ~a|Y+?N@`%{H2fv+NG>e00bbd!S>)C!^YvBCQkIZ3L|!ZTw(qGS-pq& zz-BX3a;fU)a`aWbAh7&p;WyW$JdVI0@3O|bEI%@RqpAJ)UvU?2`Z|~MnLN1XXVMcO z#I6y>Z%S{8NBm~4>iW2@;e|kqj%i^x%aLU}xA4Py9c~>+XX3s{?K{o=ts+{7I`xPJ zGpZryi%}5Jp=^p7G_{eUthe0k@NLE|NZSx7KdxTvIrD-|ntg@q(Q>>8uzIj^vfc|z zbnM)!6JR$8u%LdM0^x4E!qAHQZ3K== zyE1inI_;f;p|SBJFIO*vIZ>Vq7y4$aK1vl@O+26Uo38c%OVz$6pYzx2;bO8geR+rt z0Z+N%Vi#|8U@{4w1N)qGTWHal&$<76WPKm0xvT-YlsxH-iK%TSpc=SsgkUsHPV7tGrCkdvBdmVL>U#8S2#mjh)uU3f%26Gb>Z~b(A?v z0O4Bu(PlG#ubE5Yw0_7={k^N61Lq|#5*ziihqt}9lYE5nn%0-0qgn?!T~8ic92vr& z<*-eW1_~idd(R_gnxzNS;+4q}o%PWzh+8 z-U}BPN`>txQkcBNn9}AtkSl8YeqB)0*-I^hudhsnS>ia)L-%Q_)|KoHlix0`O&^w9 zudJKwm5Pfl8u%3$ea@ZiMHuj;Ms0(x?v7yM>ZDZ_RCpDspkJNYMG?n8tr|8LqN6aq z@aj^2L$wk_;j=;run_O*ZUmNAjl1lM>i%Kz&HaOeMg)Q@Y=)}3?C7?_D;@Y08*q^b4wxaH-?V|4*+RIOrkBZZ6d zJJ3?}?J4khIiV{ip(Q03ZoQLKIpErojtlX^71ZNb+;h34VTSIFH6X5GHGob!49KMc z@($E05TFv)0C*5yl?8DDYVOVrg;S8>12ws)u>=vZ{MNneaVnrT_1^AH!2>4%eFQbs zC$+*hpfIin1*8&ymq1pX{M0J-9YG7w5x8=D5CE_RgnxRVBMLx@R}oJ=ernUKT5!>b zeq;pqgei?+5)8}44GNBLtJNC!MtSvt*UFpZM<42R3>UX4_1ACG zH0lo^){UtYdNug(Y36%w?v%!Y3)DJ14~DCEcsR1P6&&`)dJj1ca0_xOswObEiUW^) z8JU=PJPq?)itBnmW&LiywcqX%91UM1? zL(t_5@HDWKx4h$lWuEi()dHiBU%rs93>CJ4Gt)COlY+`_yxJ=xFYngou@xXEyU}pY zvEONln6^@!xvceVP{#c@mM;qJ^Gr>#GX8o2lpT1nK8XH8Upw0Hm<%B1;%mEuUKaU- zoGvq|Brpdph6(u#OaZZV=3EEYXcI^erhr;;;Qkw?m*;>a=gYujc1?4OlYH8{D$cRbxTP6mEXXWLWz_Sw7eZ?ON z-El3S)22U&3vlAc)FPGEuNUzO&c~UbrEqrMFwgCwgd_*TXbk+t6-<1FaKNs5bw`1s zNPDXHX3bv5Bcr~s2j3~ZHgMwB*{I37>{XM`S6lY_&u5b;iw??5YlHM4^}L8u+{S2~ zx;je88|z8~nLOJ})Epsj)%vi@e0J<(Ey`z7Wofc>Z7-=M1YTsVd=nlEareRvn-{Cj z&T5WTx)P0+KaqZ4$15jCiePQd5fd2qIqHsaKmp}1#5Hqm)EO27rZwhZ2uA9uB9vq? z-*ZV0jJBlD=6wtr4plccKI0z{a61+U-D&`u+menU0!Rg)Eq+rNtwixD)Kn8{Z?7%S zxO8%EE-c*ql=)+@K=IPS_o^!61F$<8mNJsP(pgf#;5@!78ywnY%B@eLTO}_|5pnzM@bDcAq7z( zG%O5k2J-RiSIUbQFWwP;Bak|a2p9t!nTJ;&ZoS2M?^O7n9t2=ogO#LmzJcw(q`LnN z$D`a`jNd@IUJs~b1}buZMi4;&T#&#(4*~W8v57~-zlksUtu+kRk9YAZKmfLUtLKrF z%{(;_fYJh1CzA-;_#m0H)`Hb|;!sW5X9FD(y+8md&fr7k7%150-VvgsqvK|JO+`gT z;Ld1cY<)>eiayAwsLp+ffmlVsXOHa()6btR>nNfRQ;}z-$W3vWHbrT{8hLbw`D)7P zRHk9Eak=tr^*R>L{7`JklKEuE&h7nnoxo?fjj`~}4&{dKTh-H=zBdJ5>=FeIT%xjs z9$i!?L%+i){eY7_pW!W@h3;)1xQimECH9K4$({2dI(!Iseu;MCujYAdx4y1|7u!CJ1Ut-t><|ylHSl&roxC_1qs=d1-QM1(DZ82R|&5 z7N7urfVIxYJ8m|>YcG)tBP$~_`SXnkE7;kw4u|zyssQ1nHJj8naGRU+tT?A3^q|{7 z|L{7uoE)o%hsSh@jja^eNdMQbU&8^H1E=G!^T^0B0<*maY!9N@LGAqY6$YLnJGl?5 zYijv?M@Ci_!88L5Y7)d4OWeVbkg)KxS~WV0qrw_jP~-yllhZXn|4``7O|bnc10X*U zfrny&`%`3~pQsb*Ei2`dQTDn2WY&F+uOtTIs9LA zy$3j4T^BZdM08Q26a9%AB_xP8g7Bm%k%&%2OY|rs+DP;WB7z`{5+%{12VrzV^cKBD zqIX6aGxP7^dA|4k-v9rvYpw}0XU;kMti9H~?sc!dx%>|v5!{@zpV6xnKjyl+xq$P= zZeMm*oh8=6W)%b`s0*P;=%XgizHuN(v)VSgcKB1SmKyY@WT0QmuEj8&|Pt zYvH$?qPap`e!J7BpX(iGj^ktt$)gpw$)TBPJWf`Xc;&M9ee%|3#W0S7N`e(VT6s0Q zE(v($gDx_OdXOYsfNgPhXb)#(E7NUzRU4Zu16DSAl1cP6hiv!!3^yGWgu~(N?Cb)f zqrFt81_l_gnEf^vglqS&ii+`rZRe3JRc;<;Y49K~`yIJEu+_B`{xp-vzx`rABK~9^ z>1)`7`@xZ#Iv2dNz|rWsGAveBUQPso-61}*8WNpd6nc3<$-8WTk9q@FDeZJSvxtL( zBa6@7&MtR;YH;u@H#c`4E>kmF11x2p5Ya>ZoL(N7Bv{W^A8UBWf%8kuG_c!y^c;)6 zjPe^ebn|@o=?Ye0y`vLJ;h!&^&H%Om9ry)kvms#ra!v&)K|%~H!t3a$Uhh*g;Lbsr zi~Kc5sOZof<)_b|-%d@(J)hq1s!IRzz!xa&9sxjk!uNj6c?1d&msX~O9{N|2u;k$= zhKfmQr5>*5G$}Lvj7B24kB^Txd-6AC7ZwB~hbz_fRpNON1xO_Fdx>{{y29q%^uve^ zNJrl+Sh(mN+~-iwOgQ0H5473TvQzTOz#9P+y1Pg?pTX9xezAP5{bsOUF$6I$1R)<> zyKNyzb16m9q6aRs@AvS_)$Qayv?%ST18OL1K*=GMafs6B#?o%o-F||N&6Qp|>b%?U zeyR4dV70_Ar6tLaagM zW0&D)-t1h*(pv9Zt#NSYe))}Q)s=4uDwJ`_nN>|QgNi-no&BFXb#<+^i{^BX@XCK$ zu+hSdv1p@9Wq22?Ji(jUap7A(xt7kU-M&qgk&&_4%HfEtW3HU<#*EiL0#^fA`a?ki4m%InuT^&2Vq>m8Dt{)Dws!q^|5T~B~j6)bhS`P_g}qQk2$Jcb6pmD zd4W6Om6Q8vWw<8}q@n+2+sClBYwW({$M@N%S3V-8S96Ufq8A_&1mT8Y{aRuJVR5Nr&-%On30R zv+gK_gTF$ar{| zChBl_CHhExL@8ks#w@jqD1Osmj>c)r;C1cmBYLYFcK&oVy&xuYVGEeuv3F;B_c@cU z$qze5?X?m&M80Z&V?}A2r0WB1up6L z-dz#)+%B`>Pqc-Oti4j-qk}9f$2FB6PQ)9udL^@oXQFbpk#R}g+^;{ADdGB5ud;UP z({YRWk`5-0rBA&m>ttnRt#>!R(TpCN7H#!a0xbcE;^i9y9Z_)|yGsL?0U`oT4;_-~ z(H;W^SWqd`Q+ArP4C=XpQQ%m0=ZbnyA|BFPWx}A0#6ILIkXBOnC$(?X`(pO+A&Z*= z@E5s=FJ?F01$+h8wP&h^Gda1Fr@TRJ@Sw`Oc5^Xk-sW$;MHBZ1dnmxZ@LGXm%^&zx z;gQQpIjgwueBIvD-)1NWyr`x(d=^1zX)ej$LMFM`z6~|gU9;Xg;*iG(eQiT%2jPnx zQ1>8<4f`Jc37_*LML3$qS;?uL+>KwEaI67aQE9`TFB`UCdS9gbcEQi9&dJZPFPaO* zusPa~tJjNvA&yF1hDm$xbZq6OW4T}O1{_FUp?nqPIBr?sTos5(eU{ZE^KCq|v0oLD< zIX4EyYL-)aNuvc#sW*}&euKI(^HA?#bsxhY@1MRek+^B-iT9ef$0rCKE=zz)PA1|9 z#H9lhV(T*ETGtCCqnsz=`BKCL@j02qta@)WCnh|-+gXtuH)$*`drj6i?Kt+vxmjU% zvcVZn9Wr9v{M(VO>5b`t5!~$AKSO4(kereYy8dTi?#e-Hi2dU27H!<6Uo0ENs_mcuvNj8e#JLN%8kT+THf^)-ap0Ue83g+I}@M<2n5`LV|vF0ev=Ua?6jQcmgxCPjwbg8{hGr-|nyljNaIa=r&&DpD|9-t)KV z8xe+BVw6i_;c=b3L7W{qY9=*KMTu{0w#-L=?yQD6OEy&(PQeGAkA6S0G8AtK1;Ft- zq&&%eC?k#QFOK#ITdjH3ni&-6L(8Fk*WCWh^tP(q%1+>W(}2p$yPbR}Scp(^-BH(@ zPErnb5_nQi6e)Bd*!er8K|xZA0YA`fya`*bi)uyqQq?9x#I8JLRt7EZ!Qey}nVNH6u_{+yIAVmp*mYkV!$*{sN^@#Nj0@P@5x?GSC^#$bQ$rSBc6133%nOw2 zmOkBmGIBZDHxZi|yg9He$nIY=mppx3J?lA@i+JdR3$J!#dlKR2=O^cPbcOknK|qz; z!qZaxuDM_LpU6#-iihvzhuwwBxa<)KSVu<(9r;;Fc;V62O@OoLz)@+mUlLVG@fMO{ z1Y2^W{h%ila7C3GD-^`a#igOCsd)#lj=uYC1fIX711i>KQjyE*VKgnYjG_eR`I43- z(_inVCqO@F>nBe>ReYo%(Yar^h|IMu@eopDs~&b2=H%p*+-8Zso^+TJPN(mQPz}LJ zFiRbDf~w~tQU}s@xF?g?e9?mZ@@wR3{+T+wsqb-w;M-C6v&%^v36ERRF(t~AlR=%h zRc2~h>erV7^-S`+n%jbxqeZ#RLjCq(f#dq9Kv~aE>Db9>`-bcdf6?DZe=*3f(5o$4 zh3zMqg!GkQR-RjqF}(6}3o+>F)F79blHBb&3N~M~9e$~=A3o$E&LyOBp?qmP4tnMp*dsPDq+=rz8 z$4w)Asd_c5<3eI$LuY>b6iw!T;-tXEf6yNl^ZPa?Ybq5~wJVfPv5G$T*gX2iJ{Fi0Nerb+r z)K$4Jn8JT8)ug_bkHD1H&J`5!3?Ea^JrKp(v6xNGge{P7Bow(;y=o|zhckYxN{_gK1?zGd>3 zVA=v~9uUW*$EG@vy)m_~)>we4n%a@t@gbvQuiGG=9HE5%{zV9>>4NgOk8VC0?aPofIp#3;xGoac^t0z>uscuH= zC(A@)FZvD46o31)O+a(^t0HpcTqS5uPObBMa<}<61u&|`89cZG&iiUK=?g18Ew?M0@vYT zB)xU*k;(0T4^qe>;=?4thIVH$^%nEx*IoPO!%$0ARpfIp^8(U*d;A~4gE=>kH?t_u z!6tbH+_{|dFV3vi&wA>}Db2nN|5^-VZP~;=%{&Kwu75}_Mbei zsF7i>i$8O;;E5Fth%wxD9z^ARWN6e*k!QLcf2psL%qXV}tVtkPiYIqvwg9a}M;J`s z_&8P32o+>dVnqRnWQL>5w0Sn2EfM=raPRPR7gU1bxIBd|jdZ|C z?IQvva3%YQ!&Rg^B*EA1DMQAF8a(oF?)4e#9Zqj(Cl-%G_QKve25o&4iWpYg!j{!AO`YJD}qxhqSXANCo9}-WrbB9PNN;xQ}feaEV7wbQ^HOC75uy&(gS9%{qFajPa zcdaY$IlYemdL^rM_tUCZ5z`9K@ZDsl)EB=Etafs;Z0!_|UW6D-B^cb&-5C;b{Da6? zclTHRvaW00R&o9K_`5w3H17ZW4DW zRZuzAXq;V{K{~VVq(f}7hAU?KHM<4Y2%vbMdwEEED1zP@-n_T{q8fay9{ zU#%I}R*@@yG?Nm>+#Ye=H(Sl?vKMJUZ_e_$uOXqN(#*;c2DS?HauZQ6Rriu!c5vqL zfILPvQAXIY2nTwAnkB$qE+1G@y(c7t5Q`h!q-msEJ!?k~XBY#%XQswW)^hm7b#&Y^ z@f@|bd;0VY-L;iMu(1YF{~a~!{r!D=luxbMR}=AFG&;lWvF#Xl<0$H3@%Y-}%F00e z44v&n*&uW+-eW*Nj;Vu(>aCP8HHs*W-uz;z~o(e`!eGCrN?bL zu6|-u&p%(bAxC)_hO3rN2?uFDVX6=p)rHc&Wpn35b2ha|+t@YKupaFLpfmu9r(P!B z$IkG7+ci1&G=8-qn)^eX%K^?g4xbIhybz1D(+v|*oh|Z$J3(V3QHy^v1H2hTj>cE^ zT1{9?K9JDlrthte#@OTgO&eNDGP{)b4}DoL+_y~&cbdl}q#&NWokaTQpfZQLgnXkt zX0%fk*#ZLt0W+zptE)T4`%T$5N+Uagx34FctLpNTzsdx>D^%@9u|!vc%tu}IKYeDW zm}Z$c?l|OV7JtPWlt!og!0gWDAd&#>KtDEPe-g+av3JvVkMrtGB&pcTI^@jEauq(qVeiKd9JlcJ2 zSFMqjIJ|4pDC9fLKinncC4h{N|GA(2X3~5f7zvZeL+Vj&pbr_?n~v~WufgxVMPuq` zK7|=>MLRy{dCcpZKf|UIIHzVh`Cd=A5PK&y%rS*Fz2%u3XLIKa>gK4Gx5r*7C3HLq zQ|8i5Wo_4_nkBj##-euM?7y>ev*%?FM-QjGJGrBysEjrftl@ht8GEDm9yQoE zZgFE{WLdSLeX7<+*T^UdeeUq5`5ue2BE{<;2YH`AcPy>KRAE$amihXpr+Ww{GJ!9K zRU**QjfcigSs`D!jxTn`&+QgJ9-}^3AE|bI`sdkd4W4ZkTNJyA*f$P|OUnX{oPL?8 zIy3)F@7}wf8mKCsNeDg1COtE@hnmelqWqRubaV0CVPywG&qRDL8_6iYA}k^z^tTei2rHbOezFgkyDh0O`D z>wH5uGQG)QJ!|EGE=x@+(r=+o-_zkSH8u?n_21EG&q{}sd|FV(2qCQl+RoFf{9pDOZ%PU!oF+hzIwCf~z4rp@^ z?`q%dwx~!0buY&>?B9rBp5?fWlbNdu|Juf9wn+{7F$_JHHaa-o)zju1J6Z_plV7w1 zo%UG^8igWKr~n#gWp;yd}By2sXp`xCI7ySR#4Xl@jsTCwU7!>EUuG<(0yDYK0cIUcSd{ z_4mk?*X|o2x(XQ_SRz#e1;_NLpIA-LeKx@&IYCl!@DDdgwGPpXo&;74sAl zt4r+|AnS!Tk>gKYjt{n8lWu}w`Diy1@(@tubJ9q@1<|Tcg-NqzOoq9EeS+R^_67x^ z+gND*(;a?(c{KQ|sj11J+Ah68bS`!opr7w72&Fk(7@T;_{frlnlrIUG@+wxW1xU83 z{{FYm$n6KDdpQ57W5lo!wDU(@OU=`7myc+Y+m- zA8)c)tgkK!U170kBoPSGO3~OX5@q--iYbNt`$8yVa+vBR#+~#%izqZ5?oS9CC&UR^ z(!ma+moH^~z5dPSUND)HKiA!d#|*DJ)>zk9+S>42&zkj=aV-pT&$s^~JO>lS$E1Wj zq@Z(rb0eW9mS(23{4B*AlLL|NGdYgx#w?umx%Had$}2amdK+@J4i_cF)%d$}Z`)FE zZMnKqq~1T{MTvak=$py0e3AVEaWU~vD^?n9~wG$&UQ)tXtVp z^Jlk=_I2)P1K#8LPfQ0rIhsB3S^@zqYCs`AZE-Z$Ai)UTB*)#w6wZv*5q}YwlSiwv@yCw$>;s6y42UoM4GS2a zUex0bK~=9Lyf?9l5JIZ1ST(^_Wf0qUtdK6t^4`W3P`-ceR`m+i;SQK#I_ zJx49&uVs3`x+Qg ztPf}-hV!?ie)W{b6ZGo`Dq9Sd1U*^u6WzSM2CpK$Xpr{B0J1@y z_?P$n$S*{?H`?;W(8-&DjTVku-+=)Xz!R@tTe?)8_>y5YG z*JivNhM(JUg97Sj(Yd_7M~>Db|7roGR_a&S@@PM7wGS`AlurCT0T6)K;S4ec^3V4I zghR(WVLdv^V3*N-6jkZaD|7Q50f7B(dYwDC-+A{h)^2s451l3FZ^+=Sn!J=4>ln6F z53HJORZ_|;0FvqNsrLu`KLgfWHLj}{-A@6$gm#Dl(YNm(nI9S(=P99zb+H1v`9~nv zyfH`8w-nT4$yQuJ`8#y!G^qcuf%eLoW^O3G6YlQkUGCw_%D*+73E{z*=?SE7U# z0~ghoW7hA&_V(Is@prTD3Qsye+B5QaF6Ub7b=lW^@rV?%K<%%6T(-v6JsgE^GL#|C z*TZEdNG?-n^T@GlG)M;oHQ8DkVbw{X43fU^clcJ0jXCoQMUsUqeUoeZ_s;sy-pZvZ z!Q?b95j?WEbpoQ&mtZnf-#_Si|6b!Is4S57!b;rJ+hz~e-;6mny5kn9JhU(Rd zeeuE2kYO@be7m_!aL(WE$Nkg6(g%Ze@I6-WR||I?G4vHpqd@kPE!67I^h@#71`-(4VK(s#MhzDLM`5lFS&VO^5q3bV^||A}~Gc2#o;Kx3wRTD$1MW%qycbSDJ zYdRV2M{scUE~jc8-1*4CWh>$<@b<)-$j0Cj$45Dfhnr8D7MiJMVkwXmnUGwJj+|k? zm|zT@ktg0N{3-(%#14}SnnfkO8D53cQ@;Eav$UDq+2eo6Sf{t?{~*hoL7*6Q!qac> zy*Pd+VHSRX`LWqv``Av#Hy<}HpI0<=nOZV-011v$^6FA~k9l9AW#TzJDK&{1CDc^iTEd{hSioT3FB!#J{=VE!6mG z%R3HOTVpWQIotXi4&{L#d3QSmVh?=2;X4Oc9>@Gm4k#D_uct4(Gwm}W<-YQ1m?66Q zt=+*LD+ORHXa?8VNtoeW@FtQJBgK3W;al`OY`gPD>771Yx4>gVv{$a0OvjYf*vHkS zG7i#>zFxBJy=czx1N^TSneSnh?4W>l80qES$izl9O*C_WtjoWHZxYM)ine~`-WkC} zxZ9gTL1bwpTgVDj^lbWd-?i2UP=L?z{_BVp{gda*Dp2YBg!rJfOXr8aN7s!^j

    ;Zh&DcS-eVV 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 Date: Mon, 28 Dec 2020 02:28:36 -0400 Subject: [PATCH 142/165] added a holopad to kitchen and hydroponics. --- _maps/map_files/BoxStation/BoxStation.dmm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 92e5596382..4c42c51920 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -59038,6 +59038,10 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) +"qvS" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) "qyj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, @@ -62522,6 +62526,10 @@ }, /turf/open/floor/plasteel, /area/science/circuit) +"ycQ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hydroponics) "ycY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -100471,7 +100479,7 @@ aJI aRC aSK aVz -aVz +qvS aVz aYL aJI @@ -103042,7 +103050,7 @@ fzd fFA fFA aVK -aRJ +ycQ aRJ aRJ bbB From 2cca3314a7c28eae5818b57065b0ebf44f92b82c Mon Sep 17 00:00:00 2001 From: Xantholne Date: Sun, 27 Dec 2020 23:55:58 -0700 Subject: [PATCH 143/165] Adds to bird crate --- code/modules/cargo/packs/livestock.dm | 53 +++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/code/modules/cargo/packs/livestock.dm b/code/modules/cargo/packs/livestock.dm index ebfb96ec23..754c608674 100644 --- a/code/modules/cargo/packs/livestock.dm +++ b/code/modules/cargo/packs/livestock.dm @@ -34,10 +34,55 @@ /datum/supply_pack/critter/parrot/generate() . = ..() - for(var/i in 1 to 4) - new /mob/living/simple_animal/parrot(.) - if(prob(1)) - new /mob/living/simple_animal/parrot/clock_hawk(.) + for(var/i in 2 to 6) + switch(rand(1, 23)) + if(1) + new /mob/living/simple_animal/parrot(.) + if(2) + new /mob/living/simple_animal/parrot/clock_hawk(.) + if(3) + new /mob/living/simple_animal/parrot/kea(.) + if(4) + new /mob/living/simple_animal/parrot/eclectus(.) + if(5) + new /mob/living/simple_animal/parrot/eclectusf(.) + if(6) + new /mob/living/simple_animal/parrot/greybird(.) + if(7) + new /mob/living/simple_animal/parrot/blue_caique(.) + if(8) + new /mob/living/simple_animal/parrot/white_caique(.) + if(9) + new /mob/living/simple_animal/parrot/green_budgerigar(.) + if(10) + new /mob/living/simple_animal/parrot/blue_Budgerigar(.) + if(11) + new /mob/living/simple_animal/parrot/bluegreen_Budgerigar(.) + if(12) + new /mob/living/simple_animal/parrot/commonblackbird(.) + if(13) + new /mob/living/simple_animal/parrot/azuretit(.) + if(14) + new /mob/living/simple_animal/parrot/europeanrobin(.) + if(15) + new /mob/living/simple_animal/parrot/goldcrest(.) + if(16) + new /mob/living/simple_animal/parrot/ringneckdove(.) + if(17) + new /mob/living/simple_animal/parrot/cockatiel(.) + if(18) + new /mob/living/simple_animal/parrot/white_cockatiel(.) + if(19) + new /mob/living/simple_animal/parrot/yellowish_cockatiel(.) + if(20) + new /mob/living/simple_animal/parrot/grey_cockatiel(.) + if(21) + new /mob/living/simple_animal/parrot/too(.) + if(22) + new /mob/living/simple_animal/parrot/hooded_too(.) + if(23) + new /mob/living/simple_animal/parrot/pink_too(.) + /datum/supply_pack/critter/butterfly name = "Butterflies Crate" From e8fea4cf1ba56fc90ef4874b2e5f649eaf21b7b5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 28 Dec 2020 00:19:35 -0700 Subject: [PATCH 144/165] Update human_defines.dm --- code/modules/mob/living/carbon/human/human_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 2e8641b43e..341aa6a30f 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -14,7 +14,7 @@ blocks_emissive = EMISSIVE_BLOCK_UNIQUE block_parry_data = /datum/block_parry_data/unarmed/human - default_block_parry_data = /datum/block_parry_data/unarmed/pugilist + default_block_parry_data = /datum/block_parry_data/unarmed/human //Hair colour and style var/hair_color = "000" From 51ac7286e66a5792cf68194cf64291d0b5a61ed5 Mon Sep 17 00:00:00 2001 From: Xantholne Date: Mon, 28 Dec 2020 00:57:32 -0700 Subject: [PATCH 145/165] aaaaaaa --- code/modules/cargo/packs/livestock.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/livestock.dm b/code/modules/cargo/packs/livestock.dm index 754c608674..83b831aa37 100644 --- a/code/modules/cargo/packs/livestock.dm +++ b/code/modules/cargo/packs/livestock.dm @@ -34,7 +34,7 @@ /datum/supply_pack/critter/parrot/generate() . = ..() - for(var/i in 2 to 6) + for(var/i in 1 to 5) switch(rand(1, 23)) if(1) new /mob/living/simple_animal/parrot(.) From 1df5aefcd9cc517e296608649cbf6c925524b1a7 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Mon, 28 Dec 2020 05:49:17 -0400 Subject: [PATCH 146/165] re-added replacement lights to Starboard Emergency Storage --- _maps/map_files/BoxStation/BoxStation.dmm | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 4c42c51920..76ff33c75c 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -55453,6 +55453,10 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) +"ijO" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) "ikk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -56016,6 +56020,10 @@ /obj/structure/closet/athletic_mixed, /turf/open/floor/plasteel, /area/crew_quarters/fitness) +"jwH" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hydroponics) "jxF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -59038,10 +59046,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"qvS" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) "qyj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, @@ -61309,6 +61313,7 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/storage/emergency/starboard) "vxX" = ( @@ -62526,10 +62531,6 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"ycQ" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hydroponics) "ycY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -100479,7 +100480,7 @@ aJI aRC aSK aVz -qvS +ijO aVz aYL aJI @@ -103050,7 +103051,7 @@ fzd fFA fFA aVK -ycQ +jwH aRJ aRJ bbB From f5c4bd614d9090f5da5199de20f3692d76e1fed3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 09:57:14 -0600 Subject: [PATCH 147/165] Automatic changelog generation for PR #13838 [ci skip] --- html/changelogs/AutoChangeLog-pr-13838.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13838.yml diff --git a/html/changelogs/AutoChangeLog-pr-13838.yml b/html/changelogs/AutoChangeLog-pr-13838.yml new file mode 100644 index 0000000000..deff5913b3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13838.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "things in DEATHCOMA do not deathgasp on death" From a48e8265b018173e291453fb5547f6ce37c5f217 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:08:32 -0600 Subject: [PATCH 148/165] Automatic changelog generation for PR #13897 [ci skip] --- html/changelogs/AutoChangeLog-pr-13897.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13897.yml diff --git a/html/changelogs/AutoChangeLog-pr-13897.yml b/html/changelogs/AutoChangeLog-pr-13897.yml new file mode 100644 index 0000000000..05637b0908 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13897.yml @@ -0,0 +1,5 @@ +author: "keronshb" +delete-after: True +changes: + - bugfix: "Allows Energy Bola to be caught" + - balance: "This also allows them to be dropped/picked up." From 21cfa42f91777205df085bce636574b6ef7cc9c6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:10:29 -0600 Subject: [PATCH 149/165] Automatic changelog generation for PR #13893 [ci skip] --- html/changelogs/AutoChangeLog-pr-13893.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13893.yml diff --git a/html/changelogs/AutoChangeLog-pr-13893.yml b/html/changelogs/AutoChangeLog-pr-13893.yml new file mode 100644 index 0000000000..9eb7a3f79d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13893.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "Meth and changeling adrenals no longer ignore all slowdowns, rather damage slowdowns." From 73c71d9969cf9c3729ed1546a0cd0ee5406ea09b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:11:36 -0600 Subject: [PATCH 150/165] Automatic changelog generation for PR #13894 [ci skip] --- html/changelogs/AutoChangeLog-pr-13894.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13894.yml diff --git a/html/changelogs/AutoChangeLog-pr-13894.yml b/html/changelogs/AutoChangeLog-pr-13894.yml new file mode 100644 index 0000000000..31e1e66328 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13894.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "temperature slowdown divisor nerfed to 35 from 20." From 0b975ef6de48bb219dec9d6c1edbc786097b21b7 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:15:52 -0600 Subject: [PATCH 151/165] Automatic changelog generation for PR #13896 [ci skip] --- html/changelogs/AutoChangeLog-pr-13896.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13896.yml diff --git a/html/changelogs/AutoChangeLog-pr-13896.yml b/html/changelogs/AutoChangeLog-pr-13896.yml new file mode 100644 index 0000000000..f733efa09d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13896.yml @@ -0,0 +1,6 @@ +author: "Sonic121x" +delete-after: True +changes: + - rscadd: "alarm ert hardsuit sprite for naga and canine" + - tweak: "adjust the naga ert hardsuit to cover the hand" + - bugfix: "cydonia hardsuit helmet" From 8f0a526ee16b5d36aef603a82b3b32368ee80aeb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:34:17 -0600 Subject: [PATCH 152/165] Automatic changelog generation for PR #13898 [ci skip] --- html/changelogs/AutoChangeLog-pr-13898.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13898.yml diff --git a/html/changelogs/AutoChangeLog-pr-13898.yml b/html/changelogs/AutoChangeLog-pr-13898.yml new file mode 100644 index 0000000000..cb4e0fd52d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13898.yml @@ -0,0 +1,5 @@ +author: "Putnam3145" +delete-after: True +changes: + - balance: "Regen coma now puts into a coma even from crit or while unconscious." + - bugfix: "Regen coma now properly weakens while asleep." From 0e9a29fc15b96036fdfb64f65e5074e5b5688e14 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:43:41 -0600 Subject: [PATCH 153/165] Automatic changelog generation for PR #13887 [ci skip] --- html/changelogs/AutoChangeLog-pr-13887.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13887.yml diff --git a/html/changelogs/AutoChangeLog-pr-13887.yml b/html/changelogs/AutoChangeLog-pr-13887.yml new file mode 100644 index 0000000000..83069a4e64 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13887.yml @@ -0,0 +1,4 @@ +author: "HeroWithYay" +delete-after: True +changes: + - bugfix: "Changed description of Necrotizing Fasciitis symptom." From eb8bb6c678303a914e7786d0a499848211387271 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:53:35 -0600 Subject: [PATCH 154/165] Automatic changelog generation for PR #13883 [ci skip] --- html/changelogs/AutoChangeLog-pr-13883.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13883.yml diff --git a/html/changelogs/AutoChangeLog-pr-13883.yml b/html/changelogs/AutoChangeLog-pr-13883.yml new file mode 100644 index 0000000000..884adafffe --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13883.yml @@ -0,0 +1,5 @@ +author: "silicons" +delete-after: True +changes: + - rscadd: "set-pose has been added" + - tweak: "temporary flavor text renamed to set pose, fully visible in examine" From e32f0a613f985fa694d3cfd04666ae457acef49b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:55:30 -0600 Subject: [PATCH 155/165] Automatic changelog generation for PR #13882 [ci skip] --- html/changelogs/AutoChangeLog-pr-13882.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13882.yml diff --git a/html/changelogs/AutoChangeLog-pr-13882.yml b/html/changelogs/AutoChangeLog-pr-13882.yml new file mode 100644 index 0000000000..fe545bdc23 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13882.yml @@ -0,0 +1,4 @@ +author: "ERP mains" +delete-after: True +changes: + - rscadd: "Subtler Around Table is now a verb" From b1e5888ce04faac65097f5bdd47fce8dcbaabe5e Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 28 Dec 2020 17:40:04 +0000 Subject: [PATCH 156/165] Update tackle.dm --- code/datums/components/tackle.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/components/tackle.dm b/code/datums/components/tackle.dm index 5f55e5463a..c69df4f5e3 100644 --- a/code/datums/components/tackle.dm +++ b/code/datums/components/tackle.dm @@ -89,9 +89,9 @@ to_chat(user, "You can't tackle while tased!") return - var/left_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_L_ARM) - var/right_paralysis = HAS_TRAIT(sacker, TRAIT_PARALYSIS_R_ARM) - if(left && right_paralysis) + var/left_paralysis = HAS_TRAIT(user, TRAIT_PARALYSIS_L_ARM) + var/right_paralysis = HAS_TRAIT(user, TRAIT_PARALYSIS_R_ARM) + if(left_paralysis && right_paralysis) to_chat(user, "You can't tackle without the use of your arms!") user.face_atom(A) From 0bba55405246befef84293ccaa7e5359962c3238 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Mon, 28 Dec 2020 19:45:03 +0100 Subject: [PATCH 157/165] e --- code/modules/spells/spell_types/summonitem.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/spells/spell_types/summonitem.dm b/code/modules/spells/spell_types/summonitem.dm index 2f3ed64655..70b003b9f7 100644 --- a/code/modules/spells/spell_types/summonitem.dm +++ b/code/modules/spells/spell_types/summonitem.dm @@ -81,6 +81,9 @@ var/obj/machinery/portable_atmospherics/P = item_to_retrieve.loc P.disconnect() P.update_icon() + if(istype(item_to_retrieve.loc, /obj/machinery/disposal) || istype(item_to_retrieve.loc, /obj/structure/disposalpipe)) //If it's in disposals, only recall the item. + break + item_to_retrieve = item_to_retrieve.loc From 687c6a9e6f871674692d847b73cbf718c7c2d411 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Mon, 28 Dec 2020 19:49:42 +0100 Subject: [PATCH 158/165] and another one --- code/modules/spells/spell_types/summonitem.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/spells/spell_types/summonitem.dm b/code/modules/spells/spell_types/summonitem.dm index 70b003b9f7..91d75855a1 100644 --- a/code/modules/spells/spell_types/summonitem.dm +++ b/code/modules/spells/spell_types/summonitem.dm @@ -81,8 +81,11 @@ var/obj/machinery/portable_atmospherics/P = item_to_retrieve.loc P.disconnect() P.update_icon() - if(istype(item_to_retrieve.loc, /obj/machinery/disposal) || istype(item_to_retrieve.loc, /obj/structure/disposalpipe)) //If it's in disposals, only recall the item. + else if(istype(item_to_retrieve.loc, /obj/machinery/disposal) || istype(item_to_retrieve.loc, /obj/structure/disposalpipe)) //If it's in disposals, only recall the item. break + else if(istype(item_to_retrieve.loc, /obj/machinery/nuclearbomb)) //I feel like yandev + break //Just to be sure. + item_to_retrieve = item_to_retrieve.loc From 4e51f914f5ffc4f17fbb2612c9c66a3be64cb177 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 14:15:33 -0600 Subject: [PATCH 159/165] Automatic changelog generation for PR #13869 [ci skip] --- html/changelogs/AutoChangeLog-pr-13869.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13869.yml diff --git a/html/changelogs/AutoChangeLog-pr-13869.yml b/html/changelogs/AutoChangeLog-pr-13869.yml new file mode 100644 index 0000000000..5d4ca4817c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13869.yml @@ -0,0 +1,6 @@ +author: "timothyteakettle" +delete-after: True +changes: + - tweak: "slime puddles are no longer layered down one layer" + - tweak: "you cannot tackle with two paralysed arms" + - tweak: "tackling with a single paralysed arm lowers your tackle roll by 2" From dc7f3cdd6bf6835685c45c2d62300e6b9733b86e Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 28 Dec 2020 12:52:41 -0800 Subject: [PATCH 160/165] sigh --- html/statbrowser.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/statbrowser.html b/html/statbrowser.html index e7d49ceebc..1cb089a189 100644 --- a/html/statbrowser.html +++ b/html/statbrowser.html @@ -912,7 +912,7 @@ function draw_sdql2(){ var td2 = document.createElement("td"); if(part[2]) { var a = document.createElement("a"); - a.href = "?src=" + part[2] + ";statpanel_item_click=1"; + a.href = "?src=" + "_statpanel_" + ";statpanel_item_target=" + part[2] + ";statpanel_item_click=1"; a[textContentKey] = part[1]; td2.appendChild(a); } else { @@ -943,7 +943,7 @@ function draw_tickets() { td2.appendChild(a); } else if(part[3]){ var a = document.createElement("a"); - a.href = "?src=" + part[3] + ";statpanel_item_click=1"; + a.href = "?src=_statpanel_" + ";statpanel_item_target=" + part[3] + ";statpanel_item_click=1"; a[textContentKey] = part[1]; td2.appendChild(a); } else { From 627ac9dc3133aab185b2abeacae5cca023ae309e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 14:53:49 -0600 Subject: [PATCH 161/165] Automatic changelog generation for PR #13904 [ci skip] --- html/changelogs/AutoChangeLog-pr-13904.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13904.yml diff --git a/html/changelogs/AutoChangeLog-pr-13904.yml b/html/changelogs/AutoChangeLog-pr-13904.yml new file mode 100644 index 0000000000..90f7d77e17 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13904.yml @@ -0,0 +1,4 @@ +author: "DeltaFire15" +delete-after: True +changes: + - tweak: "Instant summons can no longer do wacky stuff with disposals (and nukes)." From 14cefb2d35c3e6d95432488352b9cfbc65e91069 Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Tue, 29 Dec 2020 00:59:40 +0000 Subject: [PATCH 162/165] Update TGS DMAPI --- code/__DEFINES/tgs.dm | 20 ++++++++++---------- code/modules/tgs/v5/api.dm | 9 +++++---- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm index 2562bfe4d3..3225f14d8c 100644 --- a/code/__DEFINES/tgs.dm +++ b/code/__DEFINES/tgs.dm @@ -1,6 +1,6 @@ // tgstation-server DMAPI -#define TGS_DMAPI_VERSION "5.2.9" +#define TGS_DMAPI_VERSION "5.2.10" // All functions and datums outside this document are subject to change with any version and should not be relied on. @@ -67,7 +67,7 @@ #define TGS_EVENT_REPO_CHECKOUT 1 /// When the repository performs a fetch operation. No parameters #define TGS_EVENT_REPO_FETCH 2 -/// When the repository merges a pull request. Parameters: PR Number, PR Sha, (Nullable) Comment made by TGS user +/// When the repository test merges. Parameters: PR Number, PR Sha, (Nullable) Comment made by TGS user #define TGS_EVENT_REPO_MERGE_PULL_REQUEST 3 /// Before the repository makes a sychronize operation. Parameters: Absolute repostiory path #define TGS_EVENT_REPO_PRE_SYNCHRONIZE 4 @@ -190,21 +190,21 @@ /// Represents a merge of a GitHub pull request. /datum/tgs_revision_information/test_merge - /// The pull request number. + /// The test merge number. var/number - /// The pull request title when it was merged. + /// The test merge source's title when it was merged. var/title - /// The pull request body when it was merged. + /// The test merge source's body when it was merged. var/body - /// The GitHub username of the pull request's author. + /// The Username of the test merge source's author. var/author - /// An http URL to the pull request. + /// An http URL to the test merge source. var/url - /// The SHA of the pull request when that was merged. + /// The SHA of the test merge when that was merged. var/pull_request_commit - /// ISO 8601 timestamp of when the pull request was merged. + /// ISO 8601 timestamp of when the test merge was created on TGS. var/time_merged - /// (Nullable) Comment left by the TGS user who initiated the merge.. + /// Optional comment left by the TGS user who initiated the merge. var/comment /// Represents a connected chat channel. diff --git a/code/modules/tgs/v5/api.dm b/code/modules/tgs/v5/api.dm index 466a986237..7a2ff694e0 100644 --- a/code/modules/tgs/v5/api.dm +++ b/code/modules/tgs/v5/api.dm @@ -98,18 +98,19 @@ return json_encode(response) /datum/tgs_api/v5/OnTopic(T) - if(!initialized) - return FALSE //continue world/Topic - var/list/params = params2list(T) var/json = params[DMAPI5_TOPIC_DATA] if(!json) - return FALSE + return FALSE // continue to /world/Topic var/list/topic_parameters = json_decode(json) if(!topic_parameters) return TopicResponse("Invalid topic parameters json!"); + if(!initialized) + TGS_WARNING_LOG("Missed topic due to not being initialized: [T]") + return TRUE // too early to handle, but it's still our responsibility + var/their_sCK = topic_parameters[DMAPI5_PARAMETER_ACCESS_IDENTIFIER] if(their_sCK != access_identifier) return TopicResponse("Failed to decode [DMAPI5_PARAMETER_ACCESS_IDENTIFIER] from: [json]!"); From 5a0a9393a54ab47948eecc4b6b22226a097506bf Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 29 Dec 2020 01:51:01 -0600 Subject: [PATCH 163/165] Automatic changelog generation for PR #13900 [ci skip] --- html/changelogs/AutoChangeLog-pr-13900.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13900.yml diff --git a/html/changelogs/AutoChangeLog-pr-13900.yml b/html/changelogs/AutoChangeLog-pr-13900.yml new file mode 100644 index 0000000000..a25c8af1ed --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13900.yml @@ -0,0 +1,4 @@ +author: "Xantholne" +delete-after: True +changes: + - rscadd: "New parrots from the RP server, can be found in Bird Crate in Cargo" From 3ba7740641a3ba30ca65d675b69ceb81160e01ea Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 29 Dec 2020 02:27:52 -0600 Subject: [PATCH 164/165] Automatic changelog generation for PR #13855 [ci skip] --- html/changelogs/AutoChangeLog-pr-13855.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13855.yml diff --git a/html/changelogs/AutoChangeLog-pr-13855.yml b/html/changelogs/AutoChangeLog-pr-13855.yml new file mode 100644 index 0000000000..0eed195acd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13855.yml @@ -0,0 +1,8 @@ +author: "Chiirno" +delete-after: True +changes: + - rscadd: "Paramedics office and Surgery Storage Room" + - tweak: "Remodeled the surgery room, as well as shrunk Morgue and Starboard Emergency Storage. +Fiddled with some areas for better map edit clarity and fixed one runtime in Vacant Office A." + - imageadd: "Added the paramedic closet sprite, a paramedic colored medical3 closet." + - code_imp: "Added a paramedic closet, which is the standard medical3 closet with their suit, a pinpointer, and a crew monitor added." From 29c24fc1cdb7e5c01a2351e7d90f21da4ef94cb4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 29 Dec 2020 02:28:43 -0600 Subject: [PATCH 165/165] Automatic changelog generation for PR #13884 [ci skip] --- html/changelogs/AutoChangeLog-pr-13884.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13884.yml diff --git a/html/changelogs/AutoChangeLog-pr-13884.yml b/html/changelogs/AutoChangeLog-pr-13884.yml new file mode 100644 index 0000000000..f2b9233690 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13884.yml @@ -0,0 +1,5 @@ +author: "Hatterhat" +delete-after: True +changes: + - rscadd: "The dock-silver standard set by Box and Meta has been enforced across maps in rotation (Delta, Pubby, Lambda)." + - bugfix: "The Box whiteship now has its missing tiny fan back."

    * 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 MpFN&-)a=Ip2i#)!Y5)KL literal 290169 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

h9rbBMWbNqeIx3Dh|0=|<_)3t| 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 Y##xs9NvP8^hJcr%oQiCjv~ke?0XN)ucmMzZ literal 131870 zcmb5Wby!qi+crFeAOZrSw4{ItlG3RX(xrr?v`R}z&Co5K(j_1z-61lhQqrB$Eik|^ z^R2mm_x-&0^BwO$?>-J@X0N^1j%%%Tt?N3^a}lPYra*j)<`x73Ay#}Ls|A5z`(plX z;(-#PUwteP2v)7aL1mj~Ex59S^ zIud(7qgbo{p7T=ft!%WVebw)qaZJyTzW703(kJN=`c()V-`rz^CJQ-iSui$Hfpe62+^OtK4~UQ;~>?>>;yFu}#5LxNevD-;Sf1nQ(kjI7K3K z{CRPa9ogSrj%?Fd2GbFjO~%+4e+q>M3y@v|0e@hbcTso!8Q+lj$UUaXgKifmWc zp6i0CK8h13rPrm`(?dI2(xqky^XZmU~4@8XUmJuA&?>dXZs`- z%mxvB^3Qfj^%*iY{Li*&{@)eIHg~XX{=NOZ*Vgnl|K;>cr8(aR-FEYZC$B_nh_e54 zU&__Y3?@68c(zwUiTswOVf|mUggz<8&s7U}S20$r<1W2_8#@YbyArP`kW+$XJ$Zex z6>)Yhn8qV-auPy;evSO+_hC=46WiO_wU?N`3b$|{+U`{3D9Qdb^=O94Q2Zm?UxD%& z=KXr)X~(51)bE*}Y}4JVv)V^`8rKs(HF9quuxL}y zEsqU++0k)BS0}@>{ky5@Gb>VXuQm>6&)tK)xrUHQ5EB0Wew8Ilh-sf+^ww)IFsiC`>kH* zT40~@`*7+t2M0$#9~=&czHg^lCVXS<8%^9a1$)!$|g&!`Tjpr>Y|+WI|t8vsY`E zc}~mW?G$M2$0*B7EhHgmxh{oZ4RgCM4Scr?3BN=N#y+v3((eB3*p%JC7e!OzZ5UKG zJt^0go6cQgp`Do+{)qC!!6&mpmb|S+9oe&7(Z3Fyn7vdlhr9P)aSN^MiyG-n+ga`; z5oKRqjTLK8H@WWIQ11|)cOl=IC_53EWXKF`arKzmJ5!S$M+98^M+m-K2_|uzO_GF~ zR|})0-qzsmeS%sel;__cRlucfj(9fTA7#0p-z?6r2^?GF`udg7X(tl7m8|QuDJu%@ zxnh1AN%iheu`~m#Min`2{P(^%mIv&t0%vIPu^pcnP_xgh5>mA(sX-CO#~f+#oP&@~ zAk{%nEsTZ0t2KU3mKO9{$b$zDTq3ULh`WuE`Vsw#ao3|WS)(4X z;xx2oC;FoB?%cW4^b2L5dV_0pR-fg!;*hE(FnfOrW!^~dM418DXMJyR$(j}E$@1>1 zXMvX{hPK^c2!=@n$!B%~JphhBXUOS8ZnL)jMfxdGb?*lxW zbApeT{S3n^i(W{=BYYGCdONa$0!QG#b|zbQy>V z6h)A=JM!Vnms^ncWr=LMI^0wRgn+CtlIK zJ^R6;R}1}QYK14uYot3pdPSkNwfY2k?=k8+UQ)Y9Q8ZOFpUryN)>+`hF>l}W`%|gu zyp7>7=LNkcJYV6Y@@4QFQv{A!(c6y|uvt4zx*pjg?U)GtDKDqu4uZYhg6|d)vS?5S zw=Tec{`e$TQX5BIZ&ke(^fo0|MeltX_~i0LxyZtkg>88be8V~N5{yBX57g3|1$@{T22mZyA{43U+ZG_3SCxrgR)2Gte3()2%6B!0b9!{1d}_j?*L&m!+l+_?g`#ayQ2I|gjQg(Q*W!@W?qVnU zK}Gh9r5^X>?9UtTsvgCyRAz7}kyRUb+LzE}Wx{fz#xNnqkn8i?$rCLiWMGuDo9LB< zN`p}WehkD>eyRK;hgfa>Q2?$ChZ(6R-|7H!6UV9v=$^jTc@H&AkSij5Qu2~Qx%D}9 zXvEQ~tSkxR9I0AB-qT8L?`VEn8^^z^pjc+8(&Pz}k6>hh#D@6LHb%_5oGShi*_izP z#SigjwyqN1%eaBkqDiUUNjal5o_$Rea^kVN%dOO4kHk z?ydm|g8cXWXL@N;)l{7GkBt~;IvwP{a1y6qe%=&WYFtGhv5UV$C!716fYt<`r{R;Iu6Nq^-ZKt$N{T;>nuu z@kRm_Vg6ajynQnMKuEC5w({X$4+XJ_#FENs>r}{NR4rn1Wih_(4%!U)`o)~AR@_f6 zqejD2GH)=jyLz^Zi<~Q=3O69YIYp~yDLTCsh5Sm)I^7obFX}l^rOEnYE1Xh&vGr3p z;Q+0N;v{*~V7cM6eqLVJKEUo5NZToy={T;;aC3~%&r`fmSYYq>Gov1?1#DNGlJ4=T zIdgmHc9X_rSV^Tmbwjy*XxDFRm1i{}KA?*t*Y;^aOo(y61I6#MeT<&K=#lfWQ9=f4 zuQ<&Epw8!?=;!U;nS7;nUH;%I388l#CpUY6X{)CZFhL(y6b>cjb|6BTXa>GjrR0wt z0GTo#{@QXz#Q2am^tWZ=1H3(E*1pp8gX&HbtibDcW7H!Nb|hhGQ;*Nw8zC*0^TPD< zMU!54u$IcOHa}*z59@1Ois_BJcwg$W(4?mX+5}sYu=2r6ZFhF%3;(dYFBT!oDX>Q> zHIbqNYm~~yhLO_Nsrj2z57(P#@ZT-E1kX%{aadt0u`yldqRuUKV<^y>HXxvZnS{g6 zs~xtZ_Kgd?9b5+aR1i_wTM} znd+TsL>Kz#8gY7{7e0Kq9%<9==Ue%b1?G3)6$43#c8txvUm!Yo;rmg9OB8$J>*Ma_ zO=oyoVEBC7%>h@)F0Z>T*alv4qEUIfX*_8_4rBIOMDkX|5y`hd@Gvlka4e>!%~qU( z=nVL@k=eJ<=hn>M@(?>}O{x&=2VYV^$2H+~m1LDnb$l)o#_?yLORau%#l>q5_w~*? ze$|9$U*3^}QQfXduWgC)_mVwC2(=l z%Q{q#w_En%bVaUDA@{a;rR~j{E4sBNGT}cQ&CxraUqeSR0XQbgeT{UO_MiiPw((rv zBUB~^zBuQV2cj&=?)D3E_4(uh?elfx8bUp~-x)3u5MwZm2X;J9~CbuR=_HdZob=G&2eM@k@hu+YAxQ5;FQ{TDajZ~L7#QsoCP4DmT zdwOAEG58lk%4(MF^KT2_TRKrEte6%n?!hX~;>9{NI5twN{IM5Z?A0U;5d@ z5#Qr%kWbHifDyoD75YJ8T#i1d_aN$Moy%14H4+oH!xlfmV&}y{#BJbw{2P`vvOX{Q zERIs54$HNn044RpyX4a}V@7h@I?TDx_<~cviI-89Ub8m&uB@zp-))apEUWG3#R_QEx%Of~ zcpf>=?h46ey7N)pb09Pgrf!qnL^vYjMJ`ouH~m3V`sb9#>v}VluMdz?XTc-+`Rtg= zRmpCu9u>Hl=RY8RjFLQ>MARpYL8=&CfmtwsqIS2}#R>(<=T+C*=l!3oMQ#%;gdGuL7rK}2wqlXZY0n3sRDr^eaM z8{gvD7M+UeppKUBJM^Fw?ILG^T` zL7WM`?r)2uW`v34Bf~ob^AL&VO>-USYrKwr^?{FWBR&0XdpF8T>F+Jrow;8;8_qqV zoX0)e_Ox%>Vgorq4|Yj@n!~7~cA*+3o1ijhPFQ6&2uOI^)0zriPqImTSFI#&kMt~H zt|)wx)o)HFoP9ep*d`DX-L2f((gW{b(9aMa6TNPu-5k31l z*B7@v6g{5TS$PIF1-}8XiIG(@EineJd-QkNnNG(Gy`WB~RtQE=1 zBi%fByG#V^5G~ez*XJ=RL)FZ!nbzxC(Xv?&e>khSw7hMNk6k^ZX^qe5X|nbI060%P zDdwAQ{|AZ*4n7#c{m+g(!*g<9ntyLTM5>T?|ABM(o?sRI2PNtm{;vvo28%aJb8?tY z##LDg0F1MO_khoSr;WZfIQd^-4|=4Gy2CEs2OXZ58TE$+-7P8peC7$8>Q~!GmH?PZ zR4uRtFi@klHNvO${p4A}ma^34EJ^icWEl;OWUT!G_P#RlTs=I?r}|C0;*5~!tL>li zl@32d(BAAtAk25!m^{f>S0yKCx$X%>?$U!qpWtFz5_bV*E+weCHdwK7(MtMv<2~|f zWvIbb&|v`c06Wfx2^M&pKhx5334K zP%gFMC_eLIe}MB>U0-or?ZhqL=DqYPpP9g?HyLhlbN{6^v8A$(dj@rjK5o5OC22S* zIdg{^zXQDn++4A`ZXAm=)&eivY2GRv+7|Ez)*3ZjTo2JOd40P>T==%d4?&)*PuJP- z_Rnn;=)&$=>&vqsT=M(maAJe{s>`n>AD1>YQ9i#_$6ikIS2fCsTKDQIAZMT%YCWe1 zu&-CgZE38EamX1|RMGYFkel)CwllfG{ao9oB~9%i(}Kc`Cb4Br;$q4M1O)Q`Fx zb#AX(1QzY5z2H49SXUvLDuAQqR$!L1wXzRVshb@VO}fygs*S{E=L%t6U{qa-R8b->J0T4iLDt&0O?3b5ShwrdwK>J?tZX;(ZfFfC&YdSn_CP)%_-Gi2!N|E z5}cPyrr>T)e0)e=@$k3gczjF(p+kj{XS3YC;429rUwn3*jL?+(a)v5IcmY_zegKgH zSe@RHrj#7M^ogrxg~&5Vt&srs|Awg6_O@4%Vc~+D#n2CY;N72;&;I-pQo+=0BQPED zC&uUj%)zie6b7C9!@x8*fnsi`1i52NJ>vPkV9i~Wk$v`QQhM}%@DG|L& zaZviP3wD}n-v3;~K_N72eqYF~c^2X*MoVy$kMWci;ydO5!D7NoAC!lzPf>rrmaJlF zC383v7Fow%th2&@zZjlVHoaUqpS7zS-*zfhJpC5u@DRUuQuc3*rftifPeVT zphe^`=i>9ih0fgib5aKCXQ*^JfERw-+>=xi=Jn-!b|8F4SQQ~8Q1!jIt9|o0`UOAv z;VBbnZP0*F1~mAjBErLNlggLa#dr-?l!A~*ANS1e>Zq}3*QY%jgDc|pvhoDzuVY?c z=r3!V63$m=VXI@5AAib@ZY|#gxnc>jy_v^23D#rb2dh{^#Yc`|QXzc*W zso?UEOUr`v=&3dmi&628``lUHKBu}nG9I8RBCC;%vK2k1yrg%j0!s>lczqyeA1ZCd zN3))@_d6wQxGOk$hi~F7y5&oQ^1v+|$J!dqsozaOwT(yte{cj zb6y1#sl9~anzf5;uowuo-mkqjX_()g%!Dw`5}dml!z*u>rp!ejZyRYl12N&;_)#}_a3d=yk7vw-7 z;)?`FFprrnqzCrRa0v*p#&c-Ghv0d^3(@7^YhHh=# zlOw0zf(^vW%gbx7@bbFp5er*%mRFEyl637#ccjL#fb0Vcbr0Rx*hp73usTbVew*m% z2OkZ-mh+S7_feS^DyER;dAnWwxC)wxdE=h5@E?I8)HjK?73{UjD^wB2$lA?^dGeo{ zI-m-0vRyavLgmqz&+qwYK2d3L*T4=ITDcBu$#g@1vx?>ac`bw=a_6OyvT01Z*UaW^ zMrJ7-NS;$RPsG&Y&>cF{yjFidH*v`R#0Oh@SC-l_rzVSsV0t)qQN}xzd2`>=fx&DN z$0QcS|H7K|gcx%IIs*)Dvt8W+B!crDt%4OzSTxac1oAZm&eKef2(PLqamxNS*i&$g zqT`V0LtS5CISTcu*E8eT@LFrHyy!F?JnMyoubv$&4sGUF|2?zRw5=85q98o;q{O-= zhTvwFnO;ZTV$(~)r1gH*>ya`tFdT4@BI1TY*{@`HTQ1$hQh?umFKXgBfTRQajW-V7tD7lA#O3*UQT{Qyv1~Rn+INauoE02Z9pHmae|SKdi?(W<=yI zA|rk)wC6W8q=3_+PrNvbIgX$ExTxGMD=VWvBWc?fbFOF$`>tz*Uo*QnGxK$dXYd@q zDp;M7!#usGPRt9ZE}T4F>arlj0ZFYnR2U5nD_iNhp+A%#>108iHEg%uXp7b0{jq2* zGh_J(=eV@4)|@ErQrl-?h7XS*`7<<#d?p{Mlcj$`jYe@2BfR%Jz4p6}1= z_O@jH*q?8%%!+u0dr-%6E&49;hMykl&C|nY+4H)c?*4<`^OeR)BqXPeHZuaQ=?U?v z&)+#y46+FekO*&QOX489M+G4*l`h1fpT9L^kM{cP(V&_9IUQ~^39mk?4+>ZJqy=o4 zRyKE}j1d(uFs5GVgp#o;k9i;AZ-DQ9n|RG9m#TN%`2>{x_-`<@o^T1gj8;%t>YQvE zKdQEKVop(qY7md;WELS!%eXi^J}KTyeQ?X5n*X*KaM?j+7ygI?yB7_Kif&CO<>md-gpSVFCHl)v!ADzwax%EG$xV^im)Cl*Vx7Xc8 z4_y~Decpa;LU|rnN*52+pZqi17&h9^x24s$|!2)NmHdN;Dtk@lyRcP)6urSXChx8uks#55P&1?%XY}?+Ejq z7B($6?KFLaNZB?g9(h?|@$zf$qi}kqof8&M5nB-4cj38IIul6Im{S~jRmpRBW$T68w!2g)l%`Mq&^ z==bzr@jRucML+&;@T;WX`j6)YTf$xkaVG6~EB^1bet{O(eiPs0Cfa|Z58@NRDtfz) zMS+AwWJADrM@ZmD`Y!;5HqX#yIejx_2v(qflMF96JOF*^4GuPS>RStd68>zcy+#a# z!A9ELEY=Gxr6PQueoVn?o{yTh-xwq5c>xB)%fBRVWQsBY$`g(i9)Tq)FzQ^FnkY@j zqWG(}|DrYZ+cynJ)P3>pVuq;LL7|tUn@T;T(&^j3y)KT{aB%VQ$pt>%U8f){|7>20 zT&CKx4M*X*|__-J!fzbDzsxzW2*-{YMLM zfurL@;$E76_+lTA=x*oej z|3a!s&1Lo6DbBHhn@Gg`b>iWIux#drG-E`9G92ceFVWEWwNBmx@j<9jA2GWD87ln- zz@MJT^Ug)75YR#75+h<$<-fjr4+)JXYP10C*+!Xt*Yj+i)%NdOGL(0MxF6hN+U`F88sy@Pv5vXSL=tRf;*G8cDyu%`ChK)Z`r zIxV^2Ygs#V*gSdUDlH*S2!oRU#5jRNTaQwQfoUs1*}I2V2|60*se2{At7j0w5j#M}@4P2ELtshJ>H!_$%zuzd5SG>p8Xa@Bf@Nt9y^ZAog4Cx-sLr1o(@9aM%t_N&-fYlL zoJp0`!b=<=YLJS>6ID`G?>H-XnjjMAt%Zt^L=wa@cXh9Kqy0L?)|YwM1wslqlW`ud zE@OQ66@qfUqw^0aiH}dslfb2aSlYac&?R)zWcSZJBz+i|Me3T{><$8qbTK0~YdrPj zO7{a}nSF}=k7^EI2FFQ?8T%)Bf|FVs#~F~jo$8O*w)gJ! z6ImU3wYEO1lyi9-MKAd|DTzWpnqDeR&%>ELH)dvLq!w;l zM%qI;S=oo!>fa-z11p##kLcTQMe`n&)4JaGwZ8V{q6#A2Ej3Jb4I+4Y)a-sM!7i7N zl6dsM+7kOAahwf;{gb*j4O+6`dfIrnzrXh27@4b^BJ_q7@LJFm&7pJ!c~01@StVk! zq@%5Bn`@&-8uHV_;)(RnB9L%&*AN7J1Z`Mqc*PA+?`iEBlSYD%C#*}$ADn)ZhKgxL z$e6@5A+<9|YnYtKJ-jbf%2mHTGH-?4&ag2#)Y>JoD~6M>si~fkuqNM z#nhtvopviCnia(Z(tB=Kt&+%B;}Z|1eS6Li?w~U)gMu`Udl2d`UL1Zt8dRDV&aod~lv?$7p9O197Ed%ce>g=T4@{PBY*pNOW&0#XR8Y}Pfw>4f@zsXI~j zZuoq2oP^Qp@FBzuFPizKv~TxGH45(3R$~$>?Kiu3MoO{0h(&V5-sB6v06~l*yl?*H z)cW)u&gq6l4!Id4*RaobK}{2rAr}08PuEtj)mR+MrpwDq!t(QPGW9Fbex8k-4V}=W z@c3p-pp`wJ+*$t&_v@CPw7vTkVmcyBrlP`Mdl4dbi@>%1c~7C5;Cr_hbFd7xi^xym ze*gsGMnU_K^YQbR+lnpNiY-hXSu{`w3~mCH9UMXt=egbRu9%dBUc_B|fI}32EoSLQ<-4=Q*HqF$5u_e=iq+ab8UM7yZ?HLAv5MPr?j^H!gl0l)`E10_IWLjD^ry(v+_RY zm3Rb<=~!$~;~q7qU~)K2^L!t*XFg@GQhN#C8REv!$u)ZxSHqt=s_%vKwAmrubx5}H zT}^t>SCb~JKq;a0j&;uU_@gwKDLqwEe;Mal;N#$biJ>dVYiUWpYLl4RsR(ivj*R&{ z^X#UEW%IMsV*?E^NR)z0HEVaZ4XOjMuzsmrpEG3<%GAd2cBPx7m0=LmRI`2g zq*8MPgx%UuZa5<0EP|ako8f(ZmS$i~dxUgMHP*W{9GsaFnZ2|@jjPuP6N^zG658(K ze5IEo89WB8mG9UcHXX#9ELib27bF3 zSL`1uAe}@2xDCXil}QY1-7hbGFTxpm`M%aozkdIU9-D_9)q3%IET~>cZ!D*x%Jd)wB1>zPztD8Re<-EBLAgTGAk#%~G#MK;>-8CdGt>MicCwm0)KWE& zmn>_6)F|~{l2XAS&_wBOM0HvnNaU>XfH1%?LtLqHc6#_lkX#%7t;LVe_Y9UD{In>) zUXq21?Q#)*oaQY5ntV)32aF__sN9Da-o5eZlXLwrtsvXDH5T9`&ruIMR}a1vT4=A_ z#6hA3dEY6~Ddrc-K6;-+fI9P#gz2M$_{){{ewfTNNegaR5xuN}-nX_Il9($Z$2s?+ z0ffq$jDGX4U%&Po@Ls46HknohwpShx2z@bO$PR67fWk%kaU{;pUyhN$%-((mV4d>o z-!G`Rtoa@nl0X2Nb9<2;71S;aQOCQlJ9zJOb=U9cp!8w3Dua@Di$q`H^tk^UQ{1Q~ z&(0r2Aj>SO7G83Gl`DL?D9dQDg~c52oXEWt6-ty{_E*O1OBw#i#KaeijjqVwYbD)P zunh(J`PP7nCi)mTBnYt!5h^#1ip`7ab%!bF)Mb=!fV6V+G^fGvQ-i^frna_fP{DDP zRoR(arj-5f#{)vjkdYBSTs*wo$&g0^ezX3oVUY|EPg9sQJY&g3#5>mb`{UhQi#Z9ZuKt4>5b zSQx%sZX2$b;roxBI0W|6UVIx(+;fm{HQ@%_TZs!6CiDZ`LwGA-*PT_=^HzUkiJ@2r z^Z`;;%=4JNG%IZJe(06X5llpWsB$dFhZ_}LaC_Y`5@i5KAKdODn;6PR7*zGHeiiFR z0|km?IXh&{QZqLeU7Q_G{I86$$x3d)VAOlM=P&H(PJlQL}d6mvbbmA^zO{e zj6~P;-}xRFR)rI85pFP`K^ptAsZJc4be9rXzGBSP#f3;va9mcQ$E8G4603HPnR~|H zlELG|sI|2dT!usR^TvoP>aSB;`5wOs>*gy+INavOLKQ5RRzOOp!UDxzNT~PI@ZL&A z=fuwn`gU~HtsQmb_R$p?;o7aIV@||^4n;omPINihtHd3;t1w(lTj2LIgSRid{K@A` zZntLf2f{efQX=&s5@4Aay6_|4mEFJT!eGKWuaX0j3H!}^XAuaroHGIO`Y|s1kq4hx zH|%G&%eqg4Pgv*!0lt9Ic2{JH&vnGworjl3aHq|=#7ZH*!z(L0 z3O3H&`sw#m?I$e0glrEW^w_%B`T&EOnR)&0-Phvc*bOXjD~TkNg;l#YE%06bL5vpb zuJqW%1hcHGb(=PecN-W3izPcq@l$d@MU}f?g{d>CV4Pn!`jUcxF~bFtYj>Qzv1voj zqT^F$0H`cyWi?=qxHOy9fLdC;=4+x$dc@z~_j-xX@K#u!1BDKtAF+Au>YuxBF25fv z3{eH>7KfAydqxL5%@yS9aip+eWBd|@AZ3zWyUmfOF4d<3H{~lY3ei$|0|5SX$>xf~ zCm-@XCGyHgwQ*Y|^Sw`_V>y^hA*QpQu@4ypuseTBb)t{()i>{9sX&=XoWEy>>?>&P z-?Cq-BTOD7A12@NSgaA29!rEpAlg%hI+U^^&~JNJ&DvFwX(nim`m?ZERwk58InKv( zkkpIZ?V2Reu6U6;iqxR~S9(!r7Cr z{OqR-GQI68#a_QozrVNl<=|tEt@#S%Re6z*hMr!B`NcZrX+{xk!|*xAQEYqO=?O1i z8f5cxc?97ROyY74l~7wgB~gRKWVqhLGzJcDd)xFXgR6I&`h9-fe{rRvK;E`wFWy5^ zo#(k1$FLYI-d?rcZ$*^Ug&VV$k4pKqM}J3ZH?jjB)byOhgr#gAde_%vQ6OQA>A8r< zcEaSU&-@`F7ptJJL~!3@(R*odSH=ZTO{48a96y%0pFd}G_L=@#*_E&`_o?{2^(fpp zeG-?IMCoLr@A>%b^dK%{+#~`$uyoap#+d&;1}z5Pw$imegDH0z_B9lR9-%JLzwnyXi#VN*)wpxkGogM4d4Xtt z`$S|@1UFwmHWi4Uyvr?+5j$I2h)bqJb?T8g@UEfKwFs<)N{y8iX-nCwaaYD&4lXVY z`^)>qWo57U-?Y`Cfrfj2{pPL8VMnVk>3vPdw!;}<+pL2E_ zn_EVyi-{P{x5F12UN(&S%)S&SrG2HV3g}-z!EVPw$yd}Z;sUS(Uc7jbU0E4RD=k_) z3$AmEm>6zW`B2J9s4S^CWs`gB}x!-%%vK0_eVS}tUlqR^kbZ@;Zs}|ek zMkSCv4%=6ck&7Yq+vZ;S{P|sha%q14U4_<9g}2^&Ub|-3wVVG@pW+iRYcy{**cOYLYZk*zbz`LKe!LDD$&9uLJ#JO&1(Kf)f zeeeYD(65!aDMGR=B6xdt*S+4S{;rk7k9oJj9}~(K{j*LBgIim|zs?jn>~~Mu6Zg#S z%fPzx+9uj}PN}@uXMGf{JD*0N4?;@TZ}q^~S4hMve(ZOxzsvvj&By7T1GP-YDitg@ z?>ZxAF!a=-3&GDMAvVg#H%8q#v0!$dxTIA%O#RNp>*T=Q=-Gz2<$tl>JZ)aHHUC-p z5Ul>+B=-L^>%A&ohEsHOeX;!|R?AYG!wDyjs@^qgXmWdWcz9E)1~EB2d?@%D?^~J^ zkdI(iHatpGO68xB1?OU98NkIu+ZppNiAiY|M!eS+BNvY{@1S{j^s>9qi2DZ@|4`v0 z-uWXLF0;>u!K#J_0pB4XVe7FChxc#eyF)Eco7v6&P4XTOI>aT~WeH37L_aguY8&z_ z2n5qEqoY&K;xx>9PZY@u?+pTG~ev)pPJso#wNvpfv1|duFhf|2)+?MHnUpZrstS zYr>jsLJIS7kYtbAwcc@+c{36&-7*jW;0oZT<)`VX7};}FHNQyxKD0|qe-!4v)HFNDF|c05@1cM1Ddd|-OMOD8pW<@rpcr)0$bFG$ zt_N2z0SK>LFrWD)?6CcyrEf=hvT8JCUHB}3%Qp)#zDj93xq_a%akc1eUc4xYdlPGH zbo7~y4uvWSI@xT|_Z2K5ica(y01k&+v5UmN{e-Dt%s?gS9ay#3xY%BVM2#L~>OvPk zAV_J2?RSM3fLg0Y)ms@`A6Y7O{^Wnt=OllrLDMMxGDUjBGT|7^l*jUj&VhUYf^3Dxnh0f05iSu55 zbHnu?C+I!=XGkB!5NuS>y09rf!P22s0ceRIqXGgHX`V#((EG%stUY*!Pt$nKE`7vF zwy6rSL#{FOAGoWaijTeA3A4+))ApK%P%85X{r+=5@x`Z~5z6ac?w8rK-H=;Ye*=O; z9GgsmG6Yb1d_c}xsJu`vHJCM}Cz)1X!lu18)wBIU{bWp9?RU!GTYya;24Cvet2OCl zF1xFHU;AuJGxv6wO`L$mfGP9-hv|pjJ-!o946~?Oj@}FiNR6TH+R&E2+M`POH`Sj* za$9E?rP-?tj!q|77v%QK{btHICS6nK(nsEDt}ES`QFLE+`945M5d)T@fFa}i`^KbN zQ-qPhM770{ax%)iH4-Q~cW0{TeS;jh%@$*y1wZJHYqh!k{EqpwdwvWk#5SEwIt43M zTBfpgTx*_8#=9@!7T%`+O9}&T8=D#T>pdam@l0pXPoF>3?a}DQA&I=Hw9Giw(d;(~ znH*-*1_zo(TK&ZV_rUdIh_dNaqN<>&bY1+Hl%O@@#^Km~W1e4>w{MsNbd zA=r>c_Ps>RQab7&l>+G|;N_208`7CBt(Phg;5@KEWMqd260;{PznORdI`tsx+`q)MSy@{)b)7=C^h4y!aT$Jn+*jfo{?>POYO{ivyTVfs(8YC3R<1%GCd-+ zl6g?5`Z`tHaa><$>)Ib zhWwG@3yIaIMo#`#kCnD2L!bWD27|$LpZo&^;|i5cOxARd(0}I|!y(3CFr;&d=I)ZG zRxpW*8j5dmqjrkXhqDNDMIkESJ^MU7CY{bKF8<^02!7%aSNfa1F9-jM#CihOm zM^YiqH4QJ6mGf$95^8Fm&^_k1G{KC3XLij@dg@SU+X~LLwF5S3uT2c2O(@(EO8A#<{(f(bwN$j9`%m(5|(AGx-LHSL<}Lz|B*j zgun=s5A@%_3acaCK~RGi;78h;DKL0*;-KizlCR=si1h+@F#5IH$32xhM>dYRrUDqBk0id9Y8wLZY$-1W)kV+QWEBS-iu( z=^-+o9lFf)>-0D*L&SDTON%Mib7yD0)*}-rIob~k&`(vCT@Too9d*e5QAd2;ewNgF zN>BKwRmD6bqracLjr(1)w!Vjdx0pC6{8?4MkoUETR9BhssoztP^jDzrQL^PgLS<}g zVidN`YWF94W>N|EXEI)s*6z1}`ynmes5q#=V|@JhQ*~BL`1=)d$W(a-mM{2G<8vwY z_U&5;^7ML~%Ky|Dy^#22U=qvLS&#{@#b4rLc?Or$G#~hs&>TlQ|HSd6!V9cp)sffl zSw~n4gXgOS@)sm1zV?md%FOEHM^(#&?gr2j|3_0Wt}}gh=A@a^?}6$7p!M-!q3YP| zpxMm`I4Q+IyHaL>$fJmanJs4>k*9IS7kVZ^Q9@tOS$&za z={F`6h+Dj?ZCM`PL()1OW6f(+i!FQRYWF32|JX4I@GEEDB%`MG_`` z+k3&8ac~}|fvX6;Mg*(8m1Rsu<`y6KXqH~>F%I;+Sv2tWlPcTsN0;^4hmhwnb+$t&&%7~lfIz7%tA{#Pu{vo6a!!Q)gF91b$CBp`Je`9 zChrJk(b4{33A2VX6{q1;h3dU6Xi_LZDQMR z=<99s_g;Fmc(0BStRn0R&6#dFe|2@r&A;$&k?vu{noLgFWW{LP%60Veb+l+)J2_Zm z1y;lSX_tr|_LE;(33eX%ByA2HzmUU~USBvJS4>a4BzlqO=$CM_??!$WL)G~Ven-EO z$L{QEduBl2UBJG{k7mF4^Ye=Z;ZL^7s=5g^w+#IdhCBoeH4=cEh`hk53 zFaW|nv$0cPOyA%jo(8|cJEo#RH%n`4FPG#qoqf^9bb^C2Y{sIhM4x!$oT{ogKXz#y zHg7N@p8ga*z&`GZ>3@0Q=dqTw$h&MB z(x4g$9N+BWfhAAgg58X&vwNF~uI=DG6z9em(4NiCMm#C!Rs4i*eHXjQOLL9YO2`cc zPR892;ujI9{rF>;NjHd}XYvTm!T3oya{xKm*8D3p^OL!bALr_tE3om;s!xPOQoIME zF%~&T9BKdyg#h8js(TCj>7VKB_dQe(e6{gOu&X-s5r3Fj2_JU1{(^bXkFyq(`k zPqgbFniV0g_r!JTx7~``Nc2t>2(o!ktu4IItPNMuWSAL$3eB2MRo6u1Em+l4g33kY9c4e^)L+!{g6B918|pzZlUUeV6>_S zl~K!(!T!-G>;0J90lQC4EC5{N)8`{KbI4Pv!8e$FRMOog$zP{E>1sGIX-G~{5F7<&t z`;Qi&=403-`jjDBa{D)EY_njbYfeH|7ReG5Ht}}=m#=SZ2w3!zx^ZnvVU1;gHTg9> zmn|Q1dfLRzyyN%wMvd9bWvK-0`>X~AS8bCSF4t{I_Jn@~+;I4y9ThgdF(bh2n@;TE zO%GOh)E&9#QdAG{$_K`#Io+sh7bfCK2Y(ZQhQ3mRfWSwjcI>}t5UxG*{gtpBL zba(|;Vft_Lypdg@1<%qs^`A28a>(%^^KnW~iHmyYH zQZ_I$F)jQ5OLovRhd#f9k>y#@0J0B@5rmH5Hk7AjuaT~$SwP>IaCx%+Nhb2t0K^C> zznqN~=GIn$f8AdCezKyTiE!DS;#+Squzzv~?=ZYIzI~yZEOii*e4u?cR4uQ7Zgu@g zfkA8AdCTCyGo8JwT4YhTXjNK@W8MGyUI9GAIBn&F>B}e4C?s^@W8Pq1^M}itkZ*Pi zH!yjy<-WiWt|U=+!z6WOjSJjzUkZeQ6vtd32Ic{kys2IAfD%r2m?9*k^U2a7<6$*^qIqeDglTS$}Pa^Xt0#m zzWGb$qvn?3w{HHlG1aF3KScnof=64A)2lNI%xQNN;?(=wfj$igX3c?Sw%YB+t6D)7 zuwo7winn!M%?}bGSu1(G_9m9kKO>25r&Gd!7(!G-PXUNRVj98##Q)7@-5FwuhnV(# z^N$K*ig$3V#2QvS4gU85!5c3iff%+w8BHAM>-+g{`OEFQ6MebV9=rK7$>jV2i0e|7 zf+O8YKhh|Fz|P8EhtWQDuR6OXp^l4x4rVmVw3Ml_?WCR-xAaqvGlnU5y;R2IWL?Ru z1TS)BiuSJXM08I`MCKZ0JHi1%LrWJJOp6(;o@SWOoMk*3+BE{kb_5)DvYgAVUwMr7 zZem-3uPlx~wB}ri*OI{P`7Q@b`eLH?u7XTfgbGkS9oN zea5lziH`_p)CZobckB4{Qj{y|V__YWM~ksb?c6W>c|8%KgwU4z8|r$0q}e2qhd(61 z->#^4s5xsPL?3rw)ca;-MYFY}dn!c52vuwk2CeruH=O^YG00@tVg0Zv+j!hOb&mL( zD${&Z#n7oqSBfm38~u_Um&7n72aD<-kpUB)Rx)g6?<}I*WO&=Y0BC+Luq4_Dj|#cl zNuglOa;!M0zlGIN)>Jv~HPgq_>tw|XwBQq-aZt;^Jnv0qnCQDco1*86q4b~-3P?XP zYCJQ-oLpGb&Wzo9aYsXT3BD~G%GJRx?1vFJVB$-V?QmS}DpE*nekrYqjMMVangRo; zpmK2V|D)`yDt5J^EnIt2s?>8=5!Te^qt z8XAU~xtr(rJnwzq&%J-#dp;jHGiT13*=Oy2)?RCUziaL5-PoLh{QDagKP|Z2hm^JE zG-Po1PzaXBL*et)-3^GP5{5JfwP#eUch4TdnEt)B0^Zmgv5CR*<7I7j4~OcS2Oi?E z!-%D>C980OC3D`+_Ve-MM@e88m;@ABMa9R6eVJo*#Ucv7-rdk!cCfE$(XF6;} z9r)>;P+34zotm2JQ8JYc4~I3u^e@DKrvTt|SRY#dx)YH*1aO4Zk3E(RaJ+Ia5*Oi;e-1OtF6g8Xw_Jp4Ds zZlxeg@q4AQBFJamvx4uOe3AUW&=gi5!DT2Nz_|F-rhJ@;+M@NVyHC!nN_gA9>vf)9 z`O78rwsVgaK<{}QOGoJ z=>}PUh6{fpopnfIUb&6iYS%Q2?4puQv$lZ|c^W-=X%mcijQvHa>=p4S0@J+)RX z67cA#?z}Y9VCF>)-UbhT%{^M4gC7D7W9@%N_SLH{gwa^mCYQ0_6B6WHU7uT6Sb#7{ zG~h^F?b&&aI@zE1yEyctxi$3llZH>|85nMLE$uG`Gvcox{F%c4EO$m7os7lQfm$mj zcEhNh<>a-;wrBu!gLUx;Kspq}9w^|M8LxhjDDKoY# z0XPoe+kTIY#ZuGJVdcFPy~w>f&q?;yYv3^lUh>rZ;l zUHqe=+uz@cUzA}&fD-hr#~K4z3O!8#UXS`91$_&0ft6t5lH^_=QDGmy6S(i}=YjeX zVUpKblaiDSjD>R<5mI-Smaq8|2mi&F2$c`LPJx380Ns1_HvXx2Nsk*KugR%~9=mhL zbw!FFV#?jtKB|vxGeV>M2nlgA{iq)ihB2Fk)fhKY=1kPMs*mhEn%>f|)Z@|REFU)P z*>ZJy53{VzRzvqZ=o%iPz_NIvPKNtk`5TRn`oR^Ndhm@UbzdDHPVkX$qxZ*g1X2`! zlyW3A=q6-CD(~Zc>{G*Jc=j0%hts%Cs7NyoJSJN*LunnmkWJ4B!1Qnh8q4PwG)+4Y z#S&C0bRJfJwngg?WaM|0Q?E+=nJC&#oU$|XDL)D)EqTYhs-`sfBj8RPSvr;GI#PQ(`{t#$J3*ko}#t)Mjv~nvu(>Fv2WQiQh zA0PHvQ4TS@DrUPKC#=g*@c$;gNa&H3s{XG}%DsnoxAmIL8b@&rzb3aA6zHgZO~%_u`rK}w zMB9OYy0F3VF2gysisOoi@Me*F)b}E!;Yq=OgcI`6qJ;=X=vo%ytxnF z3`_s*=`RqK_-Eb>q zj8#20GZQv(w@p5?U1&dFLkk@G$X6V=lY}kP@-_mIq9+*`3=&4>e3{M4f3hoOyh*Px zxNqsbi@Y&>=3sC~Yz(JlpKS=ft$-ut%z5m?Z7gACbj1+2h2sqFdTfn*hMlXg?a!Zh zq4HeXHcZOY$WM6(0sE;}ifQMQ6q%-c9a>kk5`D>>N0fc5j@=gCID2t?(CQIfuIa*b z1ii4U#>m}@MCNI(Fv-V0V$@mtHgLcCT0_S~58}1wMpFBb*r!zaz~NMRp-+^Tmv_85 z5-b&n|IJ-A6zu-ysxoeFGXl#u*Kw`Y5{kl*i<-<8hJ}QDE%OG05@##-5BbDcm8-P0 zbb`wx>hiVF)JxbGP3T;1k#!K!9%eIhYh%T?6-eqhYRG3V>v{F={*^-SYU~+wB{p}j zF%hrN)Ve`OyMD-otURE&0mI@WJbx+BC-q+MnVAIBay8VC7hjl24f^MHa)1<@Yp{ff zF=RuA7b0x*mu4(aQ})tMEa%cJBTJ1_%Ym;L2Ze+w-xnq~x3aOhb;LC=5J;6MY>lrn z+KJuV2v67iDSeYta=qXdz2QT~(@d&y+S5F1s!L+Fk!MPY!r#O`?kl<+v`fk^riZTL z>-j~UBn2q;-oxPM)^@3=u!;yJ_8U~uw874w5lS8g(Rui`WHp@Zv1w2`fLoB6eJ*7P z1&8{49Gf17vl|Ii-@zF%X?(!^HeH(f^?ansqZR1oOkt=Fop|KaQG9nXOX5Bz zUF7PxNz?PuWXqVQq5BZ1AR0bh5xTxUVDYyMs&3#GNMbW@{a?R!kNU{}U^aT)z5^=I zO?80$M@1;KnchDcwfFnLq^uYM^&_!|adU4AT!i^RzEt;q%gkiPAt&U2Ex@KMPI9w( zo=jpSwDpqfoEZTh4biF+9Hm$J{u$hi~as4>+q8t@D9^M5-2+3m!PIIThCG=FgE zpBC%TV77H(_b(vMCQ=tH2vRv02a%>~3VWmr8N}Mg1$8?$HTCa1ey$!K&EIFPx7%DG zHa12oTeT6K{ljq*e?0BkTBfIy0E-Hzlx>>ygjr4WgSu;?-j2N^7W@2FyH>@QN|Lm+ zG%Xz+$NjT)EeZ7R;Dv<+NdS8AzirIS*LlvY)^HInC@ARg2t}usoa<t*=*REFSO`y8Rop2VOWOk`J3t2GipXzNNWYBN+eXqR=B*pGPcMCb#dT3 zXw@N339>uhRgtPbL>tIn;SA6EUO!d2a7u0@6}Z!uvUrmZ+6dU?nC`7oNPgFXi3H3~%*gnG_LRnf_`K$nCX@gzF7^|iDeoE+l zy&!2q3OSB0;}aGZaa{cuL?$ah2RuSp=0v^A}aOY<~vz!Fi+G#WfSR-oH&4bw~VyG!x!Es4}JnLthI-`fw53_?l3^SR!F zbUrgf{&Su_O&CN=?Vs(P1v~bCuJ{rAP?&*pljKi&-%dKFdDp_a;h85f$_qXZ16&=em!HDUr9kegwY^ z@xF(;x1GAWdfAcx6NRhociaeGq71mk;A2;B_Fa?LY*Pk^HM9Gk zCR{$)URdDbTq>nI9T7AyP2g!3avrFhfgc|%G=u7x&{a?uLQE= zAwx}#IJ?tRj+iDB3!ClV=O3=r7PrRkJ$mGv-kwYY?bz`x34ti3J(a&yt#{e~?2dE& znsB;7cAP5kUDi3IPbi&bH>O}W2Ul(M3@+ch2(35Kk4uJ3H>o{rcxn#C`5|By$_8)r zj6|C3NzG1s2m0K2&moGu5X`Y7d%K8Z{{7tE2w~6Vr=XzVe()o77+vfty|lIUND(XB zUWDm}gs!gcWphbg{FWWNk`pe!019wNq3;oGo+ZEG$(hCXwWm&}83q zweL_Ga7~@3+kFWbdfwzaG*O-)y3ZOmg_q%egjs0B$jzjsVEA1Gwhj=8mW~em;Pr`~ zL*`%JHlYrvOP8{;vJz|av1S4$Sg@oyHv4_s6TOI1e3R<6GiGY!S zrR`$ug_Q+K7`M7*IlM4XGJ0L)g57@-4*5Rc<1m3(=c5Z{Av1kb~5uRRcw? z5uUkET1}PGAPtR`lQX=e3i*6`};YG_~HR!|rN2b`;1|qN0O-TK~O~&^;1NVJ{=?08kQM6X8sAX`F)bH>5 zL{?QL3pmr`hXI$lA5G1%QbNV7{;~<2z_Il;q`j?;nvlsH+)=}6&m%K4v$yyC0-8cQ z>{?)IGt;HWnZ{!;o8%VX>*pk095p}Pv1fmlSylN5oIrTVI-Sz~LBr9}k!1XAAFlf9 zvi4Q+4WZ?gY*rQ&9rA2nVDiIGR!#>q_Ccm`{n__CO+xx7(L>}cADx}wHv3^YZ;f`} zZnxGDcG+t4!@_ZJcK*JT%I6YRVFG7!Y<>;7xV(JcbxO0mz8+j$T+D_0Rd>g>Rdv^n z-P2_MC3x7y)7)NL6Ga*%tDbNB+>BI|Q@npQYTRIEm0Uh)`KETrNMC2kB)Ca+#jg}n z2c3|DP^R+mdo>exwl#3BBQr7KeQ#8R;9c6@9%H(7#o!KsMc6t~^%=qa?=-2PJI&j9OI_~!NbSL z&Zw%yc}y0t^c*2rTFal(DBb=_>SgsaFK6s?%{j-5XP}Q&fvdzgC}MkfeytTs)Z8@B z^N`GZIMWL2o@G;_K_ATcp`n>0fzKnv8)C!7FBGmc88KPqRfi+3g#0E()smZgqTQqs z?RI_CVI;U;>8Wgs58uslh|`cW(bqrbz$4M|?A*j9+i#L`RJz&NZ+wYK&9KkB0mtA3 z+x+Gzsvn5WWeleG%C?RFxHi}=udJ6C$Ehlz5{&WwlpIU)=eG?<5qZsN(L=79BQ2e{ zJKr-GM`C*soIIII2KXCWvsTE7x3}&QZkWkL0`ZljY#u5q$(#VBH|`U4d^1C8(zX2TKIN?^IB9EdmT;z@pL&_)2RL2 z`TQ2!Ry&*!+8EX1M;5c*gFEJS=3u!`a+u~xSUg}?3f;O_-()+7u*Zz5+U|%(G^E&Q z^;7>2$3XS#oG~ID*z90*I0&ZgiqFx8q?6!WZt}gc(7zr~UvJ_LRUYYT?QhzVCtsBd-k;W46)XJ*M{bUQLltGZk4n16A$IC zL`Hm)??q?O>@xQ-Ln;p=17do(0C